/* * XML Type: CT_SphereCoords * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTSphereCoords * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.drawingml.x2006.main; /** * An XML CT_SphereCoords(@http://schemas.openxmlformats.org/drawingml/2006/main). * * This is a complex type. */ public interface CTSphereCoords extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTSphereCoords.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctspherecoords8226type"); /** * Gets the "lat" attribute */ int getLat(); /** * Gets (as xml) the "lat" attribute */ org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle xgetLat(); /** * Sets the "lat" attribute */ void setLat(int lat); /** * Sets (as xml) the "lat" attribute */ void xsetLat(org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle lat); /** * Gets the "lon" attribute */ int getLon(); /** * Gets (as xml) the "lon" attribute */ org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle xgetLon(); /** * Sets the "lon" attribute */ void setLon(int lon); /** * Sets (as xml) the "lon" attribute */ void xsetLon(org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle lon); /** * Gets the "rev" attribute */ int getRev(); /** * Gets (as xml) the "rev" attribute */ org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle xgetRev(); /** * Sets the "rev" attribute */ void setRev(int rev); /** * Sets (as xml) the "rev" attribute */ void xsetRev(org.openxmlformats.schemas.drawingml.x2006.main.STPositiveFixedAngle rev); /** * A factory class with static methods for creating instances * of this type. */ }