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

net.anwiba.tools.simple.graphml.generated.Key Maven / Gradle / Ivy

There is a newer version: 1.2.50
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.07.16 at 10:13:06 PM CEST 
//


package net.anwiba.tools.simple.graphml.generated;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Java class for KeyType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="KeyType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="for" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="attr.name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="attr.type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="yfiles.type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KeyType", propOrder = { "content" }) public class Key { @XmlValue protected String content; @XmlAttribute(name = "id") protected String id; @XmlAttribute(name = "for") protected String _for; @XmlAttribute(name = "attr.name") protected String attrName; @XmlAttribute(name = "attr.type") protected String attrType; @XmlAttribute(name = "yfiles.type") protected String yfilesType; /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the for property. * * @return * possible object is * {@link String } * */ public String getFor() { return _for; } /** * Sets the value of the for property. * * @param value * allowed object is * {@link String } * */ public void setFor(String value) { this._for = value; } /** * Gets the value of the attrName property. * * @return * possible object is * {@link String } * */ public String getAttrName() { return attrName; } /** * Sets the value of the attrName property. * * @param value * allowed object is * {@link String } * */ public void setAttrName(String value) { this.attrName = value; } /** * Gets the value of the attrType property. * * @return * possible object is * {@link String } * */ public String getAttrType() { return attrType; } /** * Sets the value of the attrType property. * * @param value * allowed object is * {@link String } * */ public void setAttrType(String value) { this.attrType = value; } /** * Gets the value of the yfilesType property. * * @return * possible object is * {@link String } * */ public String getYfilesType() { return yfilesType; } /** * Sets the value of the yfilesType property. * * @param value * allowed object is * {@link String } * */ public void setYfilesType(String value) { this.yfilesType = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy