package org.argeo.cms.ux.widgets; public interface Column { String getText(T model); default int getWidth() { return 200; } }