01: package org.acm.seguin.tools.install;
02:
03: /**
04: * Whether to include spaces around a local variable
05: *
06: *@author Chris Seguin
07: *@created September 12, 2001
08: */
09: public class SpaceAroundLocalVariablesPanel extends TogglePanel {
10: public SpaceAroundLocalVariablesPanel() {
11: super ();
12: addDescription("Do we force a blank line before and after local variable declarations?");
13: addControl();
14: }
15:
16: /**
17: * Gets the key attribute of the SpaceAroundLocalVariablesPanel object
18: *
19: *@return The key value
20: */
21: public String getKey() {
22: return "insert.space.around.local.variables";
23: }
24:
25: /**
26: * Gets the initialValue attribute of the SpaceAroundLocalVariablesPanel
27: * object
28: *
29: *@return The initialValue value
30: */
31: protected String getInitialValue() {
32: return "false";
33: }
34: }
|