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

org.jasig.resource.aggr.om.BasicInclude Maven / Gradle / Ivy

The newest version!
//
// 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.09.24 at 12:43:26 PM CDT 
//


package org.jasig.resource.aggr.om;

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


/**
 * 

Java class for basicInclude complex type. * *

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

 * <complexType name="basicInclude">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="compressed" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="conditional" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="included" type="{http://www.jasig.org/uportal/web/skin}included" default="both" />
 *       <attribute name="import" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "basicInclude", propOrder = { "value" }) @XmlSeeAlso({ Css.class, Js.class }) public class BasicInclude { @XmlValue protected String value; @XmlAttribute protected Boolean compressed; @XmlAttribute protected String conditional; @XmlAttribute protected Included included; @XmlAttribute(name = "import") protected Boolean _import; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the compressed property. * * @return * possible object is * {@link Boolean } * */ public boolean isCompressed() { if (compressed == null) { return false; } return compressed; } /** * Sets the value of the compressed property. * * @param value * allowed object is * {@link Boolean } * */ public void setCompressed(Boolean value) { this.compressed = value; } /** * Gets the value of the conditional property. * * @return * possible object is * {@link String } * */ public String getConditional() { return conditional; } /** * Sets the value of the conditional property. * * @param value * allowed object is * {@link String } * */ public void setConditional(String value) { this.conditional = value; } /** * Gets the value of the included property. * * @return * possible object is * {@link Included } * */ public Included getIncluded() { if (included == null) { return Included.BOTH; } return included; } /** * Sets the value of the included property. * * @param value * allowed object is * {@link Included } * */ public void setIncluded(Included value) { this.included = value; } /** * Gets the value of the import property. * * @return * possible object is * {@link Boolean } * */ public boolean isImport() { if (_import == null) { return false; } return _import; } /** * Sets the value of the import property. * * @param value * allowed object is * {@link Boolean } * */ public void setImport(Boolean value) { this._import = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy