Package net.sourceforge.syncyoursecrets.gui.rcp.model.list

Examples of net.sourceforge.syncyoursecrets.gui.rcp.model.list.PWListContentProvider.removeEntry()


    ISelection selection = viewer.getSelection();
    if (selection instanceof IStructuredSelection) {
      Object obj = ((IStructuredSelection) selection).getFirstElement();
      if (obj != null) {
        logger.debug("Removing 1 Object");
        contentProvider.removeEntry(obj);
      }

    } else {
      // error handling: Unexpected case no IStructuredSelection
      String msg = "Selected Element is not an instance of IStructuredSelection";
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.