Package jadex.xml
Class ObjectInfo
- java.lang.Object
-
- jadex.xml.ObjectInfo
-
public class ObjectInfo extends java.lang.Object
Information about an object, esp. the object type or its creator.
-
-
Field Summary
Fields Modifier and Type Field Description protected IPostProcessor
postproc
The post processor (if any).protected java.lang.Object
typeinfo
The object type.
-
Constructor Summary
Constructors Constructor Description ObjectInfo(java.lang.Object typeinfo)
Create a new object info.ObjectInfo(java.lang.Object typeinfo, IPostProcessor postproc)
Create a new object info.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IPostProcessor
getPostProcessor()
Get the postproc.java.lang.Object
getTypeInfo()
Get the typeinfo.void
setTypeInfo(java.lang.Object typeinfo)
Set the typeinfo.
-
-
-
Field Detail
-
typeinfo
protected java.lang.Object typeinfo
The object type.
-
postproc
protected IPostProcessor postproc
The post processor (if any).
-
-
Constructor Detail
-
ObjectInfo
public ObjectInfo(java.lang.Object typeinfo)
Create a new object info.
-
ObjectInfo
public ObjectInfo(java.lang.Object typeinfo, IPostProcessor postproc)
Create a new object info.
-
-
Method Detail
-
getTypeInfo
public java.lang.Object getTypeInfo()
Get the typeinfo.- Returns:
- The typeinfo.
-
setTypeInfo
public void setTypeInfo(java.lang.Object typeinfo)
Set the typeinfo.- Parameters:
typeinfo
- The typeinfo to set.
-
getPostProcessor
public IPostProcessor getPostProcessor()
Get the postproc.- Returns:
- The postproc.
-
-