org.opencrx.kernel.code1.cci2.CodeValueEntry Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.code1.cci2;
/**
* Class {@code CodeValueEntry}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:35.175987959Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface CodeValueEntry
extends org.opencrx.kernel.code1.cci2.AbstractEntry{
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code backColor}.
* @return The possibly null value for attribute {@code backColor}.
*/
public java.lang.String getBackColor(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code backColor}.
* @param backColor The possibly null new value for attribute {@code backColor}.
*/
public void setBackColor(
java.lang.String backColor
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code color}.
* @return The possibly null value for attribute {@code color}.
*/
public java.lang.String getColor(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code color}.
* @param color The possibly null new value for attribute {@code color}.
*/
public void setColor(
java.lang.String color
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code fontWeight}.
* @return The possibly null value for attribute {@code fontWeight}.
*/
public java.lang.String getFontWeight(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code fontWeight}.
* @param fontWeight The possibly null new value for attribute {@code fontWeight}.
*/
public void setFontWeight(
java.lang.String fontWeight
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code iconKey}.
* @return The possibly null value for attribute {@code iconKey}.
*/
public java.lang.String getIconKey(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code iconKey}.
* @param iconKey The possibly null new value for attribute {@code iconKey}.
*/
public void setIconKey(
java.lang.String iconKey
);
// ----------------------------------------------------------------------------
// Instance/AttributeGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the attribute {@code longText}.
* @return A list containing all elements for this attribute.
*/
public java.util.List getLongText(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSetList
// ----------------------------------------------------------------------------
/**
* Clears {@code longText} and adds the given value(s).
*
* This method is equivalent to
* list.clear();
* for(java.lang.String e : longText){
* list.add(e);
* }
*
* @param longText value(s) to be added to {@code longText}
*/
public void setLongText(
java.lang.String... longText
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code orderIndex}.
* @return The possibly null value for attribute {@code orderIndex}.
*/
public java.lang.Integer getOrderIndex(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code orderIndex}.
* @param orderIndex The possibly null new value for attribute {@code orderIndex}.
*/
public void setOrderIndex(
java.lang.Integer orderIndex
);
// ----------------------------------------------------------------------------
// Instance/AttributeGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the attribute {@code shortText}.
* @return A list containing all elements for this attribute.
*/
public java.util.List getShortText(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSetList
// ----------------------------------------------------------------------------
/**
* Clears {@code shortText} and adds the given value(s).
*
* This method is equivalent to
* list.clear();
* for(java.lang.String e : shortText){
* list.add(e);
* }
*
* @param shortText value(s) to be added to {@code shortText}
*/
public void setShortText(
java.lang.String... shortText
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}