// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2015.08.26 um 02:30:40 PM CEST // package com.bitplan.mediawiki.japi.api; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java-Klasse für anonymous complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ii"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * <attribute name="user" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="userid" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="width" type="{http://www.w3.org/2001/XMLSchema}short" /> * <attribute name="height" type="{http://www.w3.org/2001/XMLSchema}short" /> * <attribute name="parsedcomment" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="comment" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="html" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="canonicaltitle" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="url" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="descriptionurl" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="sha1" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="mime" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="mediatype" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="bitdepth" type="{http://www.w3.org/2001/XMLSchema}integer" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ii" }) public class Imageinfo { @XmlElement(required = true) protected Ii ii; /** * Ruft den Wert der ii-Eigenschaft ab. * * @return * possible object is * {@link Ii } * */ public Ii getIi() { return ii; } /** * Legt den Wert der ii-Eigenschaft fest. * * @param value * allowed object is * {@link Ii } * */ public void setIi(Ii value) { this.ii = value; } }