Class AbstractNonSelectableRowDataUtility
java.lang.Object
com.ptc.core.components.factory.AbstractDataUtility
com.ptc.core.components.factory.dataUtilities.AbstractBooleanValueDataUtility
com.ptc.core.components.factory.dataUtilities.AbstractNonSelectableRowDataUtility
- All Implemented Interfaces:
DataUtility
@Deprecated
public abstract class AbstractNonSelectableRowDataUtility
extends AbstractBooleanValueDataUtility
Deprecated.
this class instead use AbstractBooleanValueDataUtility
Abstract super class for Data-Utilities that need to render a boolean attribute to determine if a row is selectable.
Supported API: true
Extendable: true
Supported API: true
Extendable: true
-
Method Summary
Modifier and TypeMethodDescriptionabstract booleanisNonSelectableRow(String component_id, Object datum, ModelContext mc) Deprecated.Methods inherited from class com.ptc.core.components.factory.AbstractDataUtility
getColumnDescriptor, getToolTip, setModelData
-
Method Details
-
isNonSelectableRow
@Deprecated public abstract boolean isNonSelectableRow(String component_id, Object datum, ModelContext mc) throws WTException Deprecated.This method will need to be implemented by DataUtilities which determines if row is selectable or not.
Supported API: true- Parameters:
component_id- The identifier of the component that requested this data utility.datum- The data objects that will subsequently be processed by calls to getDataValue.mc- The context in which the component model data is being extracted- Returns:
- boolean returns true if the row is not selectable.
- Throws:
WTException- If a problem occurs while extracting the data
-