All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.docx4j.com.microsoft.schemas.office.drawing.x2014.chartex.CTSubtotals Maven / Gradle / Ivy

There is a newer version: 11.5.0
Show newest version

package org.docx4j.com.microsoft.schemas.office.drawing.x2014.chartex;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for CT_Subtotals complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CT_Subtotals">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="idx" type="{http://schemas.microsoft.com/office/drawing/2014/chartex}CT_SubtotalIndex" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CT_Subtotals", propOrder = { "idx" }) public class CTSubtotals { protected List idx; /** * Gets the value of the idx property. * *

* 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 Jakarta XML Binding object. * This is why there is not a set method for the idx property. * *

* For example, to add a new item, do as follows: *

     *    getIdx().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CTSubtotalIndex } * * */ public List getIdx() { if (idx == null) { idx = new ArrayList(); } return this.idx; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy