Community
Participate
Working Groups
private void copySignatures(List list, IType[] types)
{
for (int i = 0; i < types.length; i++)
if (types != null)
final IType type_ = types[i];
final String signature = TypeUtil.getSignature(type_);
if (signature != null)
list.add(signature);
}