UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

23 lines 763 B
import { JComponent } from "./JComponent"; export var JSplitPaneDirection; (function (JSplitPaneDirection) { JSplitPaneDirection[JSplitPaneDirection["HORIZONTAL_SPLIT"] = 0] = "HORIZONTAL_SPLIT"; })(JSplitPaneDirection || (JSplitPaneDirection = {})); export class JSplitPane extends JComponent { constructor(_orientation, _leftComponent, _rightComponent) { super(); this._orientation = _orientation; this._leftComponent = _leftComponent; this._rightComponent = _rightComponent; } getOrientation() { return this._orientation; } getLeftComponent() { return this._leftComponent; } getRightComponent() { return this._rightComponent; } } //# sourceMappingURL=JSplitPane.js.map