]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - org.argeo.cms.ux/src/org/argeo/cms/ux/widgets/Column.java
Merge remote-tracking branch 'origin/unstable' into merge-to-testing
[lgpl/argeo-commons.git] / org.argeo.cms.ux / src / org / argeo / cms / ux / widgets / Column.java
index 9ee141c9040b0b60d39318f00534855f41cc327e..71cd263f89b302f7717a268df44f1788e9c1be28 100644 (file)
@@ -4,14 +4,14 @@ import org.argeo.api.cms.ux.CmsIcon;
 
 /** A column in a data representation. */
 @FunctionalInterface
-public interface Column<T> {
-       String getText(T model);
+public interface Column<TYPE> {
+       String getText(TYPE model);
 
        default int getWidth() {
                return 200;
        }
 
-       default CmsIcon getIcon(T model) {
+       default CmsIcon getIcon(TYPE model) {
                return null;
        }