use of gaiasky.util.validator.FolderValidator in project gaiasky by langurmonkey.
the class NewBookmarkFolderDialog method build.
public void build() {
// Info message
IValidator val = new FolderValidator();
input = new OwnTextField("", skin, val);
input.setWidth(480f);
input.setMessageText("New folder");
content.add(input).top().left().expand().row();
}
Aggregations