com.ats.tools.report.models.Channel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ats-automated-testing Show documentation
Show all versions of ats-automated-testing Show documentation
Code generator library to create and execute GUI automated tests
The newest version!
package com.ats.tools.report.models;
public class Channel {
private String name;
private Bound bound;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Bound getBound() {
return bound;
}
public void setBound(Bound bound) {
this.bound = bound;
}
@Override
public String toString() {
return "Channel{" +
"name='" + name + '\'' +
", bound=" + bound +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy