org.testng.xml.XmlScript Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.xml;
import org.testng.xml.dom.TagContent;
public class XmlScript {
private String m_language;
private String m_script;
public void setLanguage(String language) {
m_language = language;
}
@TagContent(name = "script")
public void setScript(String script) {
m_script = script;
}
public String getScript() {
return m_script;
}
public String getLanguage() {
return m_language;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy