Package com.nomagic.magicdraw.properties
Interface PropertyVisitorAcceptor
-
- All Known Implementing Classes:
AbstractChoiceProperty,BooleanProperty,ChoiceProperty,ClassPathEntriesListProperty,ColorProperty,DateTimeProperty,ElementListProperty,ElementProperty,ExtendablePropertyManager,FileProperty,FontProperty,JarEntryProperty,JDBCDriverClassNameProperty,ListProperty,LocaleProperty,NumberProperty,PageFormatProperty,PasswordProperty,Property,PropertyManager,PropertyManagerByDiagram,PropertyManagerByStereotype,StringProperty,Style,StyleManager,TypeProperty
@OpenApiAll public interface PropertyVisitorAcceptorThe interface for object that can be visited withPropertyVisitor.- See Also:
PropertyVisitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(PropertyVisitor visitor)The accept method.java.lang.StringgetClassType()Returns class type as string.
-
-
-
Method Detail
-
accept
void accept(PropertyVisitor visitor) throws java.lang.Exception
The accept method.- Parameters:
visitor- the given visitor.- Throws:
java.lang.Exception
-
getClassType
java.lang.String getClassType()
Returns class type as string. Class type must be different for different type of properties.- Returns:
- class type.
-
-