com.microsoft.schemas.office.drawing.x2014.chartex.CTDataId Maven / Gradle / Ivy
/*
* XML Type: CT_DataId
* Namespace: http://schemas.microsoft.com/office/drawing/2014/chartex
* Java type: com.microsoft.schemas.office.drawing.x2014.chartex.CTDataId
*
* Automatically generated - do not modify.
*/
package com.microsoft.schemas.office.drawing.x2014.chartex;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* An XML CT_DataId(@http://schemas.microsoft.com/office/drawing/2014/chartex).
*
* This is a complex type.
*/
public interface CTDataId extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctdataid7701type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "val" attribute
*/
long getVal();
/**
* Gets (as xml) the "val" attribute
*/
com.microsoft.schemas.office.drawing.x2014.chartex.STDataId xgetVal();
/**
* Sets the "val" attribute
*/
void setVal(long val);
/**
* Sets (as xml) the "val" attribute
*/
void xsetVal(com.microsoft.schemas.office.drawing.x2014.chartex.STDataId val);
}