Java Code Examples for org.eclipse.swt.widgets.Label.getText()
The following are Jave code examples for showing how to use
getText() of the
org.eclipse.swt.widgets.Label
class.
You can vote up the examples you like. Your votes will be used in our system to get
more good examples.
+ Save this method
Example 1
Project: Hydrograph File: ErrorLabelProvider.java View Source Code | 4 votes |
@Override public String getColumnText(Object element, int columnIndex) { Label filter = (Label) element; return filter.getText(); }