org.openmdx.ui1.cci2
Interface AssertableInspector

All Superinterfaces:
org.openmdx.base.cci2.BasicObject, org.openmdx.base.cci2.ContextCapable, org.openmdx.base.cci2.ExtentCapable, org.openmdx.compatibility.view1.cci2.ViewCapable
All Known Subinterfaces:
AssertableInspector
All Known Implementing Classes:
AssertableInspector

public interface AssertableInspector
extends org.openmdx.base.cci2.BasicObject

Class AssertableInspector


Nested Class Summary
static interface AssertableInspector.Identity
          Object 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 getForClass()
          Retrieves the value for the attribute forClass.
 String getIconKey()
          Retrieves the value for the attribute iconKey.
 List<String> getLabel()
          Retrieves a list containing all the elements for the attribute label.
 List<Integer> getOrder()
          Retrieves a list containing all the elements for the attribute order.
 List<String> getToolTip()
          Retrieves a list containing all the elements for the attribute toolTip.
 boolean isChangeable()
          Retrieves the value for the attribute changeable.
 boolean isFilterable()
          Retrieves the value for the attribute filterable.
 boolean isSortable()
          Retrieves the value for the attribute sortable.
 void setBackColor(String backColor)
          Sets a new value for the attribute backColor.
 void setChangeable(boolean changeable)
          Sets a new value for the attribute changeable.
 void setColor(String color)
          Sets a new value for the attribute color.
 void setFilterable(boolean filterable)
          Sets a new value for the attribute filterable.
 void setForClass(String forClass)
          Sets a new value for the attribute forClass.
 void setIconKey(String iconKey)
          Sets a new value for the attribute iconKey.
 void setLabel(String... label)
          Clears label and adds the given value(s).
 void setOrder(int... order)
          Clears order and adds the given value(s).
 void setSortable(boolean sortable)
          Sets a new value for the attribute sortable.
 void setToolTip(String... toolTip)
          Clears toolTip and adds the given value(s).
 
Methods inherited from interface org.openmdx.base.cci2.BasicObject
getCreatedAt, getCreatedBy, getModifiedAt, getModifiedBy
 
Methods inherited from interface org.openmdx.base.cci2.ExtentCapable
getIdentity
 
Methods inherited from interface org.openmdx.compatibility.view1.cci2.ViewCapable
getView, 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.

isChangeable

boolean isChangeable()
Retrieves the value for the attribute changeable.

Returns:
The non-null value for attribute changeable.

setChangeable

void setChangeable(boolean changeable)
Sets a new value for the attribute changeable.

Parameters:
changeable - The non-null new value for attribute changeable.

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.

isFilterable

boolean isFilterable()
Retrieves the value for the attribute filterable.

Returns:
The non-null value for attribute filterable.

setFilterable

void setFilterable(boolean filterable)
Sets a new value for the attribute filterable.

Parameters:
filterable - The non-null new value for attribute filterable.

getForClass

String getForClass()
Retrieves the value for the attribute forClass.

Returns:
The non-null value for attribute forClass.

setForClass

void setForClass(String forClass)
Sets a new value for the attribute forClass.

Parameters:
forClass - The non-null new value for attribute forClass.

getIconKey

String getIconKey()
Retrieves the value for the attribute iconKey.

Returns:
The non-null value for attribute iconKey.

setIconKey

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

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

getLabel

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

Returns:
A list containing all elements for this attribute.

setLabel

void setLabel(String... label)
Clears label and adds the given value(s).

This method is equivalent to

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

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

getOrder

List<Integer> getOrder()
Retrieves a list containing all the elements for the attribute order.

Returns:
A list containing all elements for this attribute.

setOrder

void setOrder(int... order)
Clears order and adds the given value(s).

This method is equivalent to

   list.clear();
   for(int e : attributeName){
     list.add(e);
   }
 

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

isSortable

boolean isSortable()
Retrieves the value for the attribute sortable.

Returns:
The non-null value for attribute sortable.

setSortable

void setSortable(boolean sortable)
Sets a new value for the attribute sortable.

Parameters:
sortable - The non-null new value for attribute sortable.

getToolTip

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

Returns:
A list containing all elements for this attribute.

setToolTip

void setToolTip(String... toolTip)
Clears toolTip and adds the given value(s).

This method is equivalent to

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

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


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