All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencrx.kernel.code1.cci2.CodeValueEntry Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Thu Mar 26 09:33:31 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.opencrx.kernel.code1.cci2;

/**
 * Class CodeValueEntry
 */
public interface CodeValueEntry
  extends org.opencrx.kernel.code1.cci2.AbstractEntry{

// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
  /**
   * Retrieves the possibly null value for the optional attribute backColor.
   * @return The possibly null value for attribute backColor.
   */
  public java.lang.String getBackColor(
  );

// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------

  /**
   * Sets a new value for the attribute backColor.
   * @param backColor The possibly null new value for attribute backColor.
   */
  public void setBackColor(
    java.lang.String backColor
  );

// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
  /**
   * Retrieves the possibly null value for the optional attribute color.
   * @return The possibly null value for attribute color.
   */
  public java.lang.String getColor(
  );

// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------

  /**
   * Sets a new value for the attribute color.
   * @param color The possibly null new value for attribute color.
   */
  public void setColor(
    java.lang.String color
  );

// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
  /**
   * Retrieves the possibly null value for the optional attribute fontWeight.
   * @return The possibly null value for attribute fontWeight.
   */
  public java.lang.String getFontWeight(
  );

// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------

  /**
   * Sets a new value for the attribute fontWeight.
   * @param fontWeight The possibly null new value for attribute fontWeight.
   */
  public void setFontWeight(
    java.lang.String fontWeight
  );

// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
  /**
   * Retrieves the possibly null value for the optional attribute iconKey.
   * @return The possibly null value for attribute iconKey.
   */
  public java.lang.String getIconKey(
  );

// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------

  /**
   * Sets a new value for the attribute iconKey.
   * @param iconKey The possibly null new value for attribute iconKey.
   */
  public void setIconKey(
    java.lang.String iconKey
  );

// ----------------------------------------------------------------------------
// Instance/AttributeGetList
// ----------------------------------------------------------------------------
  /**
   * Retrieves a list containing all the elements for the attribute longText.
   * @return A list containing all elements for this attribute.
   */
  public java.util.List getLongText(
  );

// ----------------------------------------------------------------------------
// Instance/AttributeSetList
// ----------------------------------------------------------------------------
  /**
   * Clears 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 longText */ public void setLongText( java.lang.String... longText ); // ---------------------------------------------------------------------------- // Instance/AttributeGet0_1 // ---------------------------------------------------------------------------- /** * Retrieves the possibly null value for the optional attribute orderIndex. * @return The possibly null value for attribute orderIndex. */ public java.lang.Integer getOrderIndex( ); // ---------------------------------------------------------------------------- // Instance/AttributeSet0_1 // ---------------------------------------------------------------------------- /** * Sets a new value for the attribute orderIndex. * @param orderIndex The possibly null new value for attribute orderIndex. */ public void setOrderIndex( java.lang.Integer orderIndex ); // ---------------------------------------------------------------------------- // Instance/AttributeGetList // ---------------------------------------------------------------------------- /** * Retrieves a list containing all the elements for the attribute shortText. * @return A list containing all elements for this attribute. */ public java.util.List getShortText( ); // ---------------------------------------------------------------------------- // Instance/AttributeSetList // ---------------------------------------------------------------------------- /** * Clears 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 shortText */ public void setShortText( java.lang.String... shortText ); // ---------------------------------------------------------------------------- // Instance/End // ---------------------------------------------------------------------------- }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy