This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

inner classes


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]