All Packages Class Hierarchy This Package Previous Next Index
Class espresso.util.MethodDesc
java.lang.Object
|
+----espresso.util.MethodDesc
- public class MethodDesc
- extends Object
-
acount_d
- Counter of ambiguous occurencies.
-
candidateType_d
-
Candidate type for method.
-
className_d
- Class/type where we currently try to match (output).
-
distance_d
- Best distance we encountered so far (input/output).
-
methodIndex_d
- Index into method table of current best match (output).
-
methodName_d
- Unqualified method name (input).
-
methodType_d
- Signature of method we try to match (input).
-
node_d
-
Node from which findMethod was called initially.
-
MethodDesc(Symbol, MethodType, SyntaxTreeNode)
-
-
acount()
-
-
candidateType()
-
-
className()
-
-
distance()
-
-
methodIndex()
-
-
methodName()
-
-
methodType()
-
-
node()
-
-
setAcount(int)
-
-
setCandidateType(MethodType)
-
-
setClassName(Symbol)
-
-
setDistance(int)
-
-
setMethodIndex(int)
-
methodType_d
MethodType methodType_d
- Signature of method we try to match (input).
methodName_d
Symbol methodName_d
- Unqualified method name (input).
className_d
Symbol className_d
- Class/type where we currently try to match (output).
candidateType_d
MethodType candidateType_d
- Candidate type for method.
distance_d
int distance_d
- Best distance we encountered so far (input/output).
methodIndex_d
int methodIndex_d
- Index into method table of current best match (output).
acount_d
int acount_d
- Counter of ambiguous occurencies.
node_d
SyntaxTreeNode node_d
- Node from which findMethod was called initially.
MethodDesc
public MethodDesc(Symbol methodName,
MethodType methodType,
SyntaxTreeNode node)
className
public Symbol className()
methodName
public Symbol methodName()
methodType
public MethodType methodType()
distance
public int distance()
methodIndex
public int methodIndex()
acount
public int acount()
node
public SyntaxTreeNode node()
candidateType
public MethodType candidateType()
setClassName
public void setClassName(Symbol className)
setDistance
public void setDistance(int distance)
setMethodIndex
public void setMethodIndex(int mindex)
setAcount
public void setAcount(int acount)
setCandidateType
public void setCandidateType(MethodType mtype)
All Packages Class Hierarchy This Package Previous Next Index