// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2016.01.09 at 03:50:42 PM CET // 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 class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="recentchanges"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="rc" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="ns" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="pageid" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="revid" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="old_revid" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="rcid" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="user" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="oldlen" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="newlen" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "recentchanges" }) public class Query { @XmlElement(required = true) protected Recentchanges recentchanges; /** * Gets the value of the recentchanges property. * * @return * possible object is * {@link Recentchanges } * */ public Recentchanges getRecentchanges() { return recentchanges; } /** * Sets the value of the recentchanges property. * * @param value * allowed object is * {@link Recentchanges } * */ public void setRecentchanges(Recentchanges value) { this.recentchanges = value; } }