package org.gcube.portlets.user.td.columnwidget.client.create; import org.gcube.portlets.user.td.gwtservice.shared.tr.ColumnMockUp; public interface CreateDefColumnListener { /** * Called when column definition is create without errors */ public void completedDefColumnCreation(ColumnMockUp defNewColumn); /** * Called when column definition is aborted by the user. */ public void abortedDefColumnCreation(); /** * Called when the something is failed. * * @param reason * @param detail */ public void failedDefColumnCreation(String reason, String details); }