|
From: <no...@so...> - 2001-04-29 18:41:54
|
Bugs item #419993, was updated on 2001-04-29 11:41 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=100588&aid=419993&group_id=588 Category: plugins Group: None Status: Open Resolution: None Priority: 2 Submitted By: Matija Kejzar (mkejzar) Assigned to: Nobody/Anonymous (nobody) Summary: CodeAid(0.3.2) ignoring interfaces Initial Comment: This seems to be a minor bug detected in the latest version (0.3.2) of CodeAid plugin. It is best described by an example: java.util.List myList = new java.util.ArrayList(); In the preceding line, myList is an ArrayList object cast to List, which is an interface, not a class. The normal behaviour for the method completion popup would be to display all the methods from the List interface. Instead it only displays the methods inhernited from the Object class. My guess is that unusual behaviour has something to do with List being an interface, not a regular class. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=100588&aid=419993&group_id=588 |