// // 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 04:12:24 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="bl"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="pageid" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="ns" type="{http://www.w3.org/2001/XMLSchema}int" /> * <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "bl" }) public class Backlinks { @XmlElement(required = true) protected Bl bl; /** * Ruft den Wert der bl-Eigenschaft ab. * * @return * possible object is * {@link Bl } * */ public Bl getBl() { return bl; } /** * Legt den Wert der bl-Eigenschaft fest. * * @param value * allowed object is * {@link Bl } * */ public void setBl(Bl value) { this.bl = value; } }