1 30 package com.genimen.djeneric.tools.specifier.interfaces; 31 32 public interface ScriptEventDispatcher extends SpecifierPanel 33 { 34 public void construct(SpecifierPanelContainer editorPanelContainer); 35 36 public abstract void addEditorEventListener(EditorEventListener lsnr); 37 38 public abstract void removeEditorEventListener(EditorEventListener lsnr); 39 40 public abstract String getEventContext(); 41 42 public abstract void setEventContext(String string); 43 44 public abstract void registerEvent(String eventName, String eventTitle, String eventOption); 45 } | Popular Tags |