improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / env / ISourceType.java
index 59c7534..6d25398 100644 (file)
@@ -10,6 +10,8 @@
  *******************************************************************************/
 package net.sourceforge.phpdt.internal.compiler.env;
 
+import net.sourceforge.phpdt.internal.compiler.env.ISourceImport;
+
 public interface ISourceType extends IGenericType {
 /**
  * Answer the source end position of the type's declaration.
@@ -34,15 +36,25 @@ ISourceType getEnclosingType();
  */
 
 ISourceField[] getFields();
+///**
+// * Answer the unresolved names of the receiver's imports
+// * or null if the array is empty.
+// *
+// * An import is a qualified, dot separated name.
+// * For example, java.util.Hashtable or java.lang.*.
+// */
+//
+//char[][] getImports();
 /**
- * Answer the unresolved names of the receiver's imports
- * or null if the array is empty.
+ * Answer the receiver's imports or null if the array is empty.
  *
  * An import is a qualified, dot separated name.
  * For example, java.util.Hashtable or java.lang.*.
+ * A static import used 'static.' as its first fragment, for
+ * example: static.java.util.Hashtable.*
  */
-
 char[][] getImports();
+
 /**
  * Answer the unresolved names of the receiver's interfaces
  * or null if the array is empty.