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

org.w3._1998.math.mathml.Mglyph Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.08.07 at 06:17:52 PM CEST 
//


package org.w3._1998.math.mathml;

import javax.xml.bind.annotation.*;
import java.math.BigInteger;


/**
 * 

Java class for mglyph.type complex type. * *

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

 * <complexType name="mglyph.type">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attGroup ref="{http://www.w3.org/1998/Math/MathML}mglyph.attlist"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "mglyph.type") @XmlRootElement(name = "mglyph") public class Mglyph { @XmlAttribute(name = "alt") protected String alt; @XmlAttribute(name = "fontfamily") protected String fontfamily; @XmlAttribute(name = "index") @XmlSchemaType(name = "positiveInteger") protected BigInteger index; /** * Gets the value of the alt property. * * @return * possible object is * {@link String } * */ public String getAlt() { return alt; } /** * Sets the value of the alt property. * * @param value * allowed object is * {@link String } * */ public void setAlt(String value) { this.alt = value; } /** * Gets the value of the fontfamily property. * * @return * possible object is * {@link String } * */ public String getFontfamily() { return fontfamily; } /** * Sets the value of the fontfamily property. * * @param value * allowed object is * {@link String } * */ public void setFontfamily(String value) { this.fontfamily = value; } /** * Gets the value of the index property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getIndex() { return index; } /** * Sets the value of the index property. * * @param value * allowed object is * {@link BigInteger } * */ public void setIndex(BigInteger value) { this.index = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy