Package org.parosproxy.paros.core.spider

Examples of org.parosproxy.paros.core.spider.SpiderParam


      // no validation needed
  }
 
  public void saveParam (Object obj) throws Exception {
      OptionsParam options = (OptionsParam) obj;
      SpiderParam param = (SpiderParam) options.getParamSet(SpiderParam.class);
      param.setMaxDepth(getSliderMaxDepth().getValue());
      param.setThread(getSliderThreads().getValue());
        param.setSkipURL(getTxtSkipURL().getText());
        param.setScope(getTxtScope().getText());
        param.setPostForm(getChkPostForm().isSelected());
  }
View Full Code Here


   *  
   * @return org.parosproxy.paros.core.spider.SpiderParam 
   */   
  private SpiderParam getSpiderParam() {
    if (spiderParam == null) {
      spiderParam = new SpiderParam();
    }
    return spiderParam;
  }
View Full Code Here

    return panelSpider;
  }
  public void initParam(Object obj) {
      OptionsParam options = (OptionsParam) obj;
     
      SpiderParam param = (SpiderParam) options.getParamSet(SpiderParam.class);
      getSliderMaxDepth().setValue(param.getMaxDepth());
      getSliderThreads().setValue(param.getThread());
        getTxtSkipURL().setText(param.getSkipURL());
      getTxtScope().setText(param.getScope());
        getChkPostForm().setSelected(param.isPostForm());
  }
View Full Code Here

   *
   * @return org.parosproxy.paros.core.spider.SpiderParam
   */
  private SpiderParam getSpiderParam() {
    if (spiderParam == null) {
      spiderParam = new SpiderParam();
    }
    return spiderParam;
  }
View Full Code Here

  }

  public void initParam(Object obj) {
    OptionsParam options = (OptionsParam) obj;

    SpiderParam param = (SpiderParam) options.getParamSet(SpiderParam.class);
    getSliderMaxDepth().setValue(param.getMaxDepth());
    getSliderThreads().setValue(param.getThread());
    getTxtSkipURL().setText(param.getSkipURL());
    getTxtScope().setText(param.getScope());
    getChkPostForm().setSelected(param.isPostForm());
  }
View Full Code Here

    // no validation needed
  }

  public void saveParam(Object obj) throws Exception {
    OptionsParam options = (OptionsParam) obj;
    SpiderParam param = (SpiderParam) options.getParamSet(SpiderParam.class);
    param.setMaxDepth(getSliderMaxDepth().getValue());
    param.setThread(getSliderThreads().getValue());
    param.setSkipURL(getTxtSkipURL().getText());
    param.setScope(getTxtScope().getText());
    param.setPostForm(getChkPostForm().isSelected());
  }
View Full Code Here

TOP

Related Classes of org.parosproxy.paros.core.spider.SpiderParam

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.