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

net.sf.dynamicreports.report.defaults.xml.XmlDataType Maven / Gradle / Ivy

Go to download

DynamicReports is an open source Java reporting library based on JasperReports. It allows to create dynamic report designs and it doesn't need a visual report designer. You can very quickly create reports and produce documents that can be displayed, printed or exported into many popular formats such as PDF, Excel, Word and others.

There is a newer version: 6.20.1
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.01.27 at 10:05:07 AM CET 
//


package net.sf.dynamicreports.report.defaults.xml;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DataType complex type. * *

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

 * <complexType name="DataType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="pattern" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="horizontalAlignment" type="{}HorizontalAlignment" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DataType") public class XmlDataType { @XmlAttribute(name = "pattern") protected String pattern; @XmlAttribute(name = "horizontalAlignment") protected XmlHorizontalAlignment horizontalAlignment; /** * Gets the value of the pattern property. * * @return * possible object is * {@link String } * */ public String getPattern() { return pattern; } /** * Sets the value of the pattern property. * * @param value * allowed object is * {@link String } * */ public void setPattern(String value) { this.pattern = value; } /** * Gets the value of the horizontalAlignment property. * * @return * possible object is * {@link XmlHorizontalAlignment } * */ public XmlHorizontalAlignment getHorizontalAlignment() { return horizontalAlignment; } /** * Sets the value of the horizontalAlignment property. * * @param value * allowed object is * {@link XmlHorizontalAlignment } * */ public void setHorizontalAlignment(XmlHorizontalAlignment value) { this.horizontalAlignment = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy