You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "David Savage (JIRA)" <ji...@apache.org> on 2009/07/13 19:19:14 UTC

[jira] Created: (FELIX-1329) Import quick fix processor does not import related API classes for abstract methods

Import quick fix processor does not import related API classes for abstract methods
-----------------------------------------------------------------------------------

                 Key: FELIX-1329
                 URL: https://issues.apache.org/jira/browse/FELIX-1329
             Project: Felix
          Issue Type: Bug
          Components: Sigil
            Reporter: David Savage
            Priority: Minor


package bar;

interface Bar {
}

package foo;

import bar.Bar;

interface Foo {
  void foo(Bar bar)
}

package impl;

import foo.Foo;

class FooImpl implements Foo {
  
}

should propose adding import for bar.Bar 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.