static private Vector addImportLines (SymtabEntry entry, Vector importTypes, short type)
{
Vector importList = new Vector ();
if (entry instanceof ConstEntry)
{
ConstEntry c = (ConstEntry)entry;
Object cvalue = c.value ().value ();
if (cvalue instanceof ConstEntry && importTypes.contains (cvalue))
addTo (importList, ((ConstEntry)cvalue).name ());
}
else if (entry instanceof ValueEntry && type == HelperFile) // <d59512>
{