use of org.pentaho.gwt.widgets.client.utils.string.StringTokenizer in project pentaho-platform by pentaho.
the class JsCreateNewConfig method getLabel.
public final String getLabel() {
String value = getValue();
StringTokenizer st = new StringTokenizer(value, ',');
return st.tokenAt(1).trim();
}
Aggregations