Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jdt-debug-dev] cleanup of API in org.eclipse.jdt.core.dom package

JDT Core wants to remove the following API methods and fields for next 
integration build. All these API elements were introduced earlier in the 
3.0 cycle; most have been deprecated for a couple of builds now.  If you 
are still using any of these, please change your code to use the new 
replacements.

org.eclipse.jdt.core.dom package

AST.K_EXPRESSION
AST.K_STATEMENTS
AST.K_CLASS_BODY_DECLARATIONS
AST.newParameterizedType(Name typeName)
AST.parse(int kind, char[] source, int offset, int length, Map options)
AST.parseCompilationUnit(ICompilationUnit unit, boolean resolveBindings, 
WorkingCopyOwner owner)
AST.parseCompilationUnit(ICompilationUnit unit, boolean resolveBindings, 
WorkingCopyOwner owner, IProgressMonitor monitor)
AST.parseCompilationUnit(IClassFile classFile, boolean resolveBindings, 
WorkingCopyOwner owner, IProgressMonitor monitor)
AST.parseCompilationUnit(char[] source, String unitName, IJavaProject 
project, WorkingCopyOwner owner, IProgressMonitor monitor)
AST.parseCompilationUnit(char[] source, Map options)
AST.parsePartialCompilationUnit(ICompilationUnit unit, int position, 
boolean resolveBindings, WorkingCopyOwner owner, IProgressMonitor monitor)
AST.parsePartialCompilationUnit(IClassFile classFile, int position, 
boolean resolveBindings, WorkingCopyOwner owner, IProgressMonitor monitor)
AST.parsePartialCompilationUnit(IClassFile classFile, int position, 
boolean resolveBindings, WorkingCopyOwner owner, IProgressMonitor monitor)

ParameterizedType.NAME_PROPERTY
ParameterizedType.getName()
ParameterizedType.setName(Name typeName)

SingleVariableDeclaration.VARIABLE_ARITY_PROPERTY
SingleVariableDeclaration.isVariableArity()
SingleVariableDeclaration.setVariableArity(boolean)

MethodDeclaration.isVariableArity()


Thanks,
jim


Back to the top