Skip to content
Snippets Groups Projects
Commit f6890473 authored by tpylak's avatar tpylak
Browse files

minor: javadoc, enlarge property column width

SVN: 9652
parent 3e426d68
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ public abstract class AbstractPropertyColDef<T> extends AbstractColumnDefinition ...@@ -31,7 +31,7 @@ public abstract class AbstractPropertyColDef<T> extends AbstractColumnDefinition
{ {
protected abstract List<? extends EntityProperty<?, ?>> getProperties(T entity); protected abstract List<? extends EntityProperty<?, ?>> getProperties(T entity);
private static final int PROPERTY_COLUMN_WIDTH = 80; private static final int PROPERTY_COLUMN_WIDTH = 120;
private static final String PROPERTY_PREFIX = "property"; private static final String PROPERTY_PREFIX = "property";
......
...@@ -4,11 +4,14 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.dto.IColumnDefinition; ...@@ -4,11 +4,14 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.dto.IColumnDefinition;
/** /**
* Describes column's metadata and UI. * Describes column's metadata and UI.
*
* @author Tomasz Pylak * @author Tomasz Pylak
*/ */
public interface IColumnDefinitionUI<T> extends IColumnDefinition<T> public interface IColumnDefinitionUI<T> extends IColumnDefinition<T>
{ {
/** width of the column */
int getWidth(); int getWidth();
/** Returns <code>true</code> if this column should initially be hidden. */
boolean isHidden(); boolean isHidden();
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment