Searched refs:xml_node (Results 1 – 5 of 5) sorted by relevance
82 Node xml_node = mUiNode.getUiChildren().get(0).getXmlNode(); in run()84 if (xml_node instanceof IndexedRegion) { in run()85 IndexedRegion region = (IndexedRegion) xml_node; in run()93 Node xml_node = mUiNode.getXmlNode(); in run()94 if (xml_node instanceof NodeContainer) { in run()95 NodeContainer container = (NodeContainer) xml_node; in run()111 Node xml_node = mUiNode.getXmlNode(); in run()112 if (xml_node instanceof IndexedRegion) { in run()113 IndexedRegion region = (IndexedRegion) xml_node; in run()
122 Node xml_node = uiNode.getXmlNode(); in run() local123 if (xml_node == null) { in run()127 String data = getXmlTextFromEditor(xml_node); in run()133 data = getXmlTextFromSerialization(xml_node); in run()163 private String getXmlTextFromEditor(Node xml_node) { in getXmlTextFromEditor() argument168 if (xml_node instanceof NodeContainer) { in getXmlTextFromEditor()170 data = ((NodeContainer) xml_node).getSource(); in getXmlTextFromEditor()171 } else if (xml_node instanceof IndexedRegion && sse_doc != null) { in getXmlTextFromEditor()173 IndexedRegion region = (IndexedRegion) xml_node; in getXmlTextFromEditor()196 private String getXmlTextFromSerialization(Node xml_node) throws IOException { in getXmlTextFromSerialization() argument[all …]
246 private Node validateNode(Node root_node, Node xml_node) { in validateNode() argument247 if (root_node == xml_node) { in validateNode()248 return xml_node; in validateNode()252 if (root_node == xml_node || validateNode(node, xml_node) != null) { in validateNode()253 return xml_node; in validateNode()267 Node xml_node = getUiElementNode().getXmlNode(); in removeApplicationNode() local268 if (xml_node == null) { in removeApplicationNode()273 mUndoXmlDocument = xml_node.getOwnerDocument(); in removeApplicationNode()274 mUndoXmlParent = xml_node.getParentNode(); in removeApplicationNode()275 mUndoXmlNextNode = xml_node.getNextSibling(); in removeApplicationNode()
95 public boolean loadFromXmlNode(Node xml_node) { in loadFromXmlNode() argument96 boolean structure_changed = (getXmlDocument() != xml_node); in loadFromXmlNode()97 setXmlDocument((Document) xml_node); in loadFromXmlNode()98 structure_changed |= super.loadFromXmlNode(xml_node); in loadFromXmlNode()
54 Node xml_node = parent.getXmlNode(); in updateValue() local55 if (xml_node != null) { in updateValue()56 for (Node xml_child = xml_node.getFirstChild(); in updateValue()