summaryrefslogtreecommitdiff
path: root/sources/prefs/editors/VSAbstractEditor.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-06-14 01:11:32 +0000
committerPaul Buetow <paul@buetow.org>2008-06-14 01:11:32 +0000
commitfaaadb9c546e376dd8e8dd6553017d334aa0e0c4 (patch)
treed72554c8e819b6e860ff3a046bd7e31c6ee4107f /sources/prefs/editors/VSAbstractEditor.java
parent044b410cde94862687b05f3b820676a65b1ea9d7 (diff)
foo
Diffstat (limited to 'sources/prefs/editors/VSAbstractEditor.java')
-rw-r--r--sources/prefs/editors/VSAbstractEditor.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/sources/prefs/editors/VSAbstractEditor.java b/sources/prefs/editors/VSAbstractEditor.java
index a3f5fe3..fe0e7e4 100644
--- a/sources/prefs/editors/VSAbstractEditor.java
+++ b/sources/prefs/editors/VSAbstractEditor.java
@@ -233,6 +233,7 @@ public abstract class VSAbstractEditor implements ActionListener {
booleanKeys = filterKeys(prefsToEdit.getBooleanKeySet());
stringKeys = filterKeys(prefsToEdit.getStringKeySet());
+ fillEditPanelFront(prefsToEdit);
fillEditPanel(prefsToEdit);
}
@@ -538,6 +539,14 @@ public abstract class VSAbstractEditor implements ActionListener {
}
/**
+ * Fills the edit panel at the front. May be overloaded by another class.
+ *
+ * @param prefsToEdit the prefs to edit
+ */
+ protected void fillEditPanelFront(VSPrefs prefsToEdit) {
+ }
+
+ /**
* Fills the edit panel.
*
* @param prefsToEdit the prefs to edit
@@ -805,7 +814,7 @@ public abstract class VSAbstractEditor implements ActionListener {
*
* @param label the label
*/
- private void addSeparator(String label) {
+ protected void addSeparator(String label) {
editTable.addSeparator(label);
}