java.lang.Object
org.gjt.sp.jedit.gui.DockingLayoutManager
- All Implemented Interfaces:
EBComponent
Saves and loads dockable layouts to disk
- Since:
- jEdit 4.3pre16
- Author:
- Shlomy Reinstein
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleMessage(EBMessage message) Handles a message sent on the EditBus.static voidinit()static voidstatic voidloadCurrentModeLayout(View view) static voidstatic voidstatic voidsaveCurrentModeLayout(View view)
-
Method Details
-
saveAs
-
load
-
init
public static void init() -
removeActions
public static void removeActions() -
handleMessage
Description copied from interface:EBComponentHandles a message sent on the EditBus. This method must specify the type of responses the plugin will have for various subclasses of theEBMessageclass. Typically this is done with one or moreifblocks that test whether the message is an instance of a derived message class in which the component has an interest. For example:if(msg instanceof BufferUpdate) { // a buffer's state has changed! } else if(msg instanceof ViewUpdate) { // a view's state has changed! } // ... and so on- Specified by:
handleMessagein interfaceEBComponent- Parameters:
message- The message
-
loadCurrentModeLayout
-
saveCurrentModeLayout
-