Refactory: remove unused classes, imports, fields and methods.
authorincastrix <incastrix>
Wed, 23 Dec 2009 17:45:36 +0000 (17:45 +0000)
committerincastrix <incastrix>
Wed, 23 Dec 2009 17:45:36 +0000 (17:45 +0000)
net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/text/template/contentassist/MultiVariable.java
net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/text/template/contentassist/TemplateContentAssistMessages.java
net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/text/template/contentassist/TemplateProposal.java
net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/text/template/preferences/TemplatePreferencesMessages.java

index 76f2299..695e4ad 100644 (file)
@@ -42,15 +42,15 @@ public class MultiVariable extends TemplateVariable {
         * @param values
         *            the possible values of this variable
         */
-       public void setValues(Object set, String[] values) {
-               Assert.isNotNull(set);
-               Assert.isTrue(values.length > 0);
-               fValueMap.put(set, values);
-               if (fDefaultKey == null) {
-                       fDefaultKey = set;
-                       fSet = getDefaultValue();
-               }
-       }
+//     public void setValues(Object set, String[] values) {
+//             Assert.isNotNull(set);
+//             Assert.isTrue(values.length > 0);
+//             fValueMap.put(set, values);
+//             if (fDefaultKey == null) {
+//                     fDefaultKey = set;
+//                     fSet = getDefaultValue();
+//             }
+//     }
 
        /*
         * @see org.eclipse.jface.text.templates.TemplateVariable#setValues(java.lang.String[])
index c675e0a..d34f5df 100644 (file)
@@ -10,7 +10,7 @@
  *******************************************************************************/
 package net.sourceforge.phpdt.internal.ui.text.template.contentassist;
 
-import java.text.MessageFormat;
+//import java.text.MessageFormat;
 import java.util.MissingResourceException;
 import java.util.ResourceBundle;
 
@@ -39,14 +39,14 @@ class TemplateContentAssistMessages {
         * @param key
         *            the string used to get the bundle value, must not be null
         */
-       public static String getFormattedString(String key, Object arg) {
-               return MessageFormat.format(getString(key), new Object[] { arg });
-       }
+//     public static String getFormattedString(String key, Object arg) {
+//             return MessageFormat.format(getString(key), new Object[] { arg });
+//     }
 
        /**
         * Gets a string from the resource bundle and formats it with arguments
         */
-       public static String getFormattedString(String key, Object[] args) {
-               return MessageFormat.format(getString(key), args);
-       }
+//     public static String getFormattedString(String key, Object[] args) {
+//             return MessageFormat.format(getString(key), args);
+//     }
 }
index 4ba1709..420c91b 100644 (file)
@@ -381,9 +381,9 @@ public class TemplateProposal implements IPHPCompletionProposal,
                return fDisplayString;
        }
 
-       public void setDisplayString(String displayString) {
-               fDisplayString = displayString;
-       }
+//     public void setDisplayString(String displayString) {
+//             fDisplayString = displayString;
+//     }
 
        /*
         * @see ICompletionProposal#getImage()
@@ -416,13 +416,13 @@ public class TemplateProposal implements IPHPCompletionProposal,
                return fRelevance;
        }
 
-       public void setRelevance(int relevance) {
-               fRelevance = relevance;
-       }
+//     public void setRelevance(int relevance) {
+//             fRelevance = relevance;
+//     }
 
-       public Template getTemplate() {
-               return fTemplate;
-       }
+//     public Template getTemplate() {
+//             return fTemplate;
+//     }
 
        /*
         * @see org.eclipse.jface.text.contentassist.ICompletionProposalExtension3#getInformationControlCreator()
index 29a9740..9240612 100644 (file)
@@ -10,7 +10,7 @@
  *******************************************************************************/
 package net.sourceforge.phpdt.internal.ui.text.template.preferences;
 
-import java.text.MessageFormat;
+//import java.text.MessageFormat;
 import java.util.MissingResourceException;
 import java.util.ResourceBundle;
 
@@ -39,14 +39,14 @@ class TemplatePreferencesMessages {
         * @param key
         *            the string used to get the bundle value, must not be null
         */
-       public static String getFormattedString(String key, Object arg) {
-               return MessageFormat.format(getString(key), new Object[] { arg });
-       }
+//     public static String getFormattedString(String key, Object arg) {
+//             return MessageFormat.format(getString(key), new Object[] { arg });
+//     }
 
        /**
         * Gets a string from the resource bundle and formats it with arguments
         */
-       public static String getFormattedString(String key, Object[] args) {
-               return MessageFormat.format(getString(key), args);
-       }
+//     public static String getFormattedString(String key, Object[] args) {
+//             return MessageFormat.format(getString(key), args);
+//     }
 }