Source code for program.utils.util1

"""
Created on Sep 6, 2026

@author: Stephane Gazaille
"""


[docs]class Util1(object): """ Class description """ def __init__(self, attribute2=None): """ Constructor """ self.__attribute2 = attribute2
[docs] def get_attribute2(self): """ Method description goes here. :return: description of what the method returns goes here. """ return self.__attribute2
[docs] def set_attribute2(self, new_attribute2): """ Method description goes here. """ self.__attribute2 = new_attribute2