Android Open Source - Team7-301Project Entry Singleton






From Project

Back to project page Team7-301Project.

License

The source code is released under:

Apache License

If you think the Android project Team7-301Project listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package ca.ualberta.cs.intent_singletons;
/*from www.j a  v a2s.com*/
import ca.ualberta.cs.models.Entry;

/**
 * Use this singleton as a global access point to one Entry. This is useful for sending
 * information about one Entry between activities.
 *
 * @author bbruner
 */
public class EntrySingleton 
{
  private static final EntrySingleton entrySingleton = new EntrySingleton();
  private Entry entry;
  
  private EntrySingleton()
  {
    super();
    this.entry = null;
  }
  
  /**
   * Get an instance of the singleton.
   * @return EntrySingleton
   */
  public static EntrySingleton getInstance()
  {
    return entrySingleton;
  }
  
  /**
   * Set the Entry of the singleton.
   * @param entry
   */
  public void setEntry(Entry entry)
  {
    this.entry = entry;
  }
  
  /**
   * Get the singleton's Entry.
   * @return Entry Will return null if a call to setEntry has not been made yet.
   */
  public Entry getEntry()
  {
    return this.entry;
  }
}




Java Source Code List

ca.ualberta.cs.controllers.AuthorController.java
ca.ualberta.cs.controllers.BrowseController.java
ca.ualberta.cs.controllers.ForumEntryController.java
ca.ualberta.cs.controllers.SearchController.java
ca.ualberta.cs.f14t07_application.Hits.java
ca.ualberta.cs.f14t07_application.LogoActivity.java
ca.ualberta.cs.f14t07_application.Post.java
ca.ualberta.cs.intent_singletons.BrowseRequestSingleton.java
ca.ualberta.cs.intent_singletons.ContextSingleton.java
ca.ualberta.cs.intent_singletons.EntrySingleton.java
ca.ualberta.cs.intent_singletons.ForumEntrySingleton.java
ca.ualberta.cs.models.Answer.java
ca.ualberta.cs.models.AuthorModel.java
ca.ualberta.cs.models.DataManager.java
ca.ualberta.cs.models.Entry.java
ca.ualberta.cs.models.ForumEntryList.java
ca.ualberta.cs.models.ForumEntry.java
ca.ualberta.cs.models.JsonDriver.java
ca.ualberta.cs.models.Observable.java
ca.ualberta.cs.models.Question.java
ca.ualberta.cs.models.Reply.java
ca.ualberta.cs.remote_server.NetworkChecker.java
ca.ualberta.cs.remote_server.SearchHit.java
ca.ualberta.cs.remote_server.SearchResponse.java
ca.ualberta.cs.remote_server.SimpleSearchCommand.java
ca.ualberta.cs.views.AnswerActivity.java
ca.ualberta.cs.views.AnswerListAdapter.java
ca.ualberta.cs.views.AskActivity.java
ca.ualberta.cs.views.BrowseActivity.java
ca.ualberta.cs.views.HelpActivity.java
ca.ualberta.cs.views.MainScreenActivity.java
ca.ualberta.cs.views.Observer.java
ca.ualberta.cs.views.QuestionActivity.java
ca.ualberta.cs.views.ReplyListAdapter.java