// // 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.02.09 at 06:00:29 PM PST // package com.mindprod.htmlreflow.config; 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; import java.math.BigDecimal; /** *

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="tagname" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="beforetag" type="{}nlsType" default="inline" />
 *       <attribute name="tagindent" type="{}indentationType" default="0" />
 *       <attribute name="aftertag" type="{}nlsType" default="inline" />
 *       <attribute name="nestedindent" type="{}indentationType" default="0" />
 *       <attribute name="beforeslashtag" type="{}nlsType" default="inline" />
 *       <attribute name="afterslashtag" type="{}nlsType" default="inline" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType( XmlAccessType.FIELD ) @XmlType( name = "" ) @XmlRootElement( name = "tag" ) public class Tag { @XmlAttribute( required = true ) protected String tagname; @XmlAttribute protected NlsType beforetag; @XmlAttribute protected BigDecimal tagindent; @XmlAttribute protected NlsType aftertag; @XmlAttribute protected BigDecimal nestedindent; @XmlAttribute protected NlsType beforeslashtag; @XmlAttribute protected NlsType afterslashtag; /** * Gets the value of the afterslashtag property. * * @return possible object is * {@link NlsType } */ public NlsType getAfterslashtag() { if ( afterslashtag == null ) { return NlsType.INLINE; } else { return afterslashtag; } } /** * Sets the value of the afterslashtag property. * * @param value allowed object is * {@link NlsType } */ public void setAfterslashtag( NlsType value ) { this.afterslashtag = value; } /** * Gets the value of the aftertag property. * * @return possible object is * {@link NlsType } */ public NlsType getAftertag() { if ( aftertag == null ) { return NlsType.INLINE; } else { return aftertag; } } /** * Sets the value of the aftertag property. * * @param value allowed object is * {@link NlsType } */ public void setAftertag( NlsType value ) { this.aftertag = value; } /** * Gets the value of the beforeslashtag property. * * @return possible object is * {@link NlsType } */ public NlsType getBeforeslashtag() { if ( beforeslashtag == null ) { return NlsType.INLINE; } else { return beforeslashtag; } } /** * Sets the value of the beforeslashtag property. * * @param value allowed object is * {@link NlsType } */ public void setBeforeslashtag( NlsType value ) { this.beforeslashtag = value; } /** * Gets the value of the beforetag property. * * @return possible object is * {@link NlsType } */ public NlsType getBeforetag() { if ( beforetag == null ) { return NlsType.INLINE; } else { return beforetag; } } /** * Sets the value of the beforetag property. * * @param value allowed object is * {@link NlsType } */ public void setBeforetag( NlsType value ) { this.beforetag = value; } /** * Gets the value of the nestedindent property. * * @return possible object is * {@link BigDecimal } */ public BigDecimal getNestedindent() { if ( nestedindent == null ) { return new BigDecimal( "0" ); } else { return nestedindent; } } /** * Sets the value of the nestedindent property. * * @param value allowed object is * {@link BigDecimal } */ public void setNestedindent( BigDecimal value ) { this.nestedindent = value; } /** * Gets the value of the tagindent property. * * @return possible object is * {@link BigDecimal } */ public BigDecimal getTagindent() { if ( tagindent == null ) { return new BigDecimal( "0" ); } else { return tagindent; } } /** * Sets the value of the tagindent property. * * @param value allowed object is * {@link BigDecimal } */ public void setTagindent( BigDecimal value ) { this.tagindent = value; } /** * Gets the value of the tagname property. * * @return possible object is * {@link String } */ public String getTagname() { return tagname; } /** * Sets the value of the tagname property. * * @param value allowed object is * {@link String } */ public void setTagname( String value ) { this.tagname = value; } }