|
JavaScript Development Tools Release 3.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.eclipse.wst.jsdt.core.BindingKey
public final class BindingKey
Utility class to decode or create a binding key.
This class is not intended to be subclassed by clients.
Provisional API: This class/interface is part of an interim API that is still under development and expected to
change significantly before reaching stability. It is being made available at this early stage to solicit feedback
from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
(repeatedly) as the API evolves.
Constructor Summary | |
---|---|
BindingKey(String key)
Creates a new binding key. |
Method Summary | |
---|---|
static String |
createArrayTypeBindingKey(String typeKey,
int arrayDimension)
Creates a new array type binding key from the given type binding key and the given array dimension. |
static String |
createTypeBindingKey(String typeName)
Creates a new type binding key from the given type name. |
String |
toSignature()
Transforms this binding key into a resolved signature. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public BindingKey(String key)
key
- the key to decodeMethod Detail |
---|
public static String createArrayTypeBindingKey(String typeKey, int arrayDimension)
For example:
createArrayTypeBindingKey("LObject;", 1) -> "[LObject;"
Note: This Method only applies to ECMAScript 4 which is not yet supported
typeKey
- the binding key of the given typearrayDimension
- the given array dimension
public static String createTypeBindingKey(String typeName)
For example:
createTypeBindingKey("String") -> "LString;"
Note: This Method only applies to ECMAScript 4 which is not yet supported
typeName
- the possibly qualified type name
public String toSignature()
Signature
public String toString()
toString
in class Object
|
JavaScript Development Tools Release 3.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |