Home
last modified time | relevance | path

Searched refs:INode (Results 1 – 25 of 28) sorted by relevance

12

/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/iterator/
H A DDereferencingNodeIterator.java27 import org.apache.openoffice.ooxml.schema.model.base.INode;
35 implements Iterable<INode>
39 final INode aRoot, in DereferencingNodeIterator()
52 public Iterator<INode> iterator() in iterator()
60 private Vector<INode> CollectNodes ( in CollectNodes()
61 final INode aRoot, in CollectNodes()
64 final Vector<INode> aNodes = new Vector<>(); in CollectNodes()
73 final Vector<INode> aNodes, in AddNodes()
74 final INode aRoot, in AddNodes()
77 for (final INode aNode : new NodeIterator(aRoot)) in AddNodes()
[all …]
H A DAttributeNodeIterator.java33 import org.apache.openoffice.ooxml.schema.model.base.INode;
45 implements Iterable<INode>
48 final INode aNode, in AttributeNodeIterator()
51 maAttributes = new Vector<INode>(); in AttributeNodeIterator()
58 public Iterator<INode> iterator () in iterator()
67 final INode aType, in CollectAttributes()
70 final Queue<INode> aTodo = new LinkedList<>(); in CollectAttributes()
71 for (final INode aAttribute : aType.GetAttributes()) in CollectAttributes()
87 for (final INode aGroupAttribute : aAttributeGroup.GetAttributes()) in CollectAttributes()
95 @Override public void Default (final INode aNode) in CollectAttributes()
[all …]
H A DAttributeIterator.java34 import org.apache.openoffice.ooxml.schema.model.base.INode;
48 final INode aNode, in AttributeIterator()
67 final INode aType, in CollectAttributes()
70 final Queue<INode> aTodo = new LinkedList<>(); in CollectAttributes()
71 for (final INode aAttribute : aType.GetAttributes()) in CollectAttributes()
85 for (final INode aGroupAttribute : aAttributeGroup.GetAttributes()) in CollectAttributes()
92 @Override public void Default (final INode aNode) in CollectAttributes()
99 final INode aAttribute = aTodo.poll(); in CollectAttributes()
H A DNodeIterator.java27 import org.apache.openoffice.ooxml.schema.model.base.INode;
35 implements Iterable<INode>
37 public NodeIterator (final INode aRoot) in NodeIterator()
47 public Iterator<INode> iterator () in iterator()
57 private void AddNodes (final INode aNode) in AddNodes()
60 for (final INode aChild : aNode.GetChildren()) in AddNodes()
67 private Vector<INode> maNodes;
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/automaton/
H A DValidatingCreator.java35 import org.apache.openoffice.ooxml.schema.model.base.INode;
100 for (final INode aSimpleType : maElementSimpleTypes) in Create()
167 final INode aReplacement = GetAllReplacement(aAll); in Visit()
255 for (final INode aChild : aComplexType.GetChildren()) in Visit()
285 for (final INode aChild : aChoice.GetChildren()) in Visit()
321 final INode aSimpleType = maSchemaBase.GetSimpleTypeForName( in Visit()
359 final Vector<INode> aNodes = aExtension.GetTypeNodes(maSchemaBase); in Visit()
370 for (final INode aChild : aNodes) in Visit()
438 final INode aChild = aOccurrence.GetChildren().iterator().next(); in Visit()
539 for (final INode aChild : aSequence.GetChildren()) in Visit()
[all …]
H A DCreatorBase.java33 import org.apache.openoffice.ooxml.schema.model.base.INode;
59 protected FiniteAutomaton CreateForSimpleType (final INode aSimpleType) in CreateForSimpleType()
75 protected Vector<Attribute> CollectAttributes (final INode aRoot) in CollectAttributes()
78 for (final INode aNode : new DereferencingNodeIterator(aRoot, maSchemaBase, true)) in CollectAttributes()
104 protected void ProcessAttributes (final INode aNode) in ProcessAttributes()
123 protected final Set<INode> maElementSimpleTypes;
H A DNonValidatingCreator.java28 import org.apache.openoffice.ooxml.schema.model.base.INode;
71 for (final INode aSimpleType : maElementSimpleTypes) in Create()
155 final INode aSimpleType = maSchemaBase.GetSimpleTypeForName( in CreateForComplexType()
172 for (final INode aNode : new DereferencingNodeIterator(aComplexType, maSchemaBase, true)) in CreateForComplexType()
191 for (final INode aNode : new DereferencingNodeIterator(aType, maSchemaBase, false)) in CollectElements()
205 for (final INode aNode : new DereferencingNodeIterator(aType, maSchemaBase, false)) in CollectAnys()
H A DState.java26 import org.apache.openoffice.ooxml.schema.model.base.INode;
217 public void SetTextType (final INode aTextType) in SetTextType()
226 public INode GetTextType () in GetTextType()
262 private INode maTextType;
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/complex/
H A DExtension.java26 import org.apache.openoffice.ooxml.schema.model.base.INode;
80 public INode GetBaseType (final SchemaBase aSchema) in GetBaseType()
89 public INode GetReferencedNode (final SchemaBase aSchema) in GetReferencedNode()
97 public Vector<INode> GetTypeNodes (final SchemaBase aSchemaBase) in GetTypeNodes()
99 final Vector<INode> aNodes = new Vector<>(); in GetTypeNodes()
102 for (final INode aChild : GetChildren()) in GetTypeNodes()
121 final INode aParent, in AddNodes()
122 final Vector<INode> aNodes, in AddNodes()
125 INode aNode = aParent; in AddNodes()
H A DElementReference.java24 import org.apache.openoffice.ooxml.schema.model.base.INode;
70 public INode GetReferencedNode (final SchemaBase aSchema) in GetReferencedNode()
H A DComplexTypeReference.java24 import org.apache.openoffice.ooxml.schema.model.base.INode;
73 public INode GetReferencedNode (final SchemaBase aSchema) in GetReferencedNode()
H A DGroupReference.java24 import org.apache.openoffice.ooxml.schema.model.base.INode;
73 public INode GetReferencedNode (final SchemaBase aSchemaBase) in GetReferencedNode()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/base/
H A DNode.java30 implements INode, Comparable<Node>
88 public void AddAttribute (final INode aAttribute) in AddAttribute()
106 public Iterable<INode> GetAttributes () in GetAttributes()
120 public void AddChild (final INode aChild) in AddChild()
128 public Iterable<INode> GetChildren () in GetChildren()
136 public INode GetOnlyChild () in GetOnlyChild()
170 private final Vector<INode> maAttributes;
171 private final Vector<INode> maChildren;
H A DINode.java28 public interface INode interface
33 Iterable<INode> GetChildren(); in GetChildren()
34 INode GetOnlyChild(); in GetOnlyChild()
36 Iterable<INode> GetAttributes (); in GetAttributes()
H A DINodeReference.java29 extends INode
31 INode GetReferencedNode (final SchemaBase aSchema); in GetReferencedNode()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/optimize/
H A DSchemaOptimizer.java31 import org.apache.openoffice.ooxml.schema.model.base.INode;
76 final INode aNode = maTodoList.poll(); in Run()
79 … for (final INode aChild : new DereferencingNodeIterator(aNode, maOriginalSchemaBase, true)) in Run()
83 for (final INode aAttribute : aChild.GetAttributes()) in Run()
85 … for (final INode aAttribute : new AttributeNodeIterator(aChild, maOriginalSchemaBase)) in Run()
122 void RequestType (final INode aNode) in RequestType()
138 private final Queue<INode> maTodoList;
139 private final Set<INode> maProcessedTypes;
H A DCopyVisitor.java26 import org.apache.openoffice.ooxml.schema.model.base.INode;
78 @Override public void Default (final INode aNode) in Default()
H A DRequestVisitor.java27 import org.apache.openoffice.ooxml.schema.model.base.INode;
97 @Override public void Default (final INode aNode) in Default()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/generator/
H A DLogGenerator.java33 import org.apache.openoffice.ooxml.schema.model.base.INode;
192 final INode aType, in WriteType()
215 for (final INode aAttribute : ((ComplexType)aType).GetAttributes()) in WriteType()
232 for (final INode aChild : aType.GetChildren()) in WriteType()
244 final INode aAttribute) in WriteAttribute()
261 for (final INode aChildAttribute : ((AttributeGroup)aAttribute).GetChildren()) in WriteAttribute()
290 private boolean HasChild (final INode aType) in HasChild()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/generator/html/
H A DHtmlGenerator.java41 import org.apache.openoffice.ooxml.schema.model.base.INode;
178 private void WriteTopLevelNodes (final Iterable<? extends INode> aNodes) in WriteTopLevelNodes()
180 for (final INode aNode : aNodes) in WriteTopLevelNodes()
517 final INode aParent) in WriteChildren()
523 for (final INode aChild : aParent.GetChildren()) in WriteChildren()
543 final INode aParent) in WriteAttributes()
549 for (final INode aAttribute: aParent.GetAttributes()) in WriteAttributes()
570 final INode aNode) in WriteLocation()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/simple/
H A DSimpleTypeDescriptorFactory.java28 import org.apache.openoffice.ooxml.schema.model.base.INode;
53 public void Default (final INode aNode) in Default()
206 final INode aBaseType = maSchemaBase.GetSimpleTypeForName(aNode.GetBaseType()); in Visit()
267 for (final INode aChild : aNode.GetChildren()) in Visit()
281 public void Default (final INode aNode) in Default()
293 ISimpleTypeNode ApplyVisitor (final INode aNode) in ApplyVisitor()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/attribute/
H A DAttributeGroupReference.java24 import org.apache.openoffice.ooxml.schema.model.base.INode;
49 public INode GetOnlyChild () in GetOnlyChild()
83 public INode GetReferencedNode (final SchemaBase aSchemaBase) in GetReferencedNode()
H A DAttributeReference.java24 import org.apache.openoffice.ooxml.schema.model.base.INode;
71 public INode GetReferencedNode (final SchemaBase aSchemaBase) in GetReferencedNode()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/parser/
H A DSchemaParser.java38 import org.apache.openoffice.ooxml.schema.model.base.INode;
454 private INode ParseAttributeGroupOrReference () in ParseAttributeGroupOrReference()
459 final INode aGroup; in ParseAttributeGroupOrReference()
478 private INode ParseAttributeOrReference () in ParseAttributeOrReference()
481 final INode aAttribute; in ParseAttributeOrReference()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/simple/
H A DSimpleTypeReference.java24 import org.apache.openoffice.ooxml.schema.model.base.INode;
64 public INode GetReferencedNode (final SchemaBase aSchemaBase) in GetReferencedNode()

12