// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, // vJAXB 2.1.10 in JDK 6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.03.05 at 04:00:29 AM PST // package com.mindprod.autocorrect.openoffice; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for anonymous complex type. *

*

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

*

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="abbreviated-name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "block") public class Block { @XmlAttribute(name = "abbreviated-name", namespace = "http://openoffice.org/2001/block-list", required = true) private String abbreviatedName; @XmlAttribute(namespace = "http://openoffice.org/2001/block-list", required = true) private String name; /** * Gets the value of the abbreviatedName property. * * @return possible object is * {@link String } */ public String getAbbreviatedName() { return abbreviatedName; } /** * Sets the value of the abbreviatedName property. * * @param value allowed object is * {@link String } */ public void setAbbreviatedName( String value ) { this.abbreviatedName = value; } /** * Gets the value of the name property. * * @return possible object is * {@link String } */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value allowed object is * {@link String } */ public void setName( String value ) { this.name = value; } }