/* * The Relaxer artifact * Copyright (c) 2000-2004, ASAMI Tomoharu, All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package org.relaxer.vocabulary.forrest_0_5.changes_v12; import java.io.*; import java.io.IOException; import java.io.PrintWriter; import java.io.Writer; import java.net.URL; import javax.xml.parsers.*; import org.w3c.dom.*; import org.xml.sax.*; /** * <b>FcAuthors</b> is generated from changes_v12.rng by Relaxer. * This class is derived from: * * <!-- for programmer * <element name="authors"> * <ref name="authors.attlist"/> * <oneOrMore> * <ref name="person"/> * </oneOrMore> * </element>--> * <!-- for javadoc --> * <pre> <element name="authors"> * <ref name="authors.attlist"/> * <oneOrMore> * <ref name="person"/> * </oneOrMore> * </element></pre> * * @version changes_v12.rng (Wed Mar 03 11:14:24 JST 2004) * @author Relaxer 1.1b (http://www.relaxer.org) */ public class FcAuthors implements java.io.Serializable, Cloneable { private String id_; private String xmlLang_; // List<FcPerson> private java.util.List person_ = new java.util.ArrayList(); /** * Creates a <code>FcAuthors</code>. * */ public FcAuthors() { } /** * Creates a <code>FcAuthors</code>. * * @param source */ public FcAuthors(FcAuthors source) { setup(source); } /** * Creates a <code>FcAuthors</code> by the Stack <code>stack</code> * that contains Elements. * This constructor is supposed to be used internally * by the Relaxer system. * * @param stack */ public FcAuthors(RStack stack) { setup(stack); } /** * Creates a <code>FcAuthors</code> by the Document <code>doc</code>. * * @param doc */ public FcAuthors(Document doc) { setup(doc.getDocumentElement()); } /** * Creates a <code>FcAuthors</code> by the Element <code>element</code>. * * @param element */ public FcAuthors(Element element) { setup(element); } /** * Creates a <code>FcAuthors</code> by the File <code>file</code>. * * @param file * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FcAuthors(File file) throws IOException, SAXException, ParserConfigurationException { setup(file); } /** * Creates a <code>FcAuthors</code> * by the String representation of URI <code>uri</code>. * * @param uri * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FcAuthors(String uri) throws IOException, SAXException, ParserConfigurationException { setup(uri); } /** * Creates a <code>FcAuthors</code> by the URL <code>url</code>. * * @param url * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FcAuthors(URL url) throws IOException, SAXException, ParserConfigurationException { setup(url); } /** * Creates a <code>FcAuthors</code> by the InputStream <code>in</code>. * * @param in * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FcAuthors(InputStream in) throws IOException, SAXException, ParserConfigurationException { setup(in); } /** * Creates a <code>FcAuthors</code> by the InputSource <code>is</code>. * * @param is * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FcAuthors(InputSource is) throws IOException, SAXException, ParserConfigurationException { setup(is); } /** * Creates a <code>FcAuthors</code> by the Reader <code>reader</code>. * * @param reader * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FcAuthors(Reader reader) throws IOException, SAXException, ParserConfigurationException { setup(reader); } /** * Initializes the <code>FcAuthors</code> by the FcAuthors <code>source</code>. * * @param source */ public void setup(FcAuthors source) { int size; setId(source.getId()); setXmlLang(source.getXmlLang()); this.person_.clear(); size = source.person_.size(); for (int i = 0;i < size;i++) { addPerson((FcPerson)source.getPerson(i).clone()); } } /** * Initializes the <code>FcAuthors</code> by the Document <code>doc</code>. * * @param doc */ public void setup(Document doc) { setup(doc.getDocumentElement()); } /** * Initializes the <code>FcAuthors</code> by the Element <code>element</code>. * * @param element */ public void setup(Element element) { init(element); } /** * Initializes the <code>FcAuthors</code> by the Stack <code>stack</code> * that contains Elements. * This constructor is supposed to be used internally * by the Relaxer system. * * @param stack */ public void setup(RStack stack) { init(stack.popElement()); } /** * @param element */ private void init(Element element) { RStack stack = new RStack(element); id_ = URelaxer.getAttributePropertyAsString(element, "id"); xmlLang_ = URelaxer.getAttributePropertyAsString(element, "xml:lang"); person_.clear(); while (true) { if (FcPerson.isMatch(stack)) { addPerson(new FcPerson(stack)); } else { break; } } } /** * @return Object */ public Object clone() { return (new FcAuthors(this)); } /** * Creates a DOM representation of the object. * Result is appended to the Node <code>parent</code>. * * @param parent */ public void makeElement(Node parent) { Document doc; if (parent instanceof Document) { doc = (Document)parent; } else { doc = parent.getOwnerDocument(); } Element element = doc.createElement("authors"); int size; if (this.id_ != null) { URelaxer.setAttributePropertyByString(element, "id", this.id_); } if (this.xmlLang_ != null) { URelaxer.setAttributePropertyByString(element, "xml:lang", this.xmlLang_); } size = this.person_.size(); for (int i = 0;i < size;i++) { FcPerson value = (FcPerson)this.person_.get(i); value.makeElement(element); } parent.appendChild(element); } /** * Initializes the <code>FcAuthors</code> by the File <code>file</code>. * * @param file * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public void setup(File file) throws IOException, SAXException, ParserConfigurationException { setup(file.toURL()); } /** * Initializes the <code>FcAuthors</code> * by the String representation of URI <code>uri</code>. * * @param uri * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public void setup(String uri) throws IOException, SAXException, ParserConfigurationException { setup(UJAXP.getDocument(uri, UJAXP.FLAG_NONE)); } /** * Initializes the <code>FcAuthors</code> by the URL <code>url</code>. * * @param url * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public void setup(URL url) throws IOException, SAXException, ParserConfigurationException { setup(UJAXP.getDocument(url, UJAXP.FLAG_NONE)); } /** * Initializes the <code>FcAuthors</code> by the InputStream <code>in</code>. * * @param in * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public void setup(InputStream in) throws IOException, SAXException, ParserConfigurationException { setup(UJAXP.getDocument(in, UJAXP.FLAG_NONE)); } /** * Initializes the <code>FcAuthors</code> by the InputSource <code>is</code>. * * @param is * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public void setup(InputSource is) throws IOException, SAXException, ParserConfigurationException { setup(UJAXP.getDocument(is, UJAXP.FLAG_NONE)); } /** * Initializes the <code>FcAuthors</code> by the Reader <code>reader</code>. * * @param reader * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public void setup(Reader reader) throws IOException, SAXException, ParserConfigurationException { setup(UJAXP.getDocument(reader, UJAXP.FLAG_NONE)); } /** * Creates a DOM document representation of the object. * * @exception ParserConfigurationException * @return Document */ public Document makeDocument() throws ParserConfigurationException { Document doc = UJAXP.makeDocument(); makeElement(doc); return (doc); } /** * Gets the String property <b>id</b>. * * @return String */ public String getId() { return (id_); } /** * Sets the String property <b>id</b>. * * @param id */ public void setId(String id) { this.id_ = id; } /** * Gets the String property <b>xmlLang</b>. * * @return String */ public String getXmlLang() { return (xmlLang_); } /** * Sets the String property <b>xmlLang</b>. * * @param xmlLang */ public void setXmlLang(String xmlLang) { this.xmlLang_ = xmlLang; } /** * Gets the FcPerson property <b>person</b>. * * @return FcPerson[] */ public FcPerson[] getPerson() { FcPerson[] array = new FcPerson[person_.size()]; return ((FcPerson[])person_.toArray(array)); } /** * Sets the FcPerson property <b>person</b>. * * @param person */ public void setPerson(FcPerson[] person) { this.person_.clear(); for (int i = 0;i < person.length;i++) { addPerson(person[i]); } } /** * Sets the FcPerson property <b>person</b>. * * @param person */ public void setPerson(FcPerson person) { this.person_.clear(); addPerson(person); } /** * Adds the FcPerson property <b>person</b>. * * @param person */ public void addPerson(FcPerson person) { this.person_.add(person); } /** * Adds the FcPerson property <b>person</b>. * * @param person */ public void addPerson(FcPerson[] person) { for (int i = 0;i < person.length;i++) { addPerson(person[i]); } } /** * Gets number of the FcPerson property <b>person</b>. * * @return int */ public int sizePerson() { return (person_.size()); } /** * Gets the FcPerson property <b>person</b> by index. * * @param index * @return FcPerson */ public FcPerson getPerson(int index) { return ((FcPerson)person_.get(index)); } /** * Sets the FcPerson property <b>person</b> by index. * * @param index * @param person */ public void setPerson(int index, FcPerson person) { this.person_.set(index, person); } /** * Adds the FcPerson property <b>person</b> by index. * * @param index * @param person */ public void addPerson(int index, FcPerson person) { this.person_.add(index, person); } /** * Remove the FcPerson property <b>person</b> by index. * * @param index */ public void removePerson(int index) { this.person_.remove(index); } /** * Remove the FcPerson property <b>person</b> by object. * * @param person */ public void removePerson(FcPerson person) { this.person_.remove(person); } /** * Clear the FcPerson property <b>person</b>. * */ public void clearPerson() { this.person_.clear(); } /** * Makes an XML text representation. * * @return String */ public String makeTextDocument() { StringBuffer buffer = new StringBuffer(); makeTextElement(buffer); return (new String(buffer)); } /** * Makes an XML text representation. * * @param buffer */ public void makeTextElement(StringBuffer buffer) { int size; buffer.append("<authors"); if (id_ != null) { buffer.append(" id=\""); buffer.append(URelaxer.escapeAttrQuot(URelaxer.getString(getId()))); buffer.append("\""); } if (xmlLang_ != null) { buffer.append(" xml:lang=\""); buffer.append(URelaxer.escapeAttrQuot(URelaxer.getString(getXmlLang()))); buffer.append("\""); } buffer.append(">"); size = this.person_.size(); for (int i = 0;i < size;i++) { FcPerson value = (FcPerson)this.person_.get(i); value.makeTextElement(buffer); } buffer.append("</authors>"); } /** * Makes an XML text representation. * * @param buffer * @exception IOException */ public void makeTextElement(Writer buffer) throws IOException { int size; buffer.write("<authors"); if (id_ != null) { buffer.write(" id=\""); buffer.write(URelaxer.escapeAttrQuot(URelaxer.getString(getId()))); buffer.write("\""); } if (xmlLang_ != null) { buffer.write(" xml:lang=\""); buffer.write(URelaxer.escapeAttrQuot(URelaxer.getString(getXmlLang()))); buffer.write("\""); } buffer.write(">"); size = this.person_.size(); for (int i = 0;i < size;i++) { FcPerson value = (FcPerson)this.person_.get(i); value.makeTextElement(buffer); } buffer.write("</authors>"); } /** * Makes an XML text representation. * * @param buffer */ public void makeTextElement(PrintWriter buffer) { int size; buffer.print("<authors"); if (id_ != null) { buffer.print(" id=\""); buffer.print(URelaxer.escapeAttrQuot(URelaxer.getString(getId()))); buffer.print("\""); } if (xmlLang_ != null) { buffer.print(" xml:lang=\""); buffer.print(URelaxer.escapeAttrQuot(URelaxer.getString(getXmlLang()))); buffer.print("\""); } buffer.print(">"); size = this.person_.size(); for (int i = 0;i < size;i++) { FcPerson value = (FcPerson)this.person_.get(i); value.makeTextElement(buffer); } buffer.print("</authors>"); } /** * Makes an XML text representation. * * @param buffer */ public void makeTextAttribute(StringBuffer buffer) { } /** * Makes an XML text representation. * * @param buffer * @exception IOException */ public void makeTextAttribute(Writer buffer) throws IOException { } /** * Makes an XML text representation. * * @param buffer */ public void makeTextAttribute(PrintWriter buffer) { } /** * Gets the property value as String. * * @return String */ public String getIdAsString() { return (URelaxer.getString(getId())); } /** * Gets the property value as String. * * @return String */ public String getXmlLangAsString() { return (URelaxer.getString(getXmlLang())); } /** * Sets the property value by String. * * @param string */ public void setIdByString(String string) { setId(string); } /** * Sets the property value by String. * * @param string */ public void setXmlLangByString(String string) { setXmlLang(string); } /** * Returns a String representation of this object. * While this method informs as XML format representaion, * it's purpose is just information, not making * a rigid XML documentation. * * @return String */ public String toString() { try { return (makeTextDocument()); } catch (Exception e) { return (super.toString()); } } /** * Tests if a Element <code>element</code> is valid * for the <code>FcAuthors</code>. * * @param element * @return boolean */ public static boolean isMatch(Element element) { if (!URelaxer.isTargetElement(element, "authors")) { return (false); } RStack target = new RStack(element); boolean $match$ = false; Element child; if (!FcPerson.isMatchHungry(target)) { return (false); } $match$ = true; while (true) { if (!FcPerson.isMatchHungry(target)) { break; } $match$ = true; } if (!target.isEmptyElement()) { return (false); } return (true); } /** * Tests if elements contained in a Stack <code>stack</code> * is valid for the <code>FcAuthors</code>. * This mehtod is supposed to be used internally * by the Relaxer system. * * @param stack * @return boolean */ public static boolean isMatch(RStack stack) { Element element = stack.peekElement(); if (element == null) { return (false); } return (isMatch(element)); } /** * Tests if elements contained in a Stack <code>stack</code> * is valid for the <code>FcAuthors</code>. * This method consumes the stack contents during matching operation. * This mehtod is supposed to be used internally * by the Relaxer system. * * @param stack * @return boolean */ public static boolean isMatchHungry(RStack stack) { Element element = stack.peekElement(); if (element == null) { return (false); } if (isMatch(element)) { stack.popElement(); return (true); } else { return (false); } } }