📄 elemententry.java
字号:
//==============================================================================//===//=== ElementEntry//===//==============================================================================//=== Copyright (C) 2001-2007 Food and Agriculture Organization of the//=== United Nations (FAO-UN), United Nations World Food Programme (WFP)//=== and United Nations Environment Programme (UNEP)//===//=== This program is free software; you can redistribute it and/or modify//=== it under the terms of the GNU General Public License as published by//=== the Free Software Foundation; either version 2 of the License, or (at//=== your option) any later version.//===//=== This program is distributed in the hope that it will be useful, but//=== WITHOUT ANY WARRANTY; without even the implied warranty of//=== MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU//=== General Public License for more details.//===//=== You should have received a copy of the GNU General Public License//=== along with this program; if not, write to the Free Software//=== Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA//===//=== Contact: Jeroen Ticheler - FAO - Viale delle Terme di Caracalla 2,//=== Rome - Italy. email: geonetwork@osgeo.org//==============================================================================package org.fao.geonet.kernel.schema;import java.util.ArrayList;import java.util.List;import java.util.StringTokenizer;import org.jdom.Attribute;import org.jdom.Element;//==============================================================================class ElementEntry{ public String name; public String ns; public String type; public int min = 1; public int max = 1; public String substGroup; public String substGroupNS; public String ref; public boolean abstrElem; public boolean choiceElem; public ArrayList alChoiceElems = new ArrayList(); public ComplexTypeEntry complexType; public SimpleTypeEntry simpleType; //--------------------------------------------------------------------------- //--- //--- Constructor - this class handles both <element> and <choice> entries //--- //--------------------------------------------------------------------------- private ElementEntry() {} //--------------------------------------------------------------------------- public ElementEntry(Element el, String file, String targetNS, String targetNSPrefix) { this(new ElementInfo(el, file, targetNS, targetNSPrefix)); } //--------------------------------------------------------------------------- public ElementEntry(ElementInfo ei) { ns = ei.targetNS; handleAttribs(ei); if (choiceElem) handleChoiceChildren(ei); else handleChildren(ei); } //--------------------------------------------------------------------------- //--- //--- API methods //--- //--------------------------------------------------------------------------- public ElementEntry copy() { ElementEntry ee = new ElementEntry(); ee.name = name; ee.ns = ns; ee.type = type; ee.min = min; ee.max = max; ee.substGroup = substGroup; ee.substGroupNS= substGroupNS; ee.ref = ref; ee.abstrElem = abstrElem; ee.complexType = complexType; ee.simpleType = simpleType; ee.choiceElem = choiceElem; ee.alChoiceElems = alChoiceElems; return ee; } //--------------------------------------------------------------------------- //--- //--- Private methods //--- //--------------------------------------------------------------------------- private void handleAttribs(ElementInfo ei) { if (ei.element.getName().equals("choice")) choiceElem = true; List attrs = ei.element.getAttributes(); for(int i=0; i<attrs.size(); i++) { Attribute at = (Attribute) attrs.get(i); String attrName = at.getName(); String value= at.getValue(); if (attrName.equals("name")) { name = at.getValue(); if ((name.indexOf(":") == -1) && (ei.targetNSPrefix != null)) name = ei.targetNSPrefix + ":" + at.getValue(); Logger.log("Doing Element "+name); } else if (attrName.equals("type")) { type = value; Logger.log("element "+this.name+" has type "+type); } else if (attrName.equals("ref")) ref = value; else if (attrName.equals("substitutionGroup")) substGroup = value; else if (attrName.equals("abstract")) { abstrElem = "true".equals(value); Logger.log(" -- is abstract"); } else if (attrName.equals("minOccurs")) min = Integer.parseInt(value); else if (attrName.equals("maxOccurs")) { if (value.equals("unbounded")) max = 10000; else max = Integer.parseInt(value); } else { if (choiceElem) Logger.log("Unknown attribute '" +attrName+ "'in <choice> element", ei); else Logger.log("Unknown attribute '" +attrName+ "'in <element> element", ei); } } } //--------------------------------------------------------------------------- private void handleChildren(ElementInfo ei) { List children = ei.element.getChildren(); for(int i=0; i<children.size(); i++) { Element elChild = (Element) children.get(i); String elName = elChild.getName(); if (elName.equals("complexType")) complexType = new ComplexTypeEntry(elChild, ei.file, ei.targetNS, ei.targetNSPrefix); else if (elName.equals("simpleType")) { simpleType = new SimpleTypeEntry(elChild, ei.file, ei.targetNS, ei.targetNSPrefix); if (simpleType.name == null) simpleType.name = name+"#S"; } else if (elName.equals("key")) Logger.log("Skipping 'key' child in <element> element '"+ name +"'"); else if (elName.equals("annotation")) ; else Logger.log("Unknown child '" +elName+ "' in <element> element", ei); } } //--------------------------------------------------------------------------- private void handleChoiceChildren(ElementInfo ei) { List children = ei.element.getChildren(); for(int i=0; i<children.size(); i++) { Element elChild = (Element) children.get(i); String elName = elChild.getName(); if (elName.equals("annotation")) { List appinfo = elChild.getChildren(); for (int j=0;i < appinfo.size(); j++) { Element elElem = (Element) appinfo.get(j); if (elElem.getName().equals("appinfo")) { name = (String) elElem.getText(); } } } else if (elName.equals("element") || elName.equals("choice")) { ArrayList alElems = new ArrayList(); alChoiceElems.add(alElems); alElems.add(new ElementEntry(elChild, ei.file, ei.targetNS, ei.targetNSPrefix)); } else if (elName.equals("sequence")) { ArrayList alElems = new ArrayList(); alChoiceElems.add(alElems); List sequence = elChild.getChildren(); for (int j=0;i < sequence.size(); j++) { Element elSeq = (Element) sequence.get(j); if (elName.equals("element") || elName.equals("choice")) alElems.add(new ElementEntry(elChild, ei.file, ei.targetNS, ei.targetNSPrefix)); } } else Logger.log("Unknown child '" +elName+ "' in <choice> element", ei); } }}//==============================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -