tools.text.IgnoredSpelling Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testing-tools Show documentation
Show all versions of testing-tools Show documentation
Tools for supporting automation testing.
package tools.text;
import java.util.List;
public class IgnoredSpelling {
private List wordsToIgnore;
private List rulesToIgnore;
public IgnoredSpelling(List wordsToIgnore, List rulesToIgnore) {
this.wordsToIgnore = wordsToIgnore;
this.rulesToIgnore = rulesToIgnore;
}
public List getWordsToIgnore() {
return wordsToIgnore;
}
public List getRulesToIgnore() {
return rulesToIgnore;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy