How do I write the getDB() function and use it properly?
Here is a code snippet of my App Object:
public class MyApp extends UiApplication {
    private static PersistentObject m_oStore;
    private static MyBigObjectOfStorage m_oDB;
    static {
        store = PersistentStore.getPersistentObject(0xa1a569278238dad2L);
    }
    public static void main(String[] args) {
        MyApp theApp = new MyApp();
        theApp.enterEventDispatcher();
    }
    public MyApp() {
        pushScreen(new MyMainScreen());
    }
    // Is this correct?  Will it return a copy of m_oDB or a reference of m_oDB?
    public MyBigObjectOfStorage getDB() {
        return m_oDB;  // returns a reference
    }
}