java.lang.Object
javax.ide.extension.spi.TypeInfo
- public class TypeInfo
- extends java.lang.Object
Record of information identifying an object type. The information used
to initialize this class comes from an extension manifest.
The information kept in this class includes the object type identifier
and the object javax.ide.util.MetaClass. Object type identifiers are
unique labels given to objects declared in an extension manifest.
By convention these labels are dash or dot separated strings.
Sample identifiers can be found in the javax.ide.IDEConstants class.
Constructor Summary |
TypeInfo()
Constructor. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
_id
private java.lang.String _id
_mclass
private javax.ide.util.MetaClass _mclass
TypeInfo
public TypeInfo()
- Constructor.
getTypeIdentifier
public java.lang.String getTypeIdentifier()
- Get the object type identifier.
setTypeIdentifier
public void setTypeIdentifier(java.lang.String id)
- Set the object type identifier.
getMetaClass
public javax.ide.util.MetaClass getMetaClass()
- Get the class of the object.
setMetaClass
public void setMetaClass(javax.ide.util.MetaClass mclass)
- Set the class of the object.