| java.lang.Object com.go.tea.compiler.MethodMatcher
MethodMatcher | public class MethodMatcher (Code) | | This class finds methods that best fit a given description. The compiler
will then bind to one of those methods.
author: Brian S O'Neill version: 14 , 9/07/00 |
Method Summary | |
public static int | match(Method[] methods, String name, Type[] params) The best result candidates are stored in the Method array passed in.
The int returned indicates the number of candidates in the array. |
match | public static int match(Method[] methods, String name, Type[] params)(Code) | | The best result candidates are stored in the Method array passed in.
The int returned indicates the number of candidates in the array. Zero
is returned if there is no possible match.
|
|
|