org.omg.model1.cci2.Constant Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Mon Mar 09 17:04:35 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.omg.model1.cci2;
/**
* Class Constant
*
* This Class provides a mechanism for defining constant values of simple data types, in the support of model development.
*/
public interface Constant
extends org.omg.model1.cci2.TypedElement{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute constValue
.
*
* This Attribute gives the value of the constant.
* @return The non-null value for attribute constValue
.
*/
public java.lang.String getConstValue(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute constValue
.
*
* This Attribute gives the value of the constant.
* @param constValue The non-null new value for attribute constValue
.
*/
public void setConstValue(
java.lang.String constValue
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}