C D G I K L O P S T

C

createLabelModel(IModel<UJO>) - Method in class org.ujorm.wicket.component.gridView.KeyColumn
Factory method for generating a model that will generated the displayed value.

D

detach() - Method in class org.ujorm.wicket.component.gridView.KeyPopulator
 
detach() - Method in class org.ujorm.wicket.KeyModel
 

G

getBaseClass() - Method in class org.ujorm.wicket.KeyModel
Return a class of the base domainObject
getHeader(String) - Method in class org.ujorm.wicket.component.gridView.KeyPopulator
 
getObject() - Method in class org.ujorm.wicket.KeyModel
 
getProperty() - Method in class org.ujorm.wicket.KeyModel
Rerurn Key
getPropertyExpression() - Method in class org.ujorm.wicket.component.gridView.KeyColumn
 
getSortProperty() - Method in class org.ujorm.wicket.component.gridView.KeyPopulator
 

I

isSortable() - Method in class org.ujorm.wicket.component.gridView.KeyPopulator
 

K

KeyColumn<UJO extends Ujo> - Class in org.ujorm.wicket.component.gridView
A convenience implementation of column that adds a Ujo Property to the cell whose model is determined by the provided wicket property expression (same as used by PropertyModel) that is evaluated against the current row's model object Example:
 public class DataTablePage2 extends WebPage {
     
     public DataTablePage2() {
         final EmployeeProvider userProvider = new EmployeeProvider();
 
         final List<IColumn> columns = new ArrayList<IColumn>();
         columns.add(new KeyColumn(Employee.ID));
         columns.add(new KeyColumn(Employee.FIRSTNAME));
         columns.add(new KeyColumn(Employee.LASTNAME));
         columns.add(new KeyColumn(Employee.EMAIL));
         columns.add(new KeyColumn(Employee.STUDENT));
 
         add(new DefaultDataTable("datatable", columns, userProvider, 20));
     }
 }
 

 The above will attach a label to the cell with a property model for the expression
 "name.first"
KeyColumn(Class, Key) - Constructor for class org.ujorm.wicket.component.gridView.KeyColumn
Deprecated. 
KeyColumn(Key) - Constructor for class org.ujorm.wicket.component.gridView.KeyColumn
Creates a property column that is also sortable - the simplyfied methdod
KeyModel<UJO extends Ujo,T> - Class in org.ujorm.wicket
 
KeyModel(UJO, Key<UJO, T>) - Constructor for class org.ujorm.wicket.KeyModel
Protected Construct with a wrapped (IModel) or unwrapped (non-IModel) object and a property expression that works on the given model.
KeyPopulator<UJO extends Ujo> - Class in org.ujorm.wicket.component.gridView
A convenience implementation of ICellPopulator that adds a label that will display the value of the specified property.
KeyPopulator(KeyRing<UJO>) - Constructor for class org.ujorm.wicket.component.gridView.KeyPopulator
 
KeyPopulator(Key<UJO, ?>) - Constructor for class org.ujorm.wicket.component.gridView.KeyPopulator
 

L

list(Key<? super UJO, ?>...) - Static method in class org.ujorm.wicket.component.gridView.KeyPopulator
Create new ICellPopulator List with a pupulator with no generic item type for easy use

O

of(UJO, Key<UJO, T>) - Static method in class org.ujorm.wicket.KeyModel
Type-infering factory method
of(IModel<UJO>, KeyRing<UJO>) - Static method in class org.ujorm.wicket.KeyModel
Type-infering factory method
of(Object, String) - Static method in class org.ujorm.wicket.KeyModel
Create a Wicket model from a domain model type of Ujo or JavaBean.
org.ujorm.wicket - package org.ujorm.wicket
 
org.ujorm.wicket.component.gridView - package org.ujorm.wicket.component.gridView
 

P

populateItem(Item<ICellPopulator<UJO>>, String, IModel<UJO>) - Method in class org.ujorm.wicket.component.gridView.KeyColumn
Implementation of populateItem which adds a label to the cell whose model is the provided property expression evaluated against rowModelObject
populateItem(Item<ICellPopulator<UJO>>, String, IModel<UJO>) - Method in class org.ujorm.wicket.component.gridView.KeyPopulator
 

S

safeList(Key<UJO, ?>...) - Static method in class org.ujorm.wicket.component.gridView.KeyPopulator
Deprecated. 
setObject(T) - Method in class org.ujorm.wicket.KeyModel
 

T

toString() - Method in class org.ujorm.wicket.KeyModel
 

C D G I K L O P S T

Copyright © 2013. All Rights Reserved.