org.plasma.metamodel.SemanticConstraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plasma-metamodel Show documentation
Show all versions of plasma-metamodel Show documentation
The Plasma Metamodel Module
//
// 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.06.19 at 08:11:07 PM MST
//
package org.plasma.metamodel;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for SemanticConstraint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SemanticConstraint">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="conceptName" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="conceptDomain" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="conceptId" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SemanticConstraint")
@XmlRootElement(name = "SemanticConstraint")
public class SemanticConstraint {
@XmlAttribute(name = "conceptName")
protected String conceptName;
@XmlAttribute(name = "conceptDomain")
protected String conceptDomain;
@XmlAttribute(name = "conceptId")
protected String conceptId;
/**
* Gets the value of the conceptName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConceptName() {
return conceptName;
}
/**
* Sets the value of the conceptName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConceptName(String value) {
this.conceptName = value;
}
/**
* Gets the value of the conceptDomain property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConceptDomain() {
return conceptDomain;
}
/**
* Sets the value of the conceptDomain property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConceptDomain(String value) {
this.conceptDomain = value;
}
/**
* Gets the value of the conceptId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConceptId() {
return conceptId;
}
/**
* Sets the value of the conceptId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConceptId(String value) {
this.conceptId = value;
}
}