inner classes
Dhek Bhun Kho
bhun@chello.nl
Wed Dec 11 18:18:00 GMT 2002
I was busy tweaking ant, and found something curious. I don't know if it
has already been reported but it concerns:
package org.apache.tools.ant.util.facade;
import org.apache.tools.ant.types.Commandline
public class ImplementationSpecificArgument extends Commandline.Argument
{
...
}
-- this doesn't compile!
but when I change the super class declaration to be fully qualified it
does! e.g.:
public class ImplementationSpecificArgument extends
org.apache.tools.ant.types.Commandline.Argument {
--- this compiles
More information about the Java
mailing list