[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
Re: [eclipse-dev] Planning Meeting Notes - August 16, 2006
|
JDT/Core
- vacations (6 out of 7 committers)
- Add new DOM API method to create array bindings using an existing type
binding has been moved to the org.eclipse.jdt.core.dom.ITypeBinding class
and rename createArrayType. See bug 148224.
/**
* Answer an array type binding using the receiver and
the given
* dimension.
*
* If the receiver is an array binding, then the
resulting dimension is the given dimension
* plus the dimension of the receiver. Otherwise the
resulting dimension is the given
* dimension.
*
* @param dimension the given dimension
* @return an array type binding
* @throws IllegalArgumentException:
* if the receiver represents the void type
* if the resulting dimensions is lower than one or
greater than 255
*
* @since 3.3
*/
public ITypeBinding createArrayType(int dimension);
The exact location of this new API is still under discussion.
- Preparing 3.2.1 submission: 2 remaining bugs need to be solved (StackMap
related)
- bug fixes