All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.diff.model.script.ScriptCompareConfig Maven / Gradle / Ivy

There is a newer version: 0.2.15
Show newest version
package com.arextest.diff.model.script;

import java.util.List;

public class ScriptCompareConfig {

  List nodePath;
  ScriptMethod scriptMethod;

  public ScriptCompareConfig() {
  }

  public ScriptCompareConfig(List nodePath, ScriptMethod scriptMethod) {
    this.nodePath = nodePath;
    this.scriptMethod = scriptMethod;
  }

  public List getNodePath() {
    return nodePath;
  }

  public void setNodePath(List nodePath) {
    this.nodePath = nodePath;
  }

  public ScriptMethod getScriptMethod() {
    return scriptMethod;
  }

  public void setScriptMethod(
      ScriptMethod scriptMethod) {
    this.scriptMethod = scriptMethod;
  }

  public static class ScriptMethod {

    private String functionName;
    private String functionArgs;

    public ScriptMethod() {
    }

    public ScriptMethod(String functionName, String functionArgs) {
      this.functionName = functionName;
      this.functionArgs = functionArgs;
    }

    public String getFunctionName() {
      return functionName;
    }

    public void setFunctionName(String functionName) {
      this.functionName = functionName;
    }

    public String getFunctionArgs() {
      return functionArgs;
    }

    public void setFunctionArgs(String functionArgs) {
      this.functionArgs = functionArgs;
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy