Package net.rim.device.api.ui.component

Examples of net.rim.device.api.ui.component.ListFieldCallback


  /**
   * {@inheritDoc}
   */
  protected void makeContextMenu(ContextMenu contextMenu) {
    super.makeContextMenu(contextMenu);
    ListFieldCallback callback = getCallback();
    final int selectedIndex = getSelectedIndex();
    final PinInfo item = (PinInfo) callback.get(this, selectedIndex);
    if (item.mIsHotp) {
      MenuItem hotpItem = new MenuItem(sResources, COUNTER_PIN, 0, 0) {
        public void run() {
          AuthenticatorScreen screen = (AuthenticatorScreen) getScreen();
          String user = item.mUser;
View Full Code Here

TOP

Related Classes of net.rim.device.api.ui.component.ListFieldCallback

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.