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

net.anwiba.tools.icons.configuration.generated.IconSizes Maven / Gradle / Ivy

There is a newer version: 1.2.50
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: 2018.09.02 at 10:45:53 PM CEST 
//


package net.anwiba.tools.icons.configuration.generated;

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


/**
 * 

Java class for IconSizesType complex type. * *

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

 * <complexType name="IconSizesType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="small" type="{}IconSizeType"/>
 *         <element name="medium" type="{}IconSizeType"/>
 *         <element name="large" type="{}IconSizeType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IconSizesType", propOrder = { "small", "medium", "large" }) public class IconSizes { @XmlElement(required = true) protected IconSize small; @XmlElement(required = true) protected IconSize medium; @XmlElement(required = true) protected IconSize large; /** * Gets the value of the small property. * * @return * possible object is * {@link IconSize } * */ public IconSize getSmall() { return small; } /** * Sets the value of the small property. * * @param value * allowed object is * {@link IconSize } * */ public void setSmall(IconSize value) { this.small = value; } /** * Gets the value of the medium property. * * @return * possible object is * {@link IconSize } * */ public IconSize getMedium() { return medium; } /** * Sets the value of the medium property. * * @param value * allowed object is * {@link IconSize } * */ public void setMedium(IconSize value) { this.medium = value; } /** * Gets the value of the large property. * * @return * possible object is * {@link IconSize } * */ public IconSize getLarge() { return large; } /** * Sets the value of the large property. * * @param value * allowed object is * {@link IconSize } * */ public void setLarge(IconSize value) { this.large = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy