diff --git a/org.fortiss.tooling.base.ui/trunk/src/org/fortiss/tooling/base/ui/tablecell/CheckBoxLabelProvider.java b/org.fortiss.tooling.base.ui/trunk/src/org/fortiss/tooling/base/ui/tablecell/CheckBoxLabelProvider.java index 139e10ac2b022e25a0b6000ff03cd0931f96ff5c..7e9f0303e15a346a701dcc7859dece292259128b 100644 --- a/org.fortiss.tooling.base.ui/trunk/src/org/fortiss/tooling/base/ui/tablecell/CheckBoxLabelProvider.java +++ b/org.fortiss.tooling.base.ui/trunk/src/org/fortiss/tooling/base/ui/tablecell/CheckBoxLabelProvider.java @@ -40,7 +40,7 @@ import org.eclipse.swt.widgets.Shell; * @author hoelzl * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: 262C0686171A717317A4E8F6D6A2160D + * @ConQAT.Rating YELLOW Hash: 6722E0E1A822CE8A27F4445261AE6163 */ // Using drawn images may seem strange, but internet sources could not provide // any other solution to having checkbox in cell editors @@ -144,6 +144,12 @@ public abstract class CheckBoxLabelProvider extends ColumnLabelProvider { return getImage(isChecked(element), isEnabled(element)); } + /** {@inheritDoc} */ + @Override + public String getText(Object element) { + return null; + } + /** Tests the model objects checked state. */ protected abstract boolean isChecked(Object element);