|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.filenet.wcm.toolkit.server.util.xml.WcmDocumentImpl
com.filenet.wcm.toolkit.server.util.xml.WcmXMLPropDescs
WcmDocumentImpl derived class for manipulating Property Description specific XML
Field Summary | |
static java.lang.String |
ELEM_ALLPROPDESC
XPath for all propdescs |
static java.lang.String |
ELEM_CLASSNAME
XPath for classdesc name |
static java.lang.String |
ELEM_PROPDESC
XPath for a propdesc |
static java.lang.String |
ELEM_PROPDESCS
XPath for propdescs |
Fields inherited from class com.filenet.wcm.toolkit.server.util.xml.WcmDocumentImpl |
ELEM_OBJECTSET, thisDoc |
Constructor Summary | |
WcmXMLPropDescs(org.w3c.dom.Document newXMLPropDescs)
Constructor takes the Property Descriptions Document object |
Method Summary | |
boolean |
getBooleanProp(java.lang.String propID,
java.lang.String sXPath)
Returns the value of the boolean property description with the given ID and XPath. |
boolean |
getBooleanPropBySymname(java.lang.String symname,
java.lang.String sXPath)
Returns the value of the boolean property description with the given ID and XPath. |
org.w3c.dom.Document |
getChoiceListXML(java.lang.String symName)
Returns the choice list XML for the given property |
java.lang.String |
getClassName()
Returns the name of this class |
org.w3c.dom.Element |
getProp(java.lang.String sID)
Return the property description with the given ID |
org.w3c.dom.Element |
getProp(java.lang.String sID,
java.lang.String sXPath)
Return the property description matching the given ID and appended XPath |
org.w3c.dom.Element |
getPropByName(java.lang.String sName)
Return the property description with the given ID |
org.w3c.dom.Element |
getPropByName(java.lang.String sName,
java.lang.String sXPath)
Return the property description matching the given name and appended XPath |
java.lang.String |
getPropCardinality(java.lang.String sId)
Returns the cardinality of the given property description. |
java.lang.String |
getPropCardinalityByName(java.lang.String sName)
Returns the cardinality of the given property description. |
java.lang.String |
getPropName(java.lang.String sId)
Returns the symbolic name of the given property description. |
java.lang.String |
getPropNameBySymName(java.lang.String sName)
Returns the name of the given property symbolic name. |
java.lang.String |
getPropType(java.lang.String sId)
Returns the data type of the given property description. |
java.lang.String |
getPropTypeByName(java.lang.String sName)
Returns the data type of the given property description. |
java.lang.String |
getPropValue(java.lang.String propID,
java.lang.String sXPath)
Returns the value of the property description with the given ID and XPath. |
java.lang.String |
getPropValueBySymname(java.lang.String symname,
java.lang.String sXPath)
Returns the value of the property description with the given ID and XPath. |
org.w3c.dom.Element |
getPropValues(java.lang.String sId)
Returns the values of the property description with the given ID. |
static WcmXMLPropDescs |
getXMLPropDescs(org.w3c.dom.Document newXMLPropDescs)
Get method creates this object using the given Property Descriptions Document. |
Methods inherited from class com.filenet.wcm.toolkit.server.util.xml.WcmDocumentImpl |
createCDATAChildElement, createChildElement, createChildElement, createNamespace, getDocumentImpl, getElement, getElement, getElementText, getNodeList, getThis |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final java.lang.String ELEM_PROPDESC
public static final java.lang.String ELEM_ALLPROPDESC
public static final java.lang.String ELEM_CLASSNAME
public static final java.lang.String ELEM_PROPDESCS
Constructor Detail |
public WcmXMLPropDescs(org.w3c.dom.Document newXMLPropDescs)
newXMLPropDescs
- The new Property Descriptions Document objectMethod Detail |
public static WcmXMLPropDescs getXMLPropDescs(org.w3c.dom.Document newXMLPropDescs)
newXMLPropDescs
- The Document to use
public java.lang.String getClassName() throws java.lang.Exception
java.lang.Exception
public java.lang.String getPropValue(java.lang.String propID, java.lang.String sXPath) throws java.lang.Exception
propID
- The property ID of the property description.sXPath
- XPath appended to the property description XPath statement.
java.lang.Exception
public org.w3c.dom.Document getChoiceListXML(java.lang.String symName) throws java.lang.Exception
symName
- The property symbolic name
java.lang.Exception
public java.lang.String getPropValueBySymname(java.lang.String symname, java.lang.String sXPath) throws java.lang.Exception
symname
- The symbolicc name of the property description.sXPath
- XPath appended to the property description XPath statement.
java.lang.Exception
public boolean getBooleanProp(java.lang.String propID, java.lang.String sXPath) throws java.lang.Exception
propID
- The property ID of the property description.sXPath
- XPath appended to the property description XPath statement.
java.lang.Exception
public boolean getBooleanPropBySymname(java.lang.String symname, java.lang.String sXPath) throws java.lang.Exception
symname
- The symname of the property description.sXPath
- XPath appended to the property description XPath statement.
java.lang.Exception
public java.lang.String getPropType(java.lang.String sId) throws java.lang.Exception
sId
- The ID of the property description to look at.
java.lang.Exception
public java.lang.String getPropTypeByName(java.lang.String sName) throws java.lang.Exception
sName
- The name of the property description to look at.
java.lang.Exception
public java.lang.String getPropNameBySymName(java.lang.String sName) throws java.lang.Exception
sName
- The symbolic name of the property description to look at.
java.lang.Exception
public java.lang.String getPropName(java.lang.String sId) throws java.lang.Exception
sId
- The ID of the property description to look at.
java.lang.Exception
public org.w3c.dom.Element getProp(java.lang.String sID, java.lang.String sXPath) throws java.lang.Exception
sID
- The property description IDsXPath
- The XPath statement to append
java.lang.Exception
public org.w3c.dom.Element getPropByName(java.lang.String sName, java.lang.String sXPath) throws java.lang.Exception
sName
- The property description namesXPath
- The XPath statement to append
java.lang.Exception
public org.w3c.dom.Element getPropByName(java.lang.String sName) throws java.lang.Exception
sName
- The property description symbolic name
java.lang.Exception
public org.w3c.dom.Element getProp(java.lang.String sID) throws java.lang.Exception
sID
- The property description ID
java.lang.Exception
public java.lang.String getPropCardinality(java.lang.String sId) throws java.lang.Exception
sId
- The ID of the property description to look at.
java.lang.Exception
public java.lang.String getPropCardinalityByName(java.lang.String sName) throws java.lang.Exception
sName
- The name of the property description to look at.
java.lang.Exception
public org.w3c.dom.Element getPropValues(java.lang.String sId) throws java.lang.Exception
sId
- The property ID of the property description.
java.lang.Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |