org.openmdx.ui1.jmi1
Interface AbstractElementDefinition

All Superinterfaces:
AbstractElementDefinition, javax.jmi.reflect.RefBaseObject, javax.jmi.reflect.RefFeatured, javax.jmi.reflect.RefObject, org.openmdx.base.accessor.jmi.cci.RefObject_1_0
All Known Subinterfaces:
AdditionalElementDefinition, AlternateElementDefinition, ElementDefinition

public interface AbstractElementDefinition
extends AbstractElementDefinition, org.openmdx.base.accessor.jmi.cci.RefObject_1_0

Abstract class AbstractElementDefinition


Method Summary
 List<String> getDisplayValueExpr()
          Retrieves a list containing all the elements for the attribute displayValueExpr.
 List<String> getEventHandler()
          Retrieves a list containing all the elements for the attribute eventHandler.
 List<String> getLabel()
          Retrieves a list containing all the elements for the attribute label.
 List<String> getMemberDefaultValue()
          Retrieves a list containing all the elements for the attribute memberDefaultValue.
 List<String> getMemberElementName()
          Retrieves a list containing all the elements for the attribute memberElementName.
 List<String> getMemberMimeType()
          Retrieves a list containing all the elements for the attribute memberMimeType.
 List<Integer> getOrder()
          Retrieves a list containing all the elements for the attribute order.
 List<Integer> getOrderFieldGroup()
          Retrieves a list containing all the elements for the attribute orderFieldGroup.
 List<Integer> getOrderObjectContainer()
          Retrieves a list containing all the elements for the attribute orderObjectContainer.
 List<String> getShortLabel()
          Retrieves a list containing all the elements for the attribute shortLabel.
 List<String> getToolTip()
          Retrieves a list containing all the elements for the attribute toolTip.
 void setDisplayValueExpr(List<String> displayValueExpr)
          Clears displayValueExpr and adds the members of the given List.
 void setEventHandler(List<String> eventHandler)
          Clears eventHandler and adds the members of the given List.
 void setLabel(List<String> label)
          Clears label and adds the members of the given List.
 void setMemberDefaultValue(List<String> memberDefaultValue)
          Clears memberDefaultValue and adds the members of the given List.
 void setMemberElementName(List<String> memberElementName)
          Clears memberElementName and adds the members of the given List.
 void setMemberMimeType(List<String> memberMimeType)
          Clears memberMimeType and adds the members of the given List.
 void setOrder(List<Integer> order)
          Clears order and adds the members of the given List.
 void setOrderFieldGroup(List<Integer> orderFieldGroup)
          Clears orderFieldGroup and adds the members of the given List.
 void setOrderObjectContainer(List<Integer> orderObjectContainer)
          Clears orderObjectContainer and adds the members of the given List.
 void setShortLabel(List<String> shortLabel)
          Clears shortLabel 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.AbstractElementDefinition
getBackColor, getColor, getDataBindingName, getDecimalPlaces, getIconKey, getIncrement, getMaxLength, getMaxMember, getMaxValue, getMinValue, getMultiplicity, getShowMaxMember, getSizeXweight, getSkipRow, getSpanRow, getTitleIndex, isChangeable, isColumnBreak, isFilterable, isHasThousandsSeparator, isInPlace, isPassword, isSortable, setBackColor, setChangeable, setColor, setColumnBreak, setDataBindingName, setDecimalPlaces, setDisplayValueExpr, setEventHandler, setFilterable, setHasThousandsSeparator, setIconKey, setIncrement, setInPlace, setLabel, setMaxLength, setMaxMember, setMaxValue, setMemberDefaultValue, setMemberElementName, setMemberMimeType, setMinValue, setMultiplicity, setOrder, setOrderFieldGroup, setOrderObjectContainer, setPassword, setShortLabel, setShowMaxMember, setSizeXweight, setSkipRow, setSortable, setSpanRow, setTitleIndex, setToolTip
 
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

getDisplayValueExpr

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

Specified by:
getDisplayValueExpr in interface AbstractElementDefinition
Returns:
A list containing all elements for this attribute.

setDisplayValueExpr

void setDisplayValueExpr(List<String> displayValueExpr)
Clears displayValueExpr and adds the members of the given List.

This method is equivalent to

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

Parameters:
displayValueExpr - collection to be copied.

getEventHandler

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

Specified by:
getEventHandler in interface AbstractElementDefinition
Returns:
A list containing all elements for this attribute.

setEventHandler

void setEventHandler(List<String> eventHandler)
Clears eventHandler and adds the members of the given List.

This method is equivalent to

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

Parameters:
eventHandler - collection to be copied.

getLabel

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

Specified by:
getLabel in interface AbstractElementDefinition
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.

getMemberDefaultValue

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

Specified by:
getMemberDefaultValue in interface AbstractElementDefinition
Returns:
A list containing all elements for this attribute.

setMemberDefaultValue

void setMemberDefaultValue(List<String> memberDefaultValue)
Clears memberDefaultValue and adds the members of the given List.

This method is equivalent to

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

Parameters:
memberDefaultValue - collection to be copied.

getMemberElementName

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

Specified by:
getMemberElementName in interface AbstractElementDefinition
Returns:
A list containing all elements for this attribute.

setMemberElementName

void setMemberElementName(List<String> memberElementName)
Clears memberElementName and adds the members of the given List.

This method is equivalent to

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

Parameters:
memberElementName - collection to be copied.

getMemberMimeType

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

Specified by:
getMemberMimeType in interface AbstractElementDefinition
Returns:
A list containing all elements for this attribute.

setMemberMimeType

void setMemberMimeType(List<String> memberMimeType)
Clears memberMimeType and adds the members of the given List.

This method is equivalent to

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

Parameters:
memberMimeType - collection to be copied.

getOrder

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

Specified by:
getOrder in interface AbstractElementDefinition
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.

getOrderFieldGroup

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

Specified by:
getOrderFieldGroup in interface AbstractElementDefinition
Returns:
A list containing all elements for this attribute.

setOrderFieldGroup

void setOrderFieldGroup(List<Integer> orderFieldGroup)
Clears orderFieldGroup and adds the members of the given List.

This method is equivalent to

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

Parameters:
orderFieldGroup - collection to be copied.

getOrderObjectContainer

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

Specified by:
getOrderObjectContainer in interface AbstractElementDefinition
Returns:
A list containing all elements for this attribute.

setOrderObjectContainer

void setOrderObjectContainer(List<Integer> orderObjectContainer)
Clears orderObjectContainer and adds the members of the given List.

This method is equivalent to

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

Parameters:
orderObjectContainer - collection to be copied.

getShortLabel

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

Specified by:
getShortLabel in interface AbstractElementDefinition
Returns:
A list containing all elements for this attribute.

setShortLabel

void setShortLabel(List<String> shortLabel)
Clears shortLabel and adds the members of the given List.

This method is equivalent to

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

Parameters:
shortLabel - collection to be copied.

getToolTip

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

Specified by:
getToolTip in interface AbstractElementDefinition
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.