Search code examples
linuxeclipseeclipse-3.2

Eclipse 3.2.2 content assist not finding classes in the project


In Eclipse 3.2.2 on Linux content assist is not finding classes within the same project. Upgrading above 3.2 is not an option as SWT is not available above 3.2 for Solaris.

I have seen suggestions to clean the workspace, reopen the workspace, run eclipse with the -clean command, none of which has worked.


Solution

  • Thanks for your last comment it worked partially. If there is any kind of errors, the content assist wont work. Once fixed, it partially works. I say partially because, there appear to be a bug, when I do Perl EPIC inheritance ex:

    package FG::CatalogueFichier;
    use FG::Catalogue;
    our @ISA = qw(FG::Catalogue);
    use strict;
    

    , the inheritted subroutines are not displayed in the content assist.