File tree 1 file changed +5
-0
lines changed
org.nodeclipse.ui/src/org/nodeclipse/ui/preferences
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import org .eclipse .jface .preference .FieldEditorPreferencePage ;
4
4
import org .eclipse .jface .preference .FileFieldEditor ;
5
+ import org .eclipse .jface .preference .IntegerFieldEditor ;
5
6
import org .eclipse .ui .IWorkbench ;
6
7
import org .eclipse .ui .IWorkbenchPreferencePage ;
7
8
import org .nodeclipse .ui .Activator ;
13
14
public class NodePreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage {
14
15
15
16
private FileFieldEditor nodePath ;
17
+ private IntegerFieldEditor nodeDebugPort ;
16
18
private FileFieldEditor expressPath ;
17
19
private FileFieldEditor coffeePath ;
18
20
private FileFieldEditor nodeMonitorPath ;
@@ -34,6 +36,9 @@ protected void createFieldEditors() {
34
36
nodePath = new FileFieldEditor (PreferenceConstants .NODE_PATH , "Node Path:" , getFieldEditorParent ());
35
37
addField (nodePath );
36
38
39
+ nodeDebugPort = new IntegerFieldEditor (PreferenceConstants .NODE_DEBUG_PORT , "Node debug port:" , getFieldEditorParent ());
40
+ addField (nodeDebugPort );
41
+
37
42
expressPath = new FileFieldEditor (PreferenceConstants .EXPRESS_PATH , "Express Path:" , getFieldEditorParent ());
38
43
addField (expressPath );
39
44
You can’t perform that action at this time.
0 commit comments