ts-jsdk
Version:
TypeScript implementation of the Java platform
23 lines • 477 B
JavaScript
import { Component } from "./Component";
export class Container extends Component {
constructor() {
super(...arguments);
this.enabled = true;
this.visible = true;
}
isVisible() {
return this.visible;
}
setVisible(value) {
this.visible = value;
}
setEnabled(b) {
this.enabled = b;
}
isEnabled() {
return this.enabled;
}
validate() {
}
}
//# sourceMappingURL=Container.js.map