/** * Copyright 2013 European Parliament * * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * * http://joinup.ec.europa.eu/software/page/eupl * * Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and limitations under the Licence. */ package org.nsesa.editor.gwt.an.common.client.ui.overlay.document.gen.csd05; import com.google.gwt.dom.client.Element; import com.google.gwt.user.client.DOM; import org.nsesa.editor.gwt.an.common.client.ui.overlay.document.gen.xmlschema.StringSimpleType; import org.nsesa.editor.gwt.core.client.ui.overlay.document.OverlayWidget; import org.nsesa.editor.gwt.core.client.ui.overlay.document.OverlayWidgetImpl; import org.nsesa.editor.gwt.core.client.ui.overlay.document.StructureIndicator; import java.util.LinkedHashMap; /** * the type judgmentStructure specifies the overall content model of the document types that describe judgments * This file is generated. Rather than changing this file, correct the template called <tt>overlayClass.ftl</tt>. */ public class JudgmentStructureComplexType extends OverlayWidgetImpl { /** * Stores a structure indicator coming from xsd structure * */ private static StructureIndicator STRUCTURE_INDICATOR = new StructureIndicator.DefaultStructureIndicator(1, 1 , new StructureIndicator.DefaultSequence(1, 1, new StructureIndicator.DefaultElement(1, 1, new Meta()) , new StructureIndicator.DefaultElement(0, 1, new CoverPage()) , new StructureIndicator.DefaultElement(1, 1, new Header()) , new StructureIndicator.DefaultElement(1, 1, new JudgmentBody()) , new StructureIndicator.DefaultElement(0, 1, new Conclusions()) , new StructureIndicator.DefaultElement(0, 1, new Attachments()) , new StructureIndicator.DefaultElement(0, 1, new Components()) ) ); /** * Create a browser DOM span element and set up "type", "ns" and css class attributes */ public static Element create() { com.google.gwt.user.client.Element span = DOM.createSpan(); span.setAttribute("data-type", "judgmentStructureComplexType"); span.setAttribute("data-ns", "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05"); span.setClassName("widget judgmentStructureComplexType"); return span; } // CONSTRUCTORS ------------------ /** * Create a <code>JudgmentStructureComplexType</code> object with the given DOM element */ public JudgmentStructureComplexType(Element element) { super(element); } // FIELDS ------------------ private VersionTypeSimpleType containsAttr; private StringSimpleType nameAttr; /** * Return <code>containsAttr</code> property * * @return containsAttr */ public VersionTypeSimpleType getContainsAttr() { if (containsAttr == null) { containsAttr = VersionTypeSimpleType.fromString(getElement().getAttribute("contains")); } return containsAttr; } /** * Return <code>containsAttr</code> property in DSL way * * @return containsAttr */ public VersionTypeSimpleType containsAttr() { return getContainsAttr(); } /** * Set <code>containsAttr</code> property * * @param containsAttr the new value */ public void setContainsAttr(final VersionTypeSimpleType containsAttr) { this.containsAttr = containsAttr; getElement().setAttribute("contains", containsAttr.value()); } /** * Set <code>containsAttr</code> property in DSL way * * @param containsAttr the new value * @return <code>JudgmentStructureComplexType</code> instance */ public JudgmentStructureComplexType containsAttr(final VersionTypeSimpleType containsAttr) { setContainsAttr(containsAttr); return this; } /** * Return <code>nameAttr</code> property * * @return nameAttr */ public StringSimpleType getNameAttr() { if (nameAttr == null) { nameAttr = new StringSimpleType(); nameAttr.setValue(getElement().getAttribute("name")); } return nameAttr; } /** * Return <code>nameAttr</code> property in DSL way * * @return nameAttr */ public StringSimpleType nameAttr() { return getNameAttr(); } /** * Set <code>nameAttr</code> property * * @param nameAttr the new value */ public void setNameAttr(final StringSimpleType nameAttr) { this.nameAttr = nameAttr; getElement().setAttribute("name", nameAttr.getValue()); } /** * Set <code>nameAttr</code> property in DSL way * * @param nameAttr the new value * @return <code>JudgmentStructureComplexType</code> instance */ public JudgmentStructureComplexType nameAttr(final StringSimpleType nameAttr) { setNameAttr(nameAttr); return this; } /** * Add <code>Meta</code> property in the list of properties * * @return The property as unmodifiable list */ public Meta getMeta() { Meta result = null; for (OverlayWidget widget : getChildOverlayWidgets()) { if ("Meta".equalsIgnoreCase(widget.getType()) && "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05".equalsIgnoreCase(widget.getNamespaceURI())) { result = (Meta) widget; break; } } return result; } /** * Set <code>metaElem</code> property in DSL way * * @param metaElem new value * @return <code>Meta</code> instance */ public Meta setMeta(Meta metaElem) { Meta result = getMeta(); // remove the child of the same type if exist if (result != null) { this.removeOverlayWidget(result); } this.addOverlayWidget(metaElem); return metaElem; } /** * Add <code>CoverPage</code> property in the list of properties * * @return The property as unmodifiable list */ public CoverPage getCoverPage() { CoverPage result = null; for (OverlayWidget widget : getChildOverlayWidgets()) { if ("CoverPage".equalsIgnoreCase(widget.getType()) && "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05".equalsIgnoreCase(widget.getNamespaceURI())) { result = (CoverPage) widget; break; } } return result; } /** * Set <code>coverPageElem</code> property in DSL way * * @param coverPageElem new value * @return <code>CoverPage</code> instance */ public CoverPage setCoverPage(CoverPage coverPageElem) { CoverPage result = getCoverPage(); // remove the child of the same type if exist if (result != null) { this.removeOverlayWidget(result); } this.addOverlayWidget(coverPageElem); return coverPageElem; } /** * Add <code>Header</code> property in the list of properties * * @return The property as unmodifiable list */ public Header getHeader() { Header result = null; for (OverlayWidget widget : getChildOverlayWidgets()) { if ("Header".equalsIgnoreCase(widget.getType()) && "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05".equalsIgnoreCase(widget.getNamespaceURI())) { result = (Header) widget; break; } } return result; } /** * Set <code>headerElem</code> property in DSL way * * @param headerElem new value * @return <code>Header</code> instance */ public Header setHeader(Header headerElem) { Header result = getHeader(); // remove the child of the same type if exist if (result != null) { this.removeOverlayWidget(result); } this.addOverlayWidget(headerElem); return headerElem; } /** * Add <code>JudgmentBody</code> property in the list of properties * * @return The property as unmodifiable list */ public JudgmentBody getJudgmentBody() { JudgmentBody result = null; for (OverlayWidget widget : getChildOverlayWidgets()) { if ("JudgmentBody".equalsIgnoreCase(widget.getType()) && "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05".equalsIgnoreCase(widget.getNamespaceURI())) { result = (JudgmentBody) widget; break; } } return result; } /** * Set <code>judgmentBodyElem</code> property in DSL way * * @param judgmentBodyElem new value * @return <code>JudgmentBody</code> instance */ public JudgmentBody setJudgmentBody(JudgmentBody judgmentBodyElem) { JudgmentBody result = getJudgmentBody(); // remove the child of the same type if exist if (result != null) { this.removeOverlayWidget(result); } this.addOverlayWidget(judgmentBodyElem); return judgmentBodyElem; } /** * Add <code>Conclusions</code> property in the list of properties * * @return The property as unmodifiable list */ public Conclusions getConclusions() { Conclusions result = null; for (OverlayWidget widget : getChildOverlayWidgets()) { if ("Conclusions".equalsIgnoreCase(widget.getType()) && "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05".equalsIgnoreCase(widget.getNamespaceURI())) { result = (Conclusions) widget; break; } } return result; } /** * Set <code>conclusionsElem</code> property in DSL way * * @param conclusionsElem new value * @return <code>Conclusions</code> instance */ public Conclusions setConclusions(Conclusions conclusionsElem) { Conclusions result = getConclusions(); // remove the child of the same type if exist if (result != null) { this.removeOverlayWidget(result); } this.addOverlayWidget(conclusionsElem); return conclusionsElem; } /** * Add <code>Attachments</code> property in the list of properties * * @return The property as unmodifiable list */ public Attachments getAttachments() { Attachments result = null; for (OverlayWidget widget : getChildOverlayWidgets()) { if ("Attachments".equalsIgnoreCase(widget.getType()) && "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05".equalsIgnoreCase(widget.getNamespaceURI())) { result = (Attachments) widget; break; } } return result; } /** * Set <code>attachmentsElem</code> property in DSL way * * @param attachmentsElem new value * @return <code>Attachments</code> instance */ public Attachments setAttachments(Attachments attachmentsElem) { Attachments result = getAttachments(); // remove the child of the same type if exist if (result != null) { this.removeOverlayWidget(result); } this.addOverlayWidget(attachmentsElem); return attachmentsElem; } /** * Add <code>Components</code> property in the list of properties * * @return The property as unmodifiable list */ public Components getComponents() { Components result = null; for (OverlayWidget widget : getChildOverlayWidgets()) { if ("Components".equalsIgnoreCase(widget.getType()) && "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05".equalsIgnoreCase(widget.getNamespaceURI())) { result = (Components) widget; break; } } return result; } /** * Set <code>componentsElem</code> property in DSL way * * @param componentsElem new value * @return <code>Components</code> instance */ public Components setComponents(Components componentsElem) { Components result = getComponents(); // remove the child of the same type if exist if (result != null) { this.removeOverlayWidget(result); } this.addOverlayWidget(componentsElem); return componentsElem; } //Override all attributes methods to be conformant with DSL approach /** * Returns the namespace URI of this amendable widget. * * @return The namesapce as String */ @Override public String getNamespaceURI() { return "http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD05"; } @Override public LinkedHashMap<String, String> getAttributes() { final LinkedHashMap<String, String> attrs = new LinkedHashMap<String, String>(); attrs.putAll(super.getAttributes()); attrs.put("contains", getContainsAttr() != null ? getContainsAttr().value() : null); attrs.put("name", getNameAttr() != null ? getNameAttr().getValue() : null); return attrs; } @Override public StructureIndicator getStructureIndicator() { return STRUCTURE_INDICATOR; } /** * DSL Style for html method */ @Override public JudgmentStructureComplexType html(String s) { super.html(s); return this; } }