Package org.apache.xerces.impl.xs.models
Class CMNodeFactory
- java.lang.Object
-
- org.apache.xerces.impl.xs.models.CMNodeFactory
-
public class CMNodeFactory extends java.lang.ObjectINTERNAL:
- Usage of this class is not supported. It may be altered or removed at any time.
- Version:
- $Id: CMNodeFactory.java 911823 2010-02-19 14:38:42Z mrglavas $
- Author:
- Neeraj Bajaj
-
-
Constructor Summary
Constructors Constructor Description CMNodeFactory()default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CMNodegetCMBinOpNode(int type, CMNode leftNode, CMNode rightNode)CMNodegetCMLeafNode(int type, java.lang.Object leaf, int id, int position)CMNodegetCMRepeatingLeafNode(int type, java.lang.Object leaf, int minOccurs, int maxOccurs, int id, int position)CMNodegetCMUniOpNode(int type, CMNode childNode)voidnodeCountCheck()voidreset()voidreset(org.apache.xerces.xni.parser.XMLComponentManager componentManager)voidresetNodeCount()voidsetProperty(java.lang.String propertyId, java.lang.Object value)Sets the value of a property.
-
-
-
Method Detail
-
reset
public void reset(org.apache.xerces.xni.parser.XMLComponentManager componentManager)
-
reset
public void reset()
-
getCMLeafNode
public CMNode getCMLeafNode(int type, java.lang.Object leaf, int id, int position)
-
getCMRepeatingLeafNode
public CMNode getCMRepeatingLeafNode(int type, java.lang.Object leaf, int minOccurs, int maxOccurs, int id, int position)
-
nodeCountCheck
public void nodeCountCheck()
-
resetNodeCount
public void resetNodeCount()
-
setProperty
public void setProperty(java.lang.String propertyId, java.lang.Object value) throws org.apache.xerces.xni.parser.XMLConfigurationExceptionSets the value of a property. This method is called by the component manager any time after reset when a property changes value.Note: Components should silently ignore properties that do not affect the operation of the component.
- Parameters:
propertyId- The property identifier.value- The value of the property.- Throws:
SAXNotRecognizedException- The component should not throw this exception.SAXNotSupportedException- The component should not throw this exception.org.apache.xerces.xni.parser.XMLConfigurationException
-
-