/* * XML Type: CT_SupplementalFont * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTSupplementalFont * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.drawingml.x2006.main; /** * An XML CT_SupplementalFont(@http://schemas.openxmlformats.org/drawingml/2006/main). * * This is a complex type. */ public interface CTSupplementalFont extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CTSupplementalFont.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("ctsupplementalfonta06etype"); /** * Gets the "script" attribute */ java.lang.String getScript(); /** * Gets (as xml) the "script" attribute */ org.apache.xmlbeans.XmlString xgetScript(); /** * Sets the "script" attribute */ void setScript(java.lang.String script); /** * Sets (as xml) the "script" attribute */ void xsetScript(org.apache.xmlbeans.XmlString script); /** * Gets the "typeface" attribute */ java.lang.String getTypeface(); /** * Gets (as xml) the "typeface" attribute */ org.openxmlformats.schemas.drawingml.x2006.main.STTextTypeface xgetTypeface(); /** * Sets the "typeface" attribute */ void setTypeface(java.lang.String typeface); /** * Sets (as xml) the "typeface" attribute */ void xsetTypeface(org.openxmlformats.schemas.drawingml.x2006.main.STTextTypeface typeface); /** * A factory class with static methods for creating instances * of this type. */ }