X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IType.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IType.java index 31e4630..9ba334d 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IType.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IType.java @@ -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 { * * @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 { * * @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 { * * @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 null if unable to find any matching type */ - String[][] resolveType(String typeName) throws JavaModelException; +// String[][] resolveType(String typeName) throws JavaModelException; }