On Mar 28, 6:09 pm, Stefan....@googlemail.com wrote:
> is it possible to resolve a class name (method name, type name) to
> fully qualified name?
Do what the compiler and IDEs do. Look at the package and import
statements and then check the classpath (in case of the compiler also
the sourcepath) if you can find the class.
Lew - 29 Mar 2007 00:01 GMT
> On Mar 28, 6:09 pm, Stefan....@googlemail.com wrote:
>> is it possible to resolve a class name (method name, type name) to
[quoted text clipped - 3 lines]
> statements and then check the classpath (in case of the compiler also
> the sourcepath) if you can find the class.
Which answer lets you know, if you read it carefully, that the compiler will
resolve the fully-qualified names for your classes if the import and package
statements are correct.
-- Lew