Uses of Class
org.eolang.jeo.representation.xmir.XmlNode
-
Packages that use XmlNode Package Description org.eolang.jeo.representation.xmir Package for reading XMIR files and converting them into bytecode. -
-
Uses of XmlNode in org.eolang.jeo.representation.xmir
Methods in org.eolang.jeo.representation.xmir that return XmlNode Modifier and Type Method Description XmlNode
XmlNode. child(String name)
Get child node.XmlNode
XmlNode. child(String attribute, String value)
Get child node by attribute.XmlNode
XmlNode. firstChild()
Get first child.XmlNode
XmlInstruction. toNode()
Get XML node.Methods in org.eolang.jeo.representation.xmir that return types with arguments of type XmlNode Modifier and Type Method Description Stream<XmlNode>
XmlNode. children()
Get all child nodes.List<XmlNode>
XmlMethod. nodes()
All the method instructions.Optional<XmlNode>
XmlNode. optchild(String name)
Get optional child node.Optional<XmlNode>
XmlNode. optchild(String attribute, String value)
Get optional child node by attribute.Methods in org.eolang.jeo.representation.xmir with parameters of type XmlNode Modifier and Type Method Description void
XmlNode. append(XmlNode entry)
Append entry to the end of the node.void
XmlMethod. replaceInstructions(XmlNode... entries)
Replace instructions.Constructors in org.eolang.jeo.representation.xmir with parameters of type XmlNode Constructor Description XmlAnnotation(XmlNode xmlnode)
Constructor.XmlAnnotationProperty(XmlNode node)
Constructor.XmlAnnotations(XmlNode xmlnode)
Constructor.XmlClass(XmlNode node)
Constructor.XmlClassProperties(XmlNode clazz)
Constructor.XmlDefaultValue(XmlNode node)
Constructor.XmlField(XmlNode xmlnode)
Constructor.XmlFrame(XmlNode node)
Constructor.XmlInstruction(XmlNode node)
Constructor.XmlLabel(XmlNode node)
Constructor.XmlMaxs(XmlNode node)
Constructor.XmlMethod(XmlNode xmlnode)
Constructor.XmlOperand(XmlNode node)
Constructor.XmlTryCatchEntry(XmlNode node)
Constructor.XmlTuple(XmlNode node)
Constructor.
-