interior.add(new JLabel(localizationResources.getString("Label_Insets")));
b = new JButton(localizationResources.getString("Edit..."));
b.setActionCommand("LabelInsets");
b.addActionListener(this);
this.labelInsetsTextField = new InsetsTextField(this.labelInsets);
interior.add(this.labelInsetsTextField);
interior.add(b);
interior.add(new JLabel(localizationResources.getString("Tick_Label_Insets")));
b = new JButton(localizationResources.getString("Edit..."));
b.setActionCommand("TickLabelInsets");
b.addActionListener(this);
this.tickLabelInsetsTextField = new InsetsTextField(this.tickLabelInsets);
interior.add(this.tickLabelInsetsTextField);
interior.add(b);
general.add(interior);