Closed GoogleCodeExporter closed 8 years ago
Hi,
you can get the source of an entire class:
In [3]: d.CLASS_Ltests_androguard_TestIfs.source()
// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: packimports(3)
// Source File Name: TestIfs.java
package tests.androguard;
import java.io.PrintStream;
public class TestIfs
{
public TestIfs()
{
}
public static int testIF(int i)
{
int j;
if(i > 0)
j = i * 2;
else
j = i + 2;
return j;
}
public static int testIF2(int i)
{
int j;
if(i > 0)
j = i * 2;
else
j = i + 2;
return j;
}
....
Original comment by anthony....@gmail.com
on 27 Jun 2012 at 7:14
Original issue reported on code.google.com by
liadalex82@gmail.com
on 26 Jun 2012 at 4:21