src/Tools/isac/jEditC/contrib/jEdit/jars/build/classes/actions.xml
branchjedit-isac
changeset 37958 62186eba092b
parent 37955 5305daa4228e
equal deleted inserted replaced
37957:d13fa2ee5bdb 37958:62186eba092b
     1 <!-- Action definition file for Isac plugin -->
       
     2 <!-- $Id: actions.xml 5152 2004-12-05 04:37:06Z spestov $
       
     3 -->
       
     4 
       
     5 <!DOCTYPE ACTIONS SYSTEM "actions.dtd">
       
     6 
       
     7 <ACTIONS>
       
     8 	<ACTION NAME="isac.choose-file">
       
     9 		<CODE>
       
    10 			wm.addDockableWindow(IsacPlugin.NAME);
       
    11 			wm.getDockableWindow(IsacPlugin.NAME).chooseFile();
       
    12 		</CODE>
       
    13 	</ACTION>
       
    14 
       
    15 	<ACTION NAME="isac.save-file">
       
    16 		<CODE>
       
    17 			wm.addDockableWindow(IsacPlugin.NAME);
       
    18 			wm.getDockableWindow(IsacPlugin.NAME).saveFile();
       
    19 		</CODE>
       
    20 	</ACTION>
       
    21 
       
    22 	<ACTION NAME="isac.copy-to-buffer">
       
    23 		<CODE>
       
    24 			wm.addDockableWindow(IsacPlugin.NAME);
       
    25 			wm.getDockableWindow(IsacPlugin.NAME).copyToBuffer();
       
    26 		</CODE>
       
    27 	</ACTION>
       
    28 </ACTIONS>
       
    29