src/Tools/isac/jedit (copy)/IsacActions.java
author Marco Steger <m.steger@student.tugraz.at>
Thu, 02 Sep 2010 21:57:03 +0200
branchjedit-isac
changeset 37973 f4747a9ae495
permissions -rw-r--r--
changed .java to .scala
m@37973
     1
/*
m@37973
     2
 * IsacActions.java
m@37973
     3
 * part of the Isac plugin for the jEdit text editor
m@37973
     4
 * Copyright Gadei
m@37973
     5
 * jgellene@nyc.rr.com
m@37973
     6
 *
m@37973
     7
 * This program is free software; you can redistribute it and/or
m@37973
     8
 * modify it under the terms of the GNU General Public License
m@37973
     9
 * as published by the Free Software Foundation; either version 2
m@37973
    10
 * of the License, or any later version.
m@37973
    11
 *
m@37973
    12
 * This program is distributed in the hope that it will be useful,
m@37973
    13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
m@37973
    14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
m@37973
    15
 * GNU General Public License for more details.
m@37973
    16
 *
m@37973
    17
 * You should have received a copy of the GNU General Public License
m@37973
    18
 * along with this program; if not, write to the Free Software
m@37973
    19
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
m@37973
    20
 *
m@37973
    21
 * $Id: IsacActions.java 12504 2008-04-22 23:12:43Z ezust $
m@37973
    22
 */
m@37973
    23
m@37973
    24
interface IsacActions {
m@37973
    25
	void chooseFile();
m@37973
    26
m@37973
    27
	void saveFile();
m@37973
    28
m@37973
    29
	void copyToBuffer();
m@37973
    30
}