Skip to main content

Posts

Showing posts from June, 2017

Command Parameter RCP (Eclipse RCP)

Command Parameter RCP (Eclipse RCP) Open MANIFEST.MF file and right click on the Command and select "commandParameter" from "New". After creating "commandParameter", enter the details, like "id", "name" and make optional as "false". After adding the parameter in the command, in View (or Editor) at the time of calling the command set the parameter. Refer the following code to set the parameter at the time of execution. Code in View (or Editor): 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 ICommandService commandService = ( ICommandService ) getSite (). getService ( ICommandService . class ); IHandlerService handlerService = ( IHandlerService ) getSite (). getService ( IHandlerService . class ); // Enter the ID of the Command as the argument to getCommand() method in next line. Command sysoComm = commandService . getCommand ( "Re

Execute Command from View/Editor in Eclipse RCP

Execute Command from View/Editor in Eclipse RCP All Commands will be registered to IHandlerService. If we get the IHandlerService instance then we can call the desired command and then execute it. // Get the Instance of IHandlerService from View // Alternate way of getting site object is this also: // PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActivePart().getSite() // But we prefer  following so we get the appropriate IWorkbenchPartSite object. IHandlerService service = (IHandlerService) getSite().getService(IHandlerService.class);  try { service.executeCommand("ResumeParser.commands.sampleCommand", null);  } catch (ExecutionException e1) {  e1.printStackTrace();  } catch (NotDefinedException e1) {  e1.printStackTrace();  } catch (NotEnabledException e1) {  e1.printStackTrace();  } catch (NotHandledException e1) {  e1.printStackTrace();  }

Fie Dialog and Folder Dialog in Eclipse RCP

Fie Dialog and Folder Dialog in Eclipse RCP File Dialog in Eclipse: - This will only allow you to select the files in the Dialog Box FileDialog fileDialog = new FileDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell()); // Following line is Optional if you want to, enable filter for specific files. //fileDialog.setFilterExtensions(new String[] {"*.txt","*.csv"}); String filePath = fileDialog.open(); System.out.println(filePath); Folder Dialog in Eclipse: - This will allow you to select the folder in the Dialog box. DirectoryDialog directoryDialog = new DirectoryDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell()); // Optional - if you want to open specific path //directoryDialog.setFilterPath("/home/hv185014/junk/"); String directoryPath = directoryDialog.open(); System.out.println(directoryPath);