/* * 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.document_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>FdWarning</b> is generated from document_v12.rng by Relaxer. * This class is derived from: * * <!-- for programmer * <element name="warning"> * <ref name="warning.attlist"/> * <zeroOrMore> * <ref name="content.mix"/> * </zeroOrMore> * </element>--> * <!-- for javadoc --> * <pre> <element name="warning"> * <ref name="warning.attlist"/> * <zeroOrMore> * <ref name="content.mix"/> * </zeroOrMore> * </element></pre> * * @version document_v12.rng (Wed Mar 03 11:10:57 JST 2004) * @author Relaxer 1.1b (http://www.relaxer.org) */ public class FdWarning implements java.io.Serializable, Cloneable, IFdFlowMixed, IFdFlowMixedChoice, IFdBodyChoice, IFdSectionChoice { private String label_; private String id_; private String xmlLang_; // List<IFdContentMixMixed> private java.util.List content_ = new java.util.ArrayList(); /** * Creates a <code>FdWarning</code>. * */ public FdWarning() { } /** * Creates a <code>FdWarning</code>. * * @param source */ public FdWarning(FdWarning source) { setup(source); } /** * Creates a <code>FdWarning</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 FdWarning(RStack stack) { setup(stack); } /** * Creates a <code>FdWarning</code> by the Document <code>doc</code>. * * @param doc */ public FdWarning(Document doc) { setup(doc.getDocumentElement()); } /** * Creates a <code>FdWarning</code> by the Element <code>element</code>. * * @param element */ public FdWarning(Element element) { setup(element); } /** * Creates a <code>FdWarning</code> by the File <code>file</code>. * * @param file * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FdWarning(File file) throws IOException, SAXException, ParserConfigurationException { setup(file); } /** * Creates a <code>FdWarning</code> * by the String representation of URI <code>uri</code>. * * @param uri * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FdWarning(String uri) throws IOException, SAXException, ParserConfigurationException { setup(uri); } /** * Creates a <code>FdWarning</code> by the URL <code>url</code>. * * @param url * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FdWarning(URL url) throws IOException, SAXException, ParserConfigurationException { setup(url); } /** * Creates a <code>FdWarning</code> by the InputStream <code>in</code>. * * @param in * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FdWarning(InputStream in) throws IOException, SAXException, ParserConfigurationException { setup(in); } /** * Creates a <code>FdWarning</code> by the InputSource <code>is</code>. * * @param is * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FdWarning(InputSource is) throws IOException, SAXException, ParserConfigurationException { setup(is); } /** * Creates a <code>FdWarning</code> by the Reader <code>reader</code>. * * @param reader * @exception IOException * @exception SAXException * @exception ParserConfigurationException */ public FdWarning(Reader reader) throws IOException, SAXException, ParserConfigurationException { setup(reader); } /** * Initializes the <code>FdWarning</code> by the FdWarning <code>source</code>. * * @param source */ public void setup(FdWarning source) { int size; setLabel(source.getLabel()); setId(source.getId()); setXmlLang(source.getXmlLang()); this.content_.clear(); size = source.content_.size(); for (int i = 0;i < size;i++) { addContent((IFdContentMixMixed)source.getContent(i).clone()); } } /** * Initializes the <code>FdWarning</code> by the Document <code>doc</code>. * * @param doc */ public void setup(Document doc) { setup(doc.getDocumentElement()); } /** * Initializes the <code>FdWarning</code> by the Element <code>element</code>. * * @param element */ public void setup(Element element) { init(element); } /** * Initializes the <code>FdWarning</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); label_ = URelaxer.getAttributePropertyAsString(element, "label"); id_ = URelaxer.getAttributePropertyAsString(element, "id"); xmlLang_ = URelaxer.getAttributePropertyAsString(element, "xml:lang"); this.content_.clear(); while (true) { if (RString.isMatch(stack)) { addContent(new RString(stack)); } else if (FdImg.isMatch(stack)) { addContent(new FdImg(stack)); } else if (FdIcon.isMatch(stack)) { addContent(new FdIcon(stack)); } else if (FdLink.isMatch(stack)) { addContent(new FdLink(stack)); } else if (FdJump.isMatch(stack)) { addContent(new FdJump(stack)); } else if (FdFork.isMatch(stack)) { addContent(new FdFork(stack)); } else if (FdAcronym.isMatch(stack)) { addContent(new FdAcronym(stack)); } else if (FdStrong.isMatch(stack)) { addContent(new FdStrong(stack)); } else if (FdEm.isMatch(stack)) { addContent(new FdEm(stack)); } else if (FdCode.isMatch(stack)) { addContent(new FdCode(stack)); } else if (FdSub.isMatch(stack)) { addContent(new FdSub(stack)); } else if (FdSup.isMatch(stack)) { addContent(new FdSup(stack)); } else if (FdBr.isMatch(stack)) { addContent(new FdBr(stack)); } else { break; } } } /** * @return Object */ public Object clone() { return (new FdWarning(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("warning"); int size; if (this.label_ != null) { URelaxer.setAttributePropertyByString(element, "label", this.label_); } if (this.id_ != null) { URelaxer.setAttributePropertyByString(element, "id", this.id_); } if (this.xmlLang_ != null) { URelaxer.setAttributePropertyByString(element, "xml:lang", this.xmlLang_); } size = this.content_.size(); for (int i = 0;i < size;i++) { IFdContentMixMixed value = (IFdContentMixMixed)this.content_.get(i); value.makeElement(element); } parent.appendChild(element); } /** * Initializes the <code>FdWarning</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>FdWarning</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>FdWarning</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>FdWarning</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>FdWarning</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>FdWarning</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); } /** * Sets a mixed content by <code>String</code>. * * @param value */ public void setContent(String value) { setContent(new RString(value)); } /** * Adds a mixed content by <code>String</code>. * * @param value */ public void addContent(String value) { addContent(new RString(value)); } /** * Sets a mixed content by <code>String</code>. * * @param value */ public void setContentByString(String value) { setContent(new RString(value)); } /** * Adds a mixed content by <code>String</code>. * * @param value */ public void addContentByString(String value) { addContent(new RString(value)); } /** * Sets a mixed content by <code>org.w3c.dom.Node</code>. * * @param value */ public void setContent(org.w3c.dom.Node value) { setContent(new RString(value)); } /** * Adds a mixed content by <code>org.w3c.dom.Node</code>. * * @param value */ public void addContent(org.w3c.dom.Node value) { addContent(new RString(value)); } /** * Gets the String property <b>label</b>. * * @return String */ public String getLabel() { return (label_); } /** * Sets the String property <b>label</b>. * * @param label */ public void setLabel(String label) { this.label_ = label; } /** * 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 IFdContentMixMixed property <b>content</b>. * * @return IFdContentMixMixed[] */ public IFdContentMixMixed[] getContent() { IFdContentMixMixed[] array = new IFdContentMixMixed[content_.size()]; return ((IFdContentMixMixed[])content_.toArray(array)); } /** * Sets the IFdContentMixMixed property <b>content</b>. * * @param content */ public void setContent(IFdContentMixMixed[] content) { this.content_.clear(); for (int i = 0;i < content.length;i++) { addContent(content[i]); } } /** * Sets the IFdContentMixMixed property <b>content</b>. * * @param content */ public void setContent(IFdContentMixMixed content) { this.content_.clear(); addContent(content); } /** * Adds the IFdContentMixMixed property <b>content</b>. * * @param content */ public void addContent(IFdContentMixMixed content) { this.content_.add(content); } /** * Adds the IFdContentMixMixed property <b>content</b>. * * @param content */ public void addContent(IFdContentMixMixed[] content) { for (int i = 0;i < content.length;i++) { addContent(content[i]); } } /** * Gets number of the IFdContentMixMixed property <b>content</b>. * * @return int */ public int sizeContent() { return (content_.size()); } /** * Gets the IFdContentMixMixed property <b>content</b> by index. * * @param index * @return IFdContentMixMixed */ public IFdContentMixMixed getContent(int index) { return ((IFdContentMixMixed)content_.get(index)); } /** * Sets the IFdContentMixMixed property <b>content</b> by index. * * @param index * @param content */ public void setContent(int index, IFdContentMixMixed content) { this.content_.set(index, content); } /** * Adds the IFdContentMixMixed property <b>content</b> by index. * * @param index * @param content */ public void addContent(int index, IFdContentMixMixed content) { this.content_.add(index, content); } /** * Remove the IFdContentMixMixed property <b>content</b> by index. * * @param index */ public void removeContent(int index) { this.content_.remove(index); } /** * Remove the IFdContentMixMixed property <b>content</b> by object. * * @param content */ public void removeContent(IFdContentMixMixed content) { this.content_.remove(content); } /** * Clear the IFdContentMixMixed property <b>content</b>. * */ public void clearContent() { this.content_.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("<warning"); if (label_ != null) { buffer.append(" label=\""); buffer.append(URelaxer.escapeAttrQuot(URelaxer.getString(getLabel()))); buffer.append("\""); } 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("\""); } size = this.content_.size(); for (int i = 0;i < size;i++) { IFdContentMixMixed value = (IFdContentMixMixed)this.content_.get(i); value.makeTextAttribute(buffer); } buffer.append(">"); size = this.content_.size(); for (int i = 0;i < size;i++) { IFdContentMixMixed value = (IFdContentMixMixed)this.content_.get(i); value.makeTextElement(buffer); } buffer.append("</warning>"); } /** * Makes an XML text representation. * * @param buffer * @exception IOException */ public void makeTextElement(Writer buffer) throws IOException { int size; buffer.write("<warning"); if (label_ != null) { buffer.write(" label=\""); buffer.write(URelaxer.escapeAttrQuot(URelaxer.getString(getLabel()))); buffer.write("\""); } 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("\""); } size = this.content_.size(); for (int i = 0;i < size;i++) { IFdContentMixMixed value = (IFdContentMixMixed)this.content_.get(i); value.makeTextAttribute(buffer); } buffer.write(">"); size = this.content_.size(); for (int i = 0;i < size;i++) { IFdContentMixMixed value = (IFdContentMixMixed)this.content_.get(i); value.makeTextElement(buffer); } buffer.write("</warning>"); } /** * Makes an XML text representation. * * @param buffer */ public void makeTextElement(PrintWriter buffer) { int size; buffer.print("<warning"); if (label_ != null) { buffer.print(" label=\""); buffer.print(URelaxer.escapeAttrQuot(URelaxer.getString(getLabel()))); buffer.print("\""); } 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("\""); } size = this.content_.size(); for (int i = 0;i < size;i++) { IFdContentMixMixed value = (IFdContentMixMixed)this.content_.get(i); value.makeTextAttribute(buffer); } buffer.print(">"); size = this.content_.size(); for (int i = 0;i < size;i++) { IFdContentMixMixed value = (IFdContentMixMixed)this.content_.get(i); value.makeTextElement(buffer); } buffer.print("</warning>"); } /** * 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 getLabelAsString() { return (URelaxer.getString(getLabel())); } /** * 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 setLabelByString(String string) { setLabel(string); } /** * 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>FdWarning</code>. * * @param element * @return boolean */ public static boolean isMatch(Element element) { if (!URelaxer.isTargetElement(element, "warning")) { return (false); } RStack target = new RStack(element); boolean $match$ = false; Element child; if (RString.isMatch(target)) { $match$ = true; } while (true) { if (FdImg.isMatchHungry(target)) { $match$ = true; } else if (FdIcon.isMatchHungry(target)) { $match$ = true; } else if (FdLink.isMatchHungry(target)) { $match$ = true; } else if (FdJump.isMatchHungry(target)) { $match$ = true; } else if (FdFork.isMatchHungry(target)) { $match$ = true; } else if (FdAcronym.isMatchHungry(target)) { $match$ = true; } else if (FdStrong.isMatchHungry(target)) { $match$ = true; } else if (FdEm.isMatchHungry(target)) { $match$ = true; } else if (FdCode.isMatchHungry(target)) { $match$ = true; } else if (FdSub.isMatchHungry(target)) { $match$ = true; } else if (FdSup.isMatchHungry(target)) { $match$ = true; } else if (FdBr.isMatchHungry(target)) { $match$ = true; } else { break; } } if (!target.isEmptyElement()) { return (false); } return (true); } /** * Tests if elements contained in a Stack <code>stack</code> * is valid for the <code>FdWarning</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>FdWarning</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); } } }