| java.lang.Object org.apache.axis2.util.MetaDataEntry
MetaDataEntry | public class MetaDataEntry implements Externalizable(Code) | | An internal class for holding a set of information
about an object.
|
MetaDataEntry | public MetaDataEntry()(Code) | | Simple constructor
|
MetaDataEntry | public MetaDataEntry(String className, String qnameAsString)(Code) | | Constructor
Parameters: className - name of the object class Parameters: qnameAsString - an expanded version of the QName of this object |
MetaDataEntry | public MetaDataEntry(String className, String qnameAsString, String extraName)(Code) | | Constructor
Parameters: className - name of the object class Parameters: qnameAsString - an expanded version of the QName of this object Parameters: extraName - an additional name associated withe the object |
MetaDataEntry | public MetaDataEntry(String className, String qnameAsString, ArrayList children)(Code) | | Constructor
Parameters: className - name of the object class Parameters: qnameAsString - an expanded version of the QName of this object Parameters: children - an ArrayList containing MetaDataEntries for owned objects |
addToList | public void addToList(MetaDataEntry e)(Code) | | Add to the list
Parameters: e - the MetaDataEntry object to add to the list |
getChildren | public ArrayList getChildren()(Code) | | Get the list
the array list |
getClassName | public String getClassName()(Code) | | Get the class name
the class name string |
getExtraName | public String getExtraName()(Code) | | Get the additional name associated with the object
the additional name string |
getName | public String getName()(Code) | | This is a convenience method.
Returns the string that is used as a name.
the name |
getQName | public QName getQName()(Code) | | Get the QName
the QName based on the qnameAsString value |
getQNameAsString | public String getQNameAsString()(Code) | | Get the QName as a string
the QName as a string |
isListEmpty | public boolean isListEmpty()(Code) | | Indicates whether the list is empty or not
false for a non-empty list, true for an empty list |
removeList | public void removeList()(Code) | | Remove the list
|
setChildren | public void setChildren(ArrayList L)(Code) | | Set the list
Parameters: L - the ArrayList of MetaDataEntry objects |
setClassName | public void setClassName(String c)(Code) | | Set the class name
Parameters: c - the class name string |
setExtraName | public void setExtraName(String e)(Code) | | Set the additional name associated with the object
Parameters: e - the extra name string |
setQName | public void setQName(QName q)(Code) | | Set the QName
Parameters: q - the QName |
setQName | public void setQName(String n)(Code) | | Set the QName
Parameters: n - the QName as a string |
|
|