diff options
Diffstat (limited to 'sources/prefs/editors/VSAbstractEditor.java')
| -rw-r--r-- | sources/prefs/editors/VSAbstractEditor.java | 11 |
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); } |
