org.openxma.dsl.dom.model.InClass Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'In Class'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.InClass#getName Name}
* - {@link org.openxma.dsl.dom.model.InClass#getClass_ Class}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getInClass()
* @model
* @generated
*/
public interface InClass extends FromRange {
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.openxma.dsl.dom.DomPackage#getInClass_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.InClass#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Class' attribute.
*
*
* If the meaning of the 'Class' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Class' attribute.
* @see #setClass(String)
* @see org.openxma.dsl.dom.DomPackage#getInClass_Class()
* @model
* @generated
*/
String getClass_();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.InClass#getClass_ Class}' attribute.
*
*
* @param value the new value of the 'Class' attribute.
* @see #getClass_()
* @generated
*/
void setClass(String value);
} // InClass