org.plasma.runtime.Binding Maven / Gradle / Ivy
//
// 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: 2020.02.10 at 02:01:29 PM MST
//
package org.plasma.runtime;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Superclass for binding customizations
*
* Java class for Binding complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Binding">
* <complexContent>
* <extension base="{http://www.plasma.org/runtime}Customization">
* <attribute name="logicalName" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="physicalName" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="localName" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Binding")
@XmlSeeAlso({
TypeBinding.class,
PropertyBinding.class
})
public abstract class Binding
extends Customization
{
@XmlAttribute(name = "logicalName")
protected String logicalName;
@XmlAttribute(name = "physicalName")
protected String physicalName;
@XmlAttribute(name = "localName")
protected String localName;
/**
* Gets the value of the logicalName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLogicalName() {
return logicalName;
}
/**
* Sets the value of the logicalName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLogicalName(String value) {
this.logicalName = value;
}
/**
* Gets the value of the physicalName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPhysicalName() {
return physicalName;
}
/**
* Sets the value of the physicalName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPhysicalName(String value) {
this.physicalName = value;
}
/**
* Gets the value of the localName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocalName() {
return localName;
}
/**
* Sets the value of the localName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocalName(String value) {
this.localName = value;
}
}