Child: [r25] (diff)

Download this file

PluginOld.java    51 lines (40 with data), 1.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* SPDXVersion: SPDX-1.1
*
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
*
* Creator: Organization: TripleCheck (contact@triplecheck.de)
*
* Created: 2013-09-19T00:00:00Z
*
* LicenseName: NOASSERTION
*
* FileName: PluginOld.java
*
* FileType: SOURCE
*
* FileCopyrightText: <text> Copyright 2013 Nuno Brito, TripleCheck </text>
*
* FileComment: <text> Defines the structure of a plugin supported by this
* software </text>
*/
package old;
import java.io.File;
/**
*
* @author Nuno Brito, 19th of September 2013 in Darmstadt, Germany.
*/
public interface PluginOld {
// things that we'd like to see on each plugin
String
title = ""; // title used by the node
File // pointer to the file on disk
file = null;
// set of methods to be overriden
public void onDoubleClick();
public void onTripleClick();
// @Override
// public String toString(){
// return title;
// }
}