import sys
# Modeling
from Modeling.CustomObject import CustomObject
class ClassAF (CustomObject):
"""
ClassAFs are objects ...
"""
__implements__ = CustomObject.__implements__
def entityName(self):
"Used by the modelization_tool to link this object to an entity"
return "A_F" # do not change
def __init__( self,
):
pass
# Attributes
# Relationships
|