@deafwave/osrs-botmaker-types 0.7.23 → 0.7.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
/// <reference path="./io/FileWriter.d.ts" />
|
|
38
38
|
/// <reference path="./swing/Border.d.ts" />
|
|
39
39
|
/// <reference path="./swing/BorderFactory.d.ts" />
|
|
40
|
+
/// <reference path="./swing/Box.d.ts" />
|
|
40
41
|
/// <reference path="./swing/BoxLayout.d.ts" />
|
|
41
42
|
/// <reference path="./swing/createToggleboxDropdownPanel.d.ts" />
|
|
42
43
|
/// <reference path="./swing/Component.d.ts" />
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare namespace javax.swing {
|
|
2
|
+
export class Box extends JComponent {
|
|
3
|
+
constructor(axis: number);
|
|
4
|
+
|
|
5
|
+
static createHorizontalBox(): javax.swing.Box;
|
|
6
|
+
static createVerticalBox(): javax.swing.Box;
|
|
7
|
+
static createRigidArea(dimension: java.awt.Dimension): java.awt.Component;
|
|
8
|
+
static createHorizontalStrut(width: number): java.awt.Component;
|
|
9
|
+
static createVerticalStrut(height: number): java.awt.Component;
|
|
10
|
+
static createGlue(): java.awt.Component;
|
|
11
|
+
static createHorizontalGlue(): java.awt.Component;
|
|
12
|
+
static createVerticalGlue(): java.awt.Component;
|
|
13
|
+
|
|
14
|
+
getAccessibleContext(): javax.accessibility.AccessibleContext;
|
|
15
|
+
paintComponent(g: java.awt.Graphics): void;
|
|
16
|
+
setLayout(l: java.awt.LayoutManager): void;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
type Box = javax.swing.Box;
|
|
@@ -7,6 +7,7 @@ declare namespace javax.swing {
|
|
|
7
7
|
setEditable(editable: boolean): void;
|
|
8
8
|
isEditable(): boolean;
|
|
9
9
|
setCaretColor(color: java.awt.Color): void;
|
|
10
|
+
getCaretColor(): java.awt.Color;
|
|
10
11
|
setLineWrap(wrap: boolean): void;
|
|
11
12
|
getLineWrap(): boolean;
|
|
12
13
|
setWrapStyleWord(word: boolean): void;
|