List of usage examples for com.google.gwt.user.cellview.client TextColumn subclass-usage
From source file com.novartis.pcs.ontology.webapp.client.view.ComparableTextColumn.java
public abstract class ComparableTextColumn<T> extends TextColumn<T> implements Comparator<T> { public ComparableTextColumn() { setSortable(true); } @Override
From source file org.cloudcoder.app.client.view.OutputFirstLineColumn.java
abstract class OutputFirstLineColumn<T> extends TextColumn<T> { @Override public String getValue(T object) { return firstLine(getText(object)); }
From source file org.eclipse.che.ide.ext.datasource.client.sqllauncher.FixedIndexTextColumn.java
class FixedIndexTextColumn extends TextColumn<List<String>> { private final int columnIndex; public FixedIndexTextColumn(final int columnIndex, HasHorizontalAlignment.HorizontalAlignmentConstant alignment) {
From source file org.hudsonci.maven.plugin.ui.gwt.buildinfo.widget.ArtifactCoordinatesColumn.java
/**
* Column to display {@link ArtifactDTO} coordinates.
*
* @author Jamie Whitehouse
* @since 2.1.0
*/
From source file org.hudsonci.maven.plugin.ui.gwt.buildinfo.widget.ModuleDurationColumn.java
/**
* Column to display the duration of a {@link MavenProjectDTO} build.
*
* @author Jamie Whitehouse
* @since 2.1.0
*/
From source file org.openremote.app.client.widget.DateColumn.java
public abstract class DateColumn<T> extends TextColumn<T> { DateTimeFormat fmt = DateTimeFormat.getFormat(DateTimeFormat.PredefinedFormat.DATE_MEDIUM); public void setDateFormat(String pattern) { fmt = DateTimeFormat.getFormat(pattern);
From source file org.openremote.manager.client.widget.DateColumn.java
public abstract class DateColumn<T> extends TextColumn<T> { DateTimeFormat fmt = DateTimeFormat.getFormat(DateTimeFormat.PredefinedFormat.DATE_MEDIUM); public void setDateFormat(String pattern) { fmt = DateTimeFormat.getFormat(pattern);
From source file org.pepstock.jem.gwt.client.panels.jobs.running.RunningTextColumn.java
/** * @author Andrea "Stock" Stocchero * */ public abstract class RunningTextColumn extends TextColumn<Job> {
From source file org.seamless.gwt.component.client.widget.DateColumn.java
/** * @author Christian Bauer */ public abstract class DateColumn<T> extends TextColumn<T> { DateTimeFormat fmt = DateTimeFormat.getFormat(DateTimeFormat.PredefinedFormat.DATE_MEDIUM);