package org.simantics.document.server.client; import java.util.Collection; import org.simantics.document.server.JSONObject; public interface CommandManager { public Collection updateCommandListeners(D document, JSONObject object, C widget); public void removeListener(C widget, Object listener); }