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

org.testng.xml.XmlScript Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.xml;

import org.testng.xml.dom.TagContent;

public class XmlScript {

  private String language;
  private String expression;

  public void setLanguage(String language) {
    this.language = language;
  }

  @TagContent(name = "script")
  public void setExpression(String expression) {
    this.expression = expression;
  }

  public String getExpression() {
    return expression;
  }

  public String getLanguage() {
    return language;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy