Interface IMetaItem
-
public interface IMetaItem
This object provides information about an individual object type in the encyclopedia. It corresponds to information in saprops.cfg and usrprops.txt for specific types of object.This interface is not intended to be implemented by clients.
- Since:
- 2.2.0
- See Also:
IMetaClass.getMetaItems()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IMetaProperty>
getMetaProperties()
This property provides access to all of the properties supported by this object type as a collection.long
getMinor()
Returns the constant integer of the type.String
getName()
Returns the type of the item as a string, e.g.IMetaItem
getSubTypeOf()
-
-
-
Method Detail
-
getMinor
long getMinor()
Returns the constant integer of the type. All types in System Architect have a unique numerical constant identifier.- Returns:
- the constant integer of the type.
-
getName
String getName()
Returns the type of the item as a string, e.g."Entity Relation"
.- Returns:
- the type of the item as a string
-
getMetaProperties
List<IMetaProperty> getMetaProperties()
This property provides access to all of the properties supported by this object type as a collection.- Returns:
- all of the properties supported by this object type.
-
getSubTypeOf
IMetaItem getSubTypeOf()
-
-