KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > iTunes > def > IITWindow


1 // GENERATED. DO NOT MODIFY
2
package iTunes.def;
3
4 import com4j.*;
5
6 /**
7  * IITWindow Interface
8  */

9 @IID("{370D7BE0-3A89-4A42-B902-C75FC138BE09}")
10 public interface IITWindow extends Com4jObject {
11     /**
12      * The title of the window.
13      */

14     @VTID(7)
15     java.lang.String JavaDoc name();
16
17     /**
18      * The window kind.
19      */

20     @VTID(8)
21     ITWindowKind kind();
22
23     /**
24      * True if the window is visible. Note that the main browser window cannot be hidden.
25      */

26     @VTID(9)
27     boolean visible();
28
29     /**
30      * True if the window is visible. Note that the main browser window cannot be hidden.
31      */

32     @VTID(10)
33     void visible(
34         boolean isVisible);
35
36     /**
37      * True if the window is resizable.
38      */

39     @VTID(11)
40     boolean resizable();
41
42     /**
43      * True if the window is minimized.
44      */

45     @VTID(12)
46     boolean minimized();
47
48     /**
49      * True if the window is minimized.
50      */

51     @VTID(13)
52     void minimized(
53         boolean isMinimized);
54
55     /**
56      * True if the window is maximizable.
57      */

58     @VTID(14)
59     boolean maximizable();
60
61     /**
62      * True if the window is maximized.
63      */

64     @VTID(15)
65     boolean maximized();
66
67     /**
68      * True if the window is maximized.
69      */

70     @VTID(16)
71     void maximized(
72         boolean isMaximized);
73
74     /**
75      * True if the window is zoomable.
76      */

77     @VTID(17)
78     boolean zoomable();
79
80     /**
81      * True if the window is zoomed.
82      */

83     @VTID(18)
84     boolean zoomed();
85
86     /**
87      * True if the window is zoomed.
88      */

89     @VTID(19)
90     void zoomed(
91         boolean isZoomed);
92
93     /**
94      * The screen coordinate of the top edge of the window.
95      */

96     @VTID(20)
97     int top();
98
99     /**
100      * The screen coordinate of the top edge of the window.
101      */

102     @VTID(21)
103     void top(
104         int top);
105
106     /**
107      * The screen coordinate of the left edge of the window.
108      */

109     @VTID(22)
110     int left();
111
112     /**
113      * The screen coordinate of the left edge of the window.
114      */

115     @VTID(23)
116     void left(
117         int left);
118
119     /**
120      * The screen coordinate of the bottom edge of the window.
121      */

122     @VTID(24)
123     int bottom();
124
125     /**
126      * The screen coordinate of the bottom edge of the window.
127      */

128     @VTID(25)
129     void bottom(
130         int bottom);
131
132     /**
133      * The screen coordinate of the right edge of the window.
134      */

135     @VTID(26)
136     int right();
137
138     /**
139      * The screen coordinate of the right edge of the window.
140      */

141     @VTID(27)
142     void right(
143         int right);
144
145     /**
146      * The width of the window.
147      */

148     @VTID(28)
149     int width();
150
151     /**
152      * The width of the window.
153      */

154     @VTID(29)
155     void width(
156         int width);
157
158     /**
159      * The height of the window.
160      */

161     @VTID(30)
162     int height();
163
164     /**
165      * The height of the window.
166      */

167     @VTID(31)
168     void height(
169         int height);
170
171 }
172
Popular Tags