new version with WorkingCopy Management
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / IType.java
index 31e4630..9ba334d 100644 (file)
@@ -53,16 +53,16 @@ public interface IType extends IMember, IParent {
         * @param requestor the completion requestor
         * @since 2.0
         */
-       void codeComplete(
-               char[] snippet,
-               int insertion,
-               int position,
-               char[][] localVariableTypeNames,
-               char[][] localVariableNames,
-               int[] localVariableModifiers,
-               boolean isStatic,
-               ICompletionRequestor requestor)
-               throws JavaModelException;
+//     void codeComplete(
+//             char[] snippet,
+//             int insertion,
+//             int position,
+//             char[][] localVariableTypeNames,
+//             char[][] localVariableNames,
+//             int[] localVariableModifiers,
+//             boolean isStatic,
+//             ICompletionRequestor requestor)
+//             throws JavaModelException;
 
        /**
         * Creates and returns a field in this type with the
@@ -94,8 +94,8 @@ public interface IType extends IMember, IParent {
         * </ul>
         * @return a field in this type with the given contents
         */
-       IField createField(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
-               throws JavaModelException;
+//     IField createField(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
+//             throws JavaModelException;
                
        /**
         * Creates and returns a static initializer in this type with the
@@ -153,8 +153,8 @@ public interface IType extends IMember, IParent {
         * </ul>
         * @return a method or constructor in this type with the given contents
         */
-       IMethod createMethod(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
-               throws JavaModelException;
+//     IMethod createMethod(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
+//             throws JavaModelException;
                
        /**
         * Creates and returns a type in this type with the
@@ -186,8 +186,8 @@ public interface IType extends IMember, IParent {
         * </ul>
         * @return a type in this type with the given contents
         */
-       IType createType(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
-               throws JavaModelException;
+//     IType createType(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
+//             throws JavaModelException;
                
        /** 
         * Finds the methods in this type that correspond to
@@ -585,5 +585,5 @@ public interface IType extends IMember, IParent {
         * @exception JavaModelException if code resolve could not be performed. 
         * @return the resolved type names or <code>null</code> if unable to find any matching type
         */
-       String[][] resolveType(String typeName) throws JavaModelException;
+//     String[][] resolveType(String typeName) throws JavaModelException;
 }