org.opencrx.kernel.model1.cci2.Constant Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.cci2;
/**
* Class {@code Constant}
*
* This Class provides a mechanism for defining constant values of simple data types, in the support of model development.
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:35.394568531Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface Constant
extends org.opencrx.kernel.model1.cci2.TypedElement{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code constValue}.
*
* This Attribute gives the value of the constant.
* @return The non-null value for attribute {@code constValue}.
*/
public java.lang.String getConstValue(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code constValue}.
*
* This Attribute gives the value of the constant.
* @param constValue The non-{@code null} new value for attribute {@code constValue}.
*/
public void setConstValue(
java.lang.String constValue
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}