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

net.sf.mpxj.conceptdraw.schema.StyleProject Maven / Gradle / Ivy

Go to download

Library that provides facilities to allow project information to be manipulated in Java and .Net. Supports a range of data formats: Microsoft Project Exchange (MPX), Microsoft Project (MPP,MPT), Microsoft Project Data Interchange (MSPDI XML), Microsoft Project Database (MPD), Planner (XML), Primavera (PM XML, XER, and database), Asta Powerproject (PP, MDB), Asta Easyplan (PP), Phoenix Project Manager (PPX), FastTrack Schedule (FTS), and the Standard Data Exchange Format (SDEF).

There is a newer version: 13.8.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.07.12 at 04:42:45 PM BST
//

package net.sf.mpxj.conceptdraw.schema;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

/**
 * 

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">
 *       <sequence>
 *         <element name="RowHeight" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="GridRowStyle">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="FontName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="FontSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "rowHeight", "gridRowStyle" }) @XmlRootElement(name = "StyleProject") public class StyleProject { @XmlElement(name = "RowHeight", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter5.class) @XmlSchemaType(name = "int") protected Integer rowHeight; @XmlElement(name = "GridRowStyle", required = true) protected StyleProject.GridRowStyle gridRowStyle; /** * Gets the value of the rowHeight property. * * @return * possible object is * {@link String } * */ public Integer getRowHeight() { return rowHeight; } /** * Sets the value of the rowHeight property. * * @param value * allowed object is * {@link String } * */ public void setRowHeight(Integer value) { this.rowHeight = value; } /** * Gets the value of the gridRowStyle property. * * @return * possible object is * {@link StyleProject.GridRowStyle } * */ public StyleProject.GridRowStyle getGridRowStyle() { return gridRowStyle; } /** * Sets the value of the gridRowStyle property. * * @param value * allowed object is * {@link StyleProject.GridRowStyle } * */ public void setGridRowStyle(StyleProject.GridRowStyle value) { this.gridRowStyle = value; } /** *

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">
    *       <sequence>
    *         <element name="FontName" type="{http://www.w3.org/2001/XMLSchema}string"/>
    *         <element name="FontSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
    *       </sequence>
    *     </restriction>
    *   </complexContent>
    * </complexType>
    * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "fontName", "fontSize" }) public static class GridRowStyle { @XmlElement(name = "FontName", required = true) protected String fontName; @XmlElement(name = "FontSize", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter5.class) @XmlSchemaType(name = "int") protected Integer fontSize; /** * 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 String } * */ public Integer getFontSize() { return fontSize; } /** * Sets the value of the fontSize property. * * @param value * allowed object is * {@link String } * */ public void setFontSize(Integer value) { this.fontSize = value; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy