Simplify LDAP directory.
[lgpl/argeo-commons.git] / org.argeo.cms.ux / src / org / argeo / cms / ux / widgets / Column.java
index 9bfa9620a09fc563a411710c82c6e8d4c1c6981c..973fddb5a8504a070c2968fe2643e711de6181be 100644 (file)
@@ -1,10 +1,16 @@
 package org.argeo.cms.ux.widgets;
 
+import org.argeo.api.cms.ux.CmsIcon;
+
 public interface Column<T> {
        String getText(T model);
 
        default int getWidth() {
                return 200;
        }
-       
+
+       default CmsIcon getIcon(T model) {
+               return null;
+       }
+
 }