package fr.openwide.core.wicket.more.markup.repeater.table.builder.toolbar.state; import fr.openwide.core.jpa.more.business.sort.ISort; import fr.openwide.core.wicket.more.condition.Condition; public interface IAddedToolbarElementState<T, S extends ISort<?>> extends IToolbarElementState<T, S> { IAddedToolbarElementState<T, S> when(Condition condition); IAddedToolbarElementState<T, S> withClass(String cssClass); IAddedToolbarElementState<T, S> colspan(Integer colspan); IAddedToolbarElementState<T, S> full(); }