package com.onaro.sanscreen.client.view.tabular; import com.onaro.util.jfc.tables.filter.Filter; public interface ITabularColumn extends com.onaro.commons.swing.table.IOnaroColumn { /** * (Optional) Get the name of the group this column belongs to. */ public String getGroupName(); /** * Is this a system (non-user) column. */ public boolean isSystem(); /** * Tells if the column should is by default hidden. */ public boolean isVisibleByDefault(); /** * (Optional). */ public Filter getFilter(); }