Revision 146 trunk/org.gvsig.scripting/org.gvsig.scripting.api/src/main/java/org/gvsig/scripting/swing/JThinG.java

View differences:

JThinG.java
6 6

  
7 7
import thinlet.Thinlet;
8 8

  
9
/**
10
 * <code>JThinG</code> is a component that provides an interface to edit the dialog window
11
 * associated to a {@link ScriptingDialog}.
12
 * 
13
 * @see JThinlet
14
 * 
15
 */
9 16
public abstract class JThinG extends JPanel{
10 17
	
18
	/**
19
	 * Loads the file with the code of the dialog interface.
20
	 * 
21
	 * @param file File where is the code of the dialog window of the {@link ScriptingDialog}
22
	 */
11 23
	public abstract void load(File file);
12 24

  
25
	/**
26
	 * Saves the file with the code of the dialog interface.
27
	 * 
28
	 * @param file File where it will be saved the code of the dialog window of the {@link ScriptingDialog}
29
	 */
13 30
	public abstract  void save(File file);
14 31
	
32
	/**
33
	 * Gets the Thinlet Component associated to this.
34
	 * 
35
	 * @return Thinlet
36
	 */
15 37
	public abstract Thinlet getThinlet();
16 38
}

Also available in: Unified diff