org.openmdx.ui1.jmi1
Interface AssertableInspector

All Superinterfaces:
AssertableInspector, org.openmdx.base.cci2.BasicObject, org.openmdx.base.cci2.ContextCapable, org.openmdx.base.cci2.ExtentCapable, javax.jmi.reflect.RefBaseObject, javax.jmi.reflect.RefFeatured, javax.jmi.reflect.RefObject, org.openmdx.base.accessor.jmi.cci.RefObject_1_0, org.openmdx.compatibility.view1.cci2.ViewCapable

public interface AssertableInspector
extends AssertableInspector, org.openmdx.base.jmi1.BasicObject

Class AssertableInspector


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.openmdx.ui1.cci2.AssertableInspector
AssertableInspector.Identity
 
Method Summary
 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.
 void setLabel(List<String> label)
          Clears label and adds the members of the given List.
 void setOrder(List<Integer> order)
          Clears order and adds the members of the given List.
 void setToolTip(List<String> toolTip)
          Clears toolTip and adds the members of the given List.
 
Methods inherited from interface org.openmdx.ui1.cci2.AssertableInspector
getBackColor, getColor, getForClass, getIconKey, isChangeable, isFilterable, isSortable, setBackColor, setChangeable, setColor, setFilterable, setForClass, setIconKey, setLabel, setOrder, setSortable, setToolTip
 
Methods inherited from interface org.openmdx.base.jmi1.BasicObject
getCreatedBy, getModifiedBy
 
Methods inherited from interface org.openmdx.base.cci2.BasicObject
getCreatedAt, getModifiedAt
 
Methods inherited from interface org.openmdx.base.cci2.ExtentCapable
getIdentity
 
Methods inherited from interface org.openmdx.compatibility.view1.jmi1.ViewCapable
getView, getView, getView
 
Methods inherited from interface org.openmdx.compatibility.view1.cci2.ViewCapable
getView
 
Methods inherited from interface org.openmdx.base.accessor.jmi.cci.RefObject_1_0
refAddEventListener, refAddToUnitOfWork, refAddValue, refContext, refDefaultFetchGroup, refDelegate, refFlush, refGetEventListeners, refGetPath, refGetValue, refGetValue, refInitialize, refInitialize, refIsDeleted, refIsDirty, refIsNew, refIsPersistent, refIsWriteProtected, refRefresh, refRefreshAsynchronously, refRemoveEventListener, refRemoveFromUnitOfWork, refRemoveValue, refRemoveValue, refSetValue, refWriteProtect
 
Methods inherited from interface javax.jmi.reflect.RefObject
refClass, refDelete, refImmediateComposite, refIsInstanceOf, refOutermostComposite
 
Methods inherited from interface javax.jmi.reflect.RefFeatured
refGetValue, refGetValue, refInvokeOperation, refInvokeOperation, refSetValue, refSetValue
 
Methods inherited from interface javax.jmi.reflect.RefBaseObject
equals, hashCode, refImmediatePackage, refMetaObject, refMofId, refOutermostPackage, refVerifyConstraints
 

Method Detail

getLabel

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

Specified by:
getLabel in interface AssertableInspector
Returns:
A list containing all elements for this attribute.

setLabel

void setLabel(List<String> label)
Clears label and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(label);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
label - collection to be copied.

getOrder

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

Specified by:
getOrder in interface AssertableInspector
Returns:
A list containing all elements for this attribute.

setOrder

void setOrder(List<Integer> order)
Clears order and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(order);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
order - collection to be copied.

getToolTip

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

Specified by:
getToolTip in interface AssertableInspector
Returns:
A list containing all elements for this attribute.

setToolTip

void setToolTip(List<String> toolTip)
Clears toolTip and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(toolTip);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
toolTip - collection to be copied.


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