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

net.sf.dynamicreports.report.defaults.xml.XmlFont 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 Font complex type. * *

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

 * <complexType name="Font">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="fontName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="fontSize" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="pdfFontName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="pdfEncoding" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="pdfEmbedded" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Font") public class XmlFont { @XmlAttribute(name = "fontName") protected String fontName; @XmlAttribute(name = "fontSize") protected Integer fontSize; @XmlAttribute(name = "pdfFontName") protected String pdfFontName; @XmlAttribute(name = "pdfEncoding") protected String pdfEncoding; @XmlAttribute(name = "pdfEmbedded") protected Boolean pdfEmbedded; /** * Gets the value of the fontName property. * * @return * possible object is * {@link String } * */ public String getFontName() { return fontName; } /** * Sets the value of the fontName property. * * @param value * allowed object is * {@link String } * */ public void setFontName(String value) { this.fontName = value; } /** * Gets the value of the fontSize property. * * @return * possible object is * {@link Integer } * */ public Integer getFontSize() { return fontSize; } /** * Sets the value of the fontSize property. * * @param value * allowed object is * {@link Integer } * */ public void setFontSize(Integer value) { this.fontSize = value; } /** * Gets the value of the pdfFontName property. * * @return * possible object is * {@link String } * */ public String getPdfFontName() { return pdfFontName; } /** * Sets the value of the pdfFontName property. * * @param value * allowed object is * {@link String } * */ public void setPdfFontName(String value) { this.pdfFontName = value; } /** * Gets the value of the pdfEncoding property. * * @return * possible object is * {@link String } * */ public String getPdfEncoding() { return pdfEncoding; } /** * Sets the value of the pdfEncoding property. * * @param value * allowed object is * {@link String } * */ public void setPdfEncoding(String value) { this.pdfEncoding = value; } /** * Gets the value of the pdfEmbedded property. * * @return * possible object is * {@link Boolean } * */ public Boolean isPdfEmbedded() { return pdfEmbedded; } /** * Sets the value of the pdfEmbedded property. * * @param value * allowed object is * {@link Boolean } * */ public void setPdfEmbedded(Boolean value) { this.pdfEmbedded = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy