{
Log.debug(TAG + "-ref", "Processing class: " + jClassName);
}
// We now need to mark up the code with retains/releases.
ReferenceCounting refCounting= new ReferenceCounting();
for (Element e : methods)
{
if (REF_LOGGING)
{
Log.debug(TAG + "-ref", "Processing method: " + e.getAttributeValue("name"));
}
try
{
refCounting.process(e);
}
catch (ReferenceCountingException ex)
{
Log.error(TAG + "-ref", "Processing method: " + e.getAttributeValue("name"));
Log.error(TAG + "-ref", "Failed while processing: " + ex.getMessage() + " in " + jClassName);