Application.java :  » Web » phonemapper » com » androidcourse » phonemapper » controller » Android Open Source

Android Open Source » Web » phonemapper 
phonemapper » com » androidcourse » phonemapper » controller » Application.java
package com.androidcourse.phonemapper.controller;

import android.content.Context;

public class Application {
  
  private  static Context mContext;

  /**
   * @param mContext the mContext to set
   */
  public static void setContext(Context mContext) {
    Application.mContext = mContext;
  }

  /**
   * @return the mContext
   */
  public static Context getContext() {
    return mContext;
  }
  

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.