/** * 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.akomantoso20; import com.google.gwt.dom.client.Element; import com.google.gwt.user.client.DOM; 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 judgementStructure specifies the overall content model of the document types that<br/> describe judgements * This file is generated. Rather than changing this file, correct the template called <tt>overlayClass.ftl</tt>. */ public class JudgementStructureComplexType 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 JudgementBody()) , new StructureIndicator.DefaultElement(0, 1, new Conclusions()) , new StructureIndicator.DefaultElement(0, 1, new Attachments()) ) ); /** * 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", "judgementStructureComplexType"); span.setAttribute("data-ns", "http://www.akomantoso.org/2.0"); span.setClassName("widget judgementStructureComplexType"); return span; } // CONSTRUCTORS ------------------ /** * Create a <code>JudgementStructureComplexType</code> object with the given DOM element */ public JudgementStructureComplexType(Element element) { super(element); } // FIELDS ------------------ private VersionTypeSimpleType containsAttr; /** * 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>JudgementStructureComplexType</code> instance */ public JudgementStructureComplexType containsAttr(final VersionTypeSimpleType containsAttr) { setContainsAttr(containsAttr); 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://www.akomantoso.org/2.0".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://www.akomantoso.org/2.0".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://www.akomantoso.org/2.0".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>JudgementBody</code> property in the list of properties * * @return The property as unmodifiable list */ public JudgementBody getJudgementBody() { JudgementBody result = null; for (OverlayWidget widget : getChildOverlayWidgets()) { if ("JudgementBody".equalsIgnoreCase(widget.getType()) && "http://www.akomantoso.org/2.0".equalsIgnoreCase(widget.getNamespaceURI())) { result = (JudgementBody) widget; break; } } return result; } /** * Set <code>judgementBodyElem</code> property in DSL way * * @param judgementBodyElem new value * @return <code>JudgementBody</code> instance */ public JudgementBody setJudgementBody(JudgementBody judgementBodyElem) { JudgementBody result = getJudgementBody(); // remove the child of the same type if exist if (result != null) { this.removeOverlayWidget(result); } this.addOverlayWidget(judgementBodyElem); return judgementBodyElem; } /** * 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://www.akomantoso.org/2.0".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://www.akomantoso.org/2.0".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; } //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://www.akomantoso.org/2.0"; } @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); return attrs; } @Override public StructureIndicator getStructureIndicator() { return STRUCTURE_INDICATOR; } /** * DSL Style for html method */ @Override public JudgementStructureComplexType html(String s) { super.html(s); return this; } }