Example usage for org.apache.wicket.extensions.markup.html.repeater.data.table IColumn interface-usage

List of usage examples for org.apache.wicket.extensions.markup.html.repeater.data.table IColumn interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.extensions.markup.html.repeater.data.table IColumn interface-usage.

Usage

From source file com.swordlord.gozer.components.wicket.datatable.GozerColumn.java

/**
 * TODO JavaDoc for GozerColumn.java
 * 
 * @author LordEidi
 * 
 */

From source file org.artifactory.common.wicket.component.table.groupable.column.IGroupableColumn.java

/**
 * @author Yoav Aharoni
 */
public interface IGroupableColumn<T> extends IColumn<T> {
    String getGroupProperty();
}

From source file org.cast.cwm.admin.IDataColumn.java

/** 
 * An IColumn that can also be used for static data table download.
 * This requires that header and data item content can be retrieved as simple strings
 * in addition to retrieval as Wicket components.
 * 
 * @see org.apache.wicket.extensions.markup.html.repeater.data.table.IColumn

From source file org.cdlflex.ui.markup.html.repeater.data.table.ITableAware.java

/**
 * Interface for columns of DataTable that know of the table they are attached to.
 * 
 * @param <T> The model object type
 * @param <S> the type of the sorting parameter
 */

From source file org.onexus.website.api.widgets.tableviewer.columns.AbstractColumn.java

public abstract class AbstractColumn implements IColumn<IEntityTable, String> {

    private ORI collectionId;

    public AbstractColumn() {
        super();

From source file org.ujorm.wicket.component.grid.KeyPopulator.java

/**
 * A convenience implementation of {@link ICellPopulator} that adds a label that will display the
 * value of the specified property. Non-string properties will be converted to a string before
 * display.
 * <p>
 * Example:

From source file org.wicketopia.model.column.BeanPropertyColumn.java

/**
 * @author James Carman
 */
public class BeanPropertyColumn<T> implements IColumn<T, String> {
    private final PropertyComponentFactory<T> factory;
    private final String propertyName;

From source file wickettree.table.ITreeColumn.java

/**
 * @author Sven Meier
 */
public interface ITreeColumn<T> extends IColumn<T> {
    public void setTree(TableTree<T> t);
}