SYMBOL INDEX (51 symbols across 8 files) FILE: Application/src/main/java/com/example/android/common/logger/Log.java class Log (line 26) | public class Log { method getLogNode (line 43) | public static LogNode getLogNode() { method setLogNode (line 50) | public static void setLogNode(LogNode node) { method println (line 64) | public static void println(int priority, String tag, String msg, Throw... method println (line 78) | public static void println(int priority, String tag, String msg) { method v (line 90) | public static void v(String tag, String msg, Throwable tr) { method v (line 100) | public static void v(String tag, String msg) { method d (line 113) | public static void d(String tag, String msg, Throwable tr) { method d (line 123) | public static void d(String tag, String msg) { method i (line 135) | public static void i(String tag, String msg, Throwable tr) { method i (line 145) | public static void i(String tag, String msg) { method w (line 157) | public static void w(String tag, String msg, Throwable tr) { method w (line 167) | public static void w(String tag, String msg) { method w (line 178) | public static void w(String tag, Throwable tr) { method e (line 190) | public static void e(String tag, String msg, Throwable tr) { method e (line 200) | public static void e(String tag, String msg) { method wtf (line 212) | public static void wtf(String tag, String msg, Throwable tr) { method wtf (line 222) | public static void wtf(String tag, String msg) { method wtf (line 233) | public static void wtf(String tag, Throwable tr) { FILE: Application/src/main/java/com/example/android/common/logger/LogFragment.java class LogFragment (line 49) | public class LogFragment extends Fragment { method LogFragment (line 54) | public LogFragment() {} method inflateViews (line 56) | public View inflateViews() { method onCreateView (line 85) | @Override method getLogView (line 106) | public LogView getLogView() { FILE: Application/src/main/java/com/example/android/common/logger/LogNode.java type LogNode (line 27) | public interface LogNode { method println (line 37) | public void println(int priority, String tag, String msg, Throwable tr); FILE: Application/src/main/java/com/example/android/common/logger/LogView.java class LogView (line 25) | public class LogView extends TextView implements LogNode { method LogView (line 27) | public LogView(Context context) { method LogView (line 31) | public LogView(Context context, AttributeSet attrs) { method LogView (line 35) | public LogView(Context context, AttributeSet attrs, int defStyle) { method println (line 47) | @Override method getNext (line 108) | public LogNode getNext() { method setNext (line 112) | public void setNext(LogNode node) { method appendIfNotNull (line 125) | private StringBuilder appendIfNotNull(StringBuilder source, String add... method appendToLog (line 140) | public void appendToLog(String s) { FILE: Application/src/main/java/com/example/android/common/logger/LogWrapper.java class LogWrapper (line 24) | public class LogWrapper implements LogNode { method getNext (line 32) | public LogNode getNext() { method setNext (line 39) | public void setNext(LogNode node) { method println (line 51) | @Override FILE: Application/src/main/java/com/example/android/common/logger/MessageOnlyLogFilter.java class MessageOnlyLogFilter (line 23) | public class MessageOnlyLogFilter implements LogNode { method MessageOnlyLogFilter (line 32) | public MessageOnlyLogFilter(LogNode next) { method MessageOnlyLogFilter (line 36) | public MessageOnlyLogFilter() { method println (line 39) | @Override method getNext (line 49) | public LogNode getNext() { method setNext (line 56) | public void setNext(LogNode node) { FILE: Application/src/main/java/com/example/android/textlinkify/MainActivity.java class MainActivity (line 49) | public class MainActivity extends Activity { method onCreate (line 51) | @Override FILE: Application/tests/src/com/example/android/textlinkify/tests/SampleTests.java class SampleTests (line 25) | public class SampleTests extends ActivityInstrumentationTestCase2