@wcardinal/wcardinal-geditor
Version:
WebGL-based graphic editor, tester and viewer for supervisory systems
17 lines • 783 B
JavaScript
import { __extends } from "tslib";
import { ECommandShapePropertySimple } from "./e-command-shape-property-simple";
var ECommandShapePropertyTitle = /** @class */ (function (_super) {
__extends(ECommandShapePropertyTitle, _super);
function ECommandShapePropertyTitle() {
return _super !== null && _super.apply(this, arguments) || this;
}
ECommandShapePropertyTitle.prototype.getProperty = function (shape, capability) {
return shape.title;
};
ECommandShapePropertyTitle.prototype.setProperty = function (shape, capability, property) {
shape.title = property;
};
return ECommandShapePropertyTitle;
}(ECommandShapePropertySimple));
export { ECommandShapePropertyTitle };
//# sourceMappingURL=e-command-shape-property-title.js.map