Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / SourceFieldElementInfo.java
index 7729b5a..48c81d2 100644 (file)
  *******************************************************************************/
 package net.sourceforge.phpdt.internal.core;
 
-import net.sourceforge.phpdt.core.Signature;
+//import net.sourceforge.phpdt.core.Signature;
 import net.sourceforge.phpdt.internal.compiler.env.ISourceField;
 
 /**
  * Element info for IField elements.
  */
 
-/* package */ class SourceFieldElementInfo extends MemberElementInfo implements ISourceField {
+/* package */class SourceFieldElementInfo extends MemberElementInfo implements
+               ISourceField {
 
        /**
         * The type name of this field.
         */
        protected char[] typeName;
-       
+
        /**
         * The field's initializer string (if the field is a constant).
         */
        protected char[] initializationSource;
 
-/*
- * Returns the initialization source for this field.
- * Returns null if the field is not a constant or if it has no initialization.
- */
-public char[] getInitializationSource() {
-       return this.initializationSource;
-}
-/**
- * Returns the type name of the field.
- */
-public char[] getTypeName() {
-       return this.typeName;
-}
-/**
- * Returns the type signature of the field.
- *
- * @see Signature
- */
-protected String getTypeSignature() {
-       return Signature.createTypeSignature(this.typeName, false);
-}
+       /*
+        * Returns the initialization source for this field. Returns null if the
+        * field is not a constant or if it has no initialization.
+        */
+       public char[] getInitializationSource() {
+               return this.initializationSource;
+       }
 
-/**
- * Sets the type name of the field.
- */
-protected void setTypeName(char[] typeName) {
-       this.typeName = typeName;
-}
+       /**
+        * Returns the type name of the field.
+        */
+       public char[] getTypeName() {
+               return this.typeName;
+       }
+
+       /**
+        * Returns the type signature of the field.
+        * 
+        * @see Signature
+        */
+//     protected String getTypeSignature() {
+//             return Signature.createTypeSignature(this.typeName, false);
+//     }
+
+       /**
+        * Sets the type name of the field.
+        */
+       protected void setTypeName(char[] typeName) {
+               this.typeName = typeName;
+       }
 }