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
,ProjectOptions.ValidationRulesProperty
,ProjectOptions.ValidationSuiteProperty
,Property
,PropertyManager
,PropertyManagerByDiagram
,PropertyManagerByStereotype
,StringProperty
,Style
,StyleManager
,TypeProperty
@OpenApiAll public interface PropertyVisitorAcceptor
The interface for object that can be visited withPropertyVisitor
.- See Also:
PropertyVisitor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(PropertyVisitor visitor)
The accept method.java.lang.String
getClassType()
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.
-
-