/* * Copyright 2010-2013, Plutext Pty Ltd. * * This file is part of xlsx4j, a component of docx4j. docx4j is licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package org.xlsx4j.sml; import java.util.ArrayList; import java.util.List; import javax.xml.bind.Unmarshaller; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.XmlType; import org.jvnet.jaxb2_commons.ppp.Child; /** * <p>Java class for CT_DataBar complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CT_DataBar"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="cfvo" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_Cfvo" maxOccurs="2" minOccurs="2"/> * <element name="color" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_Color"/> * </sequence> * <attribute name="minLength" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="10" /> * <attribute name="maxLength" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="90" /> * <attribute name="showValue" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CT_DataBar", propOrder = { "cfvo", "color" }) public class CTDataBar implements Child { @XmlElement(required = true) protected List<CTCfvo> cfvo; @XmlElement(required = true) protected CTColor color; @XmlAttribute(name = "minLength") @XmlSchemaType(name = "unsignedInt") protected Long minLength; @XmlAttribute(name = "maxLength") @XmlSchemaType(name = "unsignedInt") protected Long maxLength; @XmlAttribute(name = "showValue") protected Boolean showValue; @XmlTransient private Object parent; /** * Gets the value of the cfvo property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the cfvo property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCfvo().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CTCfvo } * * */ public List<CTCfvo> getCfvo() { if (cfvo == null) { cfvo = new ArrayList<CTCfvo>(); } return this.cfvo; } /** * Gets the value of the color property. * * @return * possible object is * {@link CTColor } * */ public CTColor getColor() { return color; } /** * Sets the value of the color property. * * @param value * allowed object is * {@link CTColor } * */ public void setColor(CTColor value) { this.color = value; } /** * Gets the value of the minLength property. * * @return * possible object is * {@link Long } * */ public long getMinLength() { if (minLength == null) { return 10L; } else { return minLength; } } /** * Sets the value of the minLength property. * * @param value * allowed object is * {@link Long } * */ public void setMinLength(Long value) { this.minLength = value; } /** * Gets the value of the maxLength property. * * @return * possible object is * {@link Long } * */ public long getMaxLength() { if (maxLength == null) { return 90L; } else { return maxLength; } } /** * Sets the value of the maxLength property. * * @param value * allowed object is * {@link Long } * */ public void setMaxLength(Long value) { this.maxLength = value; } /** * Gets the value of the showValue property. * * @return * possible object is * {@link Boolean } * */ public boolean isShowValue() { if (showValue == null) { return true; } else { return showValue; } } /** * Sets the value of the showValue property. * * @param value * allowed object is * {@link Boolean } * */ public void setShowValue(Boolean value) { this.showValue = value; } /** * Gets the parent object in the object tree representing the unmarshalled xml document. * * @return * The parent object. */ public Object getParent() { return this.parent; } public void setParent(Object parent) { this.parent = parent; } /** * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. * * @param parent * The parent object in the object tree. * @param unmarshaller * The unmarshaller that generated the instance. */ public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { setParent(parent); } }