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

com.bitplan.mediawiki.japi.api.Imageinfo Maven / Gradle / Ivy

Go to download

Java library to call Mediawiki API described at http://www.mediawiki.org/wiki/API:Main_page

There is a newer version: 0.2.3
Show newest version
/**
 *
 * This file is part of the https://github.com/WolfgangFahl/Mediawiki-Japi open source project
 *
 * Copyright 2015-2019 BITPlan GmbH https://github.com/BITPlan
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 *
 *  You may obtain a copy of the License at
 *
 *  http:www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert 
// Siehe http://java.sun.com/xml/jaxb 
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. 
// Generiert: 2015.06.13 um 08:01:41 AM 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;


/**
 * 

Java-Klasse für anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <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>
 * 
* * */ @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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy