diff dwtx/jface/preference/PathEditor.d @ 43:ea8ff534f622

Fix override and super aliases
author Frank Benoit <benoit@tionex.de>
date Fri, 11 Apr 2008 01:24:25 +0200
parents b3c8e32d406f
children 7f9034e47984
line wrap: on
line diff
--- a/dwtx/jface/preference/PathEditor.d	Thu Apr 10 19:10:12 2008 +0200
+++ b/dwtx/jface/preference/PathEditor.d	Fri Apr 11 01:24:25 2008 +0200
@@ -67,7 +67,7 @@
      * Creates a single string from the given array by separating each
      * string with the appropriate OS-specific path separator.
      */
-    protected String createList(String[] items) {
+    protected override String createList(String[] items) {
         StringBuffer path = new StringBuffer("");//$NON-NLS-1$
 
         for (int i = 0; i < items.length; i++) {
@@ -81,7 +81,7 @@
      * Method declared on ListEditor.
      * Creates a new path element by means of a directory dialog.
      */
-    protected String getNewInputObject() {
+    protected override String getNewInputObject() {
 
         DirectoryDialog dialog = new DirectoryDialog(getShell());
         if (dirChooserLabelText !is null) {
@@ -106,7 +106,7 @@
     /* (non-Javadoc)
      * Method declared on ListEditor.
      */
-    protected String[] parseString(String stringList) {
+    protected override String[] parseString(String stringList) {
         return tango.text.Util.delimit(stringList.dup, FileConst.PathSeparatorString
                 ~ "\n\r");//$NON-NLS-1$
     }