ButtonNotebook.java :  » App » gappslauncher » es » kix2902 » gapps » buttons » Android Open Source

Android Open Source » App » gappslauncher 
gappslauncher » es » kix2902 » gapps » buttons » ButtonNotebook.java
package es.kix2902.gapps.buttons;

import es.kix2902.gapps.Globals;
import es.kix2902.gapps.R;

public class ButtonNotebook extends WidgetButton {

  static ButtonNotebook ownButton=null;

  public static ButtonNotebook getInstance() {
    if (ownButton==null)
    {
      ownButton = new ButtonNotebook();
    }

    return ownButton;
  }

  @Override
  void initButton() {
    buttonID = Globals.BUTTON_NOTEBOOK;
    preferenceName = Globals.PREF_NOTEBOOK;
    Icon = R.drawable.notebook;
  }
}
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.