Interface PrometheusFieldSetControl<T>
- Type Parameters:
T- the item type
- All Known Implementing Classes:
PrometheusFieldSet
public interface PrometheusFieldSetControl<T>
FieldSet Control.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisChanged(T pItem, MetisDataItem.MetisDataFieldId pField) Is the cell changed?voidnewData(MetisDataItem.MetisDataFieldId pFieldId, Object pNewValue) Notify listeners of new data.voidregisterField(MetisDataItem.MetisDataFieldId pFieldId, PrometheusFieldSetPanel<T> pPanel) Register a field.
-
Method Details
-
registerField
Register a field.- Parameters:
pFieldId- the field.pPanel- the panel.
-
newData
Notify listeners of new data.- Parameters:
pFieldId- the fieldId.pNewValue- the new value
-
isChanged
Is the cell changed?- Parameters:
pItem- the itempField- the field id- Returns:
- true/false
-