JavaSource.getImports() returns static imports as standard imports
------------------------------------------------------------------

                 Key: QDOX-225
                 URL: http://jira.codehaus.org/browse/QDOX-225
             Project: QDox
          Issue Type: Bug
          Components: Parser
            Reporter: Robert Scholte
            Assignee: Robert Scholte
             Fix For: 2.0


The real problem is actually that the parser does nothing with {{static}}

{noformat}
// Import statement
import: IMPORT fullidentifier SEMI { builder.addImport($2); } 
      | IMPORT STATIC fullidentifier SEMI { builder.addImport($3); };
{noformat}
Here the {{static}} gets lost and there's no way to recover it afterwards.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to