The current version of the Parser doesn't automatically
load those classes of Java API that are defined in the
constraints (signatures) of the dependencies.
The problem is created easily when the analyzed class
inherits from it's Java API parent a method that
utilizes an another class of Java API as argument
(=parameter).
For example, visualization..ImagePanel inherits from
it's second-order parent (JComponent) the method
"setBorder(javax.swing.border.Border)",
which utilizes class Border as argument. In this case,
Parser automatically loads the JComponent class, but
NOT the Border class.
Suggested-Fix:
1. Quick fix --> given rt.jar as input jar.
2. Real fix --> Re-design the whole routines related to
Java API classes.