Statistics
| Revision:

gvsig-scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.swing / org.gvsig.scripting.swing.api / src / main / java / org / gvsig / scripting / swing / api / JDialogEditor.java @ 165

History | View | Annotate | Download (476 Bytes)

1
package org.gvsig.scripting.swing.api;
2

    
3
import org.gvsig.scripting.ScriptingDialog;
4

    
5
/**
6
 * <code>JDialogEditor</code> is a component that support edition to a {@link ScriptingDialog).
7
 * 
8
 * @see AbstractJEditor
9
 * @see JCodeEditor
10
 * 
11
 */
12
public abstract class JDialogEditor extends AbstractJEditor {
13

    
14
        /**
15
         * Gets the {@link ScriptingDialog} associated with this JDialogEditor
16
         * 
17
         * @return {@link ScriptingDialog}
18
         */
19
        public abstract ScriptingDialog getDialog();
20

    
21
}