com.ats.element.StructDebugDescription 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.element;
import java.util.UUID;
public class StructDebugDescription {
protected Integer level;
protected UUID uuid;
protected String content;
public StructDebugDescription(Integer level, String content) {
this.uuid = UUID.randomUUID();
this.level = level;
this.content = content;
}
public Integer getLevel() {
return this.level;
}
public UUID getUuid() {
return this.uuid;
}
public String getContent() {
return this.content;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy