org.opencrx.kernel.code1.cci2
Interface CodeValueEntry

All Superinterfaces:
AbstractEntry, BasicObject, ContextCapable, ExtentCapable, SecureObject, ViewCapable
All Known Subinterfaces:
CodeValueEntry
All Known Implementing Classes:
CodeValueEntry

public interface CodeValueEntry
extends AbstractEntry

Class CodeValueEntry


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.opencrx.kernel.code1.cci2.AbstractEntry
AbstractEntry.Identity
 
Method Summary
 String getBackColor()
          Retrieves the possibly null value for the optional attribute backColor.
 String getColor()
          Retrieves the possibly null value for the optional attribute color.
 String getFontWeight()
          Retrieves the possibly null value for the optional attribute fontWeight.
 String getIconKey()
          Retrieves the possibly null value for the optional attribute iconKey.
 List<String> getLongText()
          Retrieves a list containing all the elements for the attribute longText.
 List<String> getShortText()
          Retrieves a list containing all the elements for the attribute shortText.
 void setBackColor(String backColor)
          Sets a new value for the attribute backColor.
 void setColor(String color)
          Sets a new value for the attribute color.
 void setFontWeight(String fontWeight)
          Sets a new value for the attribute fontWeight.
 void setIconKey(String iconKey)
          Sets a new value for the attribute iconKey.
 void setLongText(String... longText)
          Clears longText and adds the given value(s).
 void setShortText(String... shortText)
          Clears shortText and adds the given value(s).
 
Methods inherited from interface org.opencrx.kernel.code1.cci2.AbstractEntry
getEntryValue, getValidFrom, getValidTo, setEntryValue, setValidFrom, setValidTo
 
Methods inherited from interface org.opencrx.kernel.base.cci2.SecureObject
addOwningGroup, checkPermissions, getAccessGrantedByParent, getAccessLevelBrowse, getAccessLevelDelete, getAccessLevelUpdate, getOwner, getOwningGroup, getOwningUser, removeAllOwningGroup, removeOwningGroup, setAccessLevel, setAccessLevelBrowse, setAccessLevelDelete, setAccessLevelUpdate, setOwningUser, setOwningUser
 
Methods inherited from interface org.openmdx.base.cci2.BasicObject
getCreatedAt, getCreatedBy, getModifiedAt, getModifiedBy
 
Methods inherited from interface org.openmdx.base.cci2.ContextCapable
getContext
 
Methods inherited from interface org.openmdx.base.cci2.ExtentCapable
getIdentity
 
Methods inherited from interface org.openmdx.compatibility.view1.cci2.ViewCapable
getView
 

Method Detail

getBackColor

String getBackColor()
Retrieves the possibly null value for the optional attribute backColor.

Returns:
The possibly null value for attribute backColor.

setBackColor

void setBackColor(String backColor)
Sets a new value for the attribute backColor.

Parameters:
backColor - The possibly null new value for attribute backColor.

getColor

String getColor()
Retrieves the possibly null value for the optional attribute color.

Returns:
The possibly null value for attribute color.

setColor

void setColor(String color)
Sets a new value for the attribute color.

Parameters:
color - The possibly null new value for attribute color.

getFontWeight

String getFontWeight()
Retrieves the possibly null value for the optional attribute fontWeight.

Returns:
The possibly null value for attribute fontWeight.

setFontWeight

void setFontWeight(String fontWeight)
Sets a new value for the attribute fontWeight.

Parameters:
fontWeight - The possibly null new value for attribute fontWeight.

getIconKey

String getIconKey()
Retrieves the possibly null value for the optional attribute iconKey.

Returns:
The possibly null value for attribute iconKey.

setIconKey

void setIconKey(String iconKey)
Sets a new value for the attribute iconKey.

Parameters:
iconKey - The possibly null new value for attribute iconKey.

getLongText

List<String> getLongText()
Retrieves a list containing all the elements for the attribute longText.

Returns:
A list containing all elements for this attribute.

setLongText

void setLongText(String... longText)
Clears longText and adds the given value(s).

This method is equivalent to

   list.clear();
   for(java.lang.String e : attributeName){
     list.add(e);
   }
 

Parameters:
longText - value(s) to be added to longText

getShortText

List<String> getShortText()
Retrieves a list containing all the elements for the attribute shortText.

Returns:
A list containing all elements for this attribute.

setShortText

void setShortText(String... shortText)
Clears shortText and adds the given value(s).

This method is equivalent to

   list.clear();
   for(java.lang.String e : attributeName){
     list.add(e);
   }
 

Parameters:
shortText - value(s) to be added to shortText


This software is published under the BSD license. Copyright © 2003-2008, CRIXP AG, Switzerland, All rights reserved. Use is subject to license terms.