SYMBOL INDEX (48 symbols across 4 files) FILE: hugo-example/src/main/java/com/example/hugo/HugoActivity.java class HugoActivity (line 10) | public class HugoActivity extends Activity { method onCreate (line 11) | @Override protected void onCreate(Bundle savedInstanceState) { method printArgs (line 30) | @DebugLog method fibonacci (line 37) | @DebugLog method startSleepyThread (line 49) | private void startSleepyThread() { class Greeter (line 64) | @DebugLog method Greeter (line 68) | Greeter(String name) { method sayHello (line 72) | private String sayHello() { class Charmer (line 77) | @DebugLog method Charmer (line 81) | private Charmer(String name) { method askHowAreYou (line 85) | public String askHowAreYou() { FILE: hugo-runtime/src/main/java/hugo/weaving/internal/Hugo.java class Hugo (line 19) | @Aspect method withinAnnotatedClass (line 23) | @Pointcut("within(@hugo.weaving.DebugLog *)") method methodInsideAnnotatedType (line 26) | @Pointcut("execution(!synthetic * *(..)) && withinAnnotatedClass()") method constructorInsideAnnotatedType (line 29) | @Pointcut("execution(!synthetic *.new(..)) && withinAnnotatedClass()") method method (line 32) | @Pointcut("execution(@hugo.weaving.DebugLog * *(..)) || methodInsideAn... method constructor (line 35) | @Pointcut("execution(@hugo.weaving.DebugLog *.new(..)) || constructorI... method setEnabled (line 38) | public static void setEnabled(boolean enabled) { method logAndExecute (line 42) | @Around("method() || constructor()") method enterMethod (line 56) | private static void enterMethod(JoinPoint joinPoint) { method exitMethod (line 89) | private static void exitMethod(JoinPoint joinPoint, Object result, lon... method asTag (line 117) | private static String asTag(Class cls) { FILE: hugo-runtime/src/main/java/hugo/weaving/internal/Strings.java class Strings (line 8) | final class Strings { method toString (line 9) | static String toString(Object obj) { method printableToString (line 28) | private static String printableToString(String string) { method arrayToString (line 69) | private static String arrayToString(Class cls, Object obj) { method byteArrayToString (line 98) | private static String byteArrayToString(byte[] bytes) { method byteToString (line 109) | private static String byteToString(Byte b) { method arrayToString (line 116) | private static String arrayToString(Object[] array) { method arrayToString (line 122) | private static void arrayToString(Object[] array, StringBuilder builde... method Strings (line 156) | private Strings() { FILE: hugo-runtime/src/test/java/hugo/weaving/internal/StringsTest.java class StringsTest (line 8) | public final class StringsTest { method nullValue (line 9) | @Test public void nullValue() { method string (line 13) | @Test public void string() { method unprintableCharacters (line 17) | @Test public void unprintableCharacters() { method objects (line 22) | @Test public void objects() { method byteValue (line 26) | @Test public void byteValue() { method byteArrays (line 33) | @Test public void byteArrays() { method shortArrays (line 40) | @Test public void shortArrays() { method charArrays (line 47) | @Test public void charArrays() { method intArrays (line 54) | @Test public void intArrays() { method longArrays (line 61) | @Test public void longArrays() { method floatArrays (line 68) | @Test public void floatArrays() { method doubleArrays (line 75) | @Test public void doubleArrays() { method booleanArrays (line 82) | @Test public void booleanArrays() { method objectArray (line 89) | @Test public void objectArray() { method deepObjectArray (line 94) | @Test public void deepObjectArray() { method recursiveObjectArray (line 99) | @Test public void recursiveObjectArray() {