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

org.plasma.metamodel.SemanticConstraint Maven / Gradle / Ivy

There is a newer version: 2.2.1
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.09.01 at 08:32:59 AM 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy