Package com.subgraph.vega.ui.scanner.alerts

Examples of com.subgraph.vega.ui.scanner.alerts.ScanAlertView


public abstract class AbstractScanHandler extends AbstractHandler {

  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    final ScanAlertView scanAlertView = getScanAlertView(event);
    if(scanAlertView == null) {
      return null;
    }
    final IScan scan = scanAlertView.getSelection();
    if(scan != null) {
      runCommand(event, scan);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of com.subgraph.vega.ui.scanner.alerts.ScanAlertView

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.