Examples of focusOnRecord()


Examples of com.subgraph.vega.ui.http.request.view.HttpRequestView.focusOnRecord()

      IViewPart view = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(HttpRequestView.ID, ScannerPerspectiveFactory.HTTP_VIEW_SECONDARY_ID, IWorkbenchPage.VIEW_VISIBLE);
      if(view instanceof HttpRequestView && arguments[0] instanceof String) {
        final HttpRequestView requestView = (HttpRequestView) view;
        try {
          long id = Long.parseLong((String) arguments[0]);
          requestView.focusOnRecord(id);
        } catch (NumberFormatException e) {
         
        }
      }
    } catch (PartInitException e) {
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.