FileDocCategorySizeDatePackage
DdmUiPreferences.javaAPI DocAndroid 1.5 API2289Wed May 06 22:41:08 BST 2009com.android.ddmuilib

DdmUiPreferences

public final class DdmUiPreferences extends Object
Preference entry point for ddmuilib. Allows the lib to access a preference store (org.eclipse.jface.preference.IPreferenceStore) defined by the application that includes the lib.

Fields Summary
public static final int
DEFAULT_THREAD_REFRESH_INTERVAL
private static int
sThreadRefreshInterval
private static org.eclipse.jface.preference.IPreferenceStore
mStore
private static String
sSymbolLocation
private static String
sAddr2LineLocation
private static String
sTraceviewLocation
Constructors Summary
Methods Summary
static java.lang.StringgetAddr2Line()

        return sAddr2LineLocation;
    
public static org.eclipse.jface.preference.IPreferenceStoregetStore()

        return mStore;
    
static java.lang.StringgetSymbolDirectory()

        return sSymbolLocation;
    
public static intgetThreadRefreshInterval()

        return sThreadRefreshInterval;
    
public static java.lang.StringgetTraceview()

        return sTraceviewLocation;
    
public static voidsetAddr2LineLocation(java.lang.String location)

        sAddr2LineLocation = location;
    
public static voidsetStore(org.eclipse.jface.preference.IPreferenceStore store)

 //$NON-NLS-1$

         
        mStore = store;
    
public static voidsetSymbolsLocation(java.lang.String location)

        sSymbolLocation = location;
    
public static voidsetThreadRefreshInterval(int port)

        sThreadRefreshInterval = port;
    
public static voidsetTraceviewLocation(java.lang.String location)

        sTraceviewLocation = location;