/******************************************************************************* * Copyright (c) 2011, 2016 Eurotech and/or its affiliates * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eurotech *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.10.26 at 02:11:54 PM CEST // package org.eclipse.kura.configuration.metatype; import java.math.BigInteger; /** * <p> * Java class for Ticon complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Ticon"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="resource" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="size" use="required" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * <anyAttribute/> * </restriction> * </complexContent> * </complexType> * </pre> */ public interface Icon { /** * Gets the value of the resource property. * * @return * possible object is * {@link String } * */ public String getResource(); /** * Gets the value of the size property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSize(); }