source: trunk/gcc/libjava/javax/swing/JCheckBoxMenuItem.java

Last change on this file was 1389, checked in by bird, 21 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 6.2 KB
Line 
1/* JCheckBoxMenuItem.java --
2 Copyright (C) 2002 Free Software Foundation, Inc.
3
4This file is part of GNU Classpath.
5
6GNU Classpath is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Classpath is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Classpath; see the file COPYING. If not, write to the
18Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
1902111-1307 USA.
20
21Linking this library statically or dynamically with other modules is
22making a combined work based on this library. Thus, the terms and
23conditions of the GNU General Public License cover the whole
24combination.
25
26As a special exception, the copyright holders of this library give you
27permission to link this library with independent modules to produce an
28executable, regardless of the license terms of these independent
29modules, and to copy and distribute the resulting executable under
30terms of your choice, provided that you also meet, for each linked
31independent module, the terms and conditions of the license of that
32module. An independent module is a module which is not derived from
33or based on this library. If you modify this library, you may extend
34this exception to your version of the library, but you are not
35obligated to do so. If you do not wish to do so, delete this
36exception statement from your version. */
37
38package javax.swing;
39
40// Imports
41import java.io.*;
42import javax.accessibility.*;
43
44/**
45 * JCheckBoxMenuItem
46 * @author Andrew Selkirk
47 * @version 1.0
48 */
49public class JCheckBoxMenuItem extends JMenuItem implements SwingConstants, Accessible {
50
51 //-------------------------------------------------------------
52 // Classes ----------------------------------------------------
53 //-------------------------------------------------------------
54
55 /**
56 * AccessibleJCheckBoxMenuItem
57 */
58 protected class AccessibleJCheckBoxMenuItem extends AccessibleJMenuItem {
59
60 //-------------------------------------------------------------
61 // Variables --------------------------------------------------
62 //-------------------------------------------------------------
63
64
65 //-------------------------------------------------------------
66 // Initialization ---------------------------------------------
67 //-------------------------------------------------------------
68
69 /**
70 * Constructor AccessibleJCheckBoxMenuItem
71 * @param component TODO
72 */
73 protected AccessibleJCheckBoxMenuItem(JCheckBoxMenuItem component) {
74 super(component);
75 // TODO
76 } // AccessibleJCheckBoxMenuItem()
77
78
79 //-------------------------------------------------------------
80 // Methods ----------------------------------------------------
81 //-------------------------------------------------------------
82
83 /**
84 * getAccessibleRole
85 * @returns AccessibleRole
86 */
87 public AccessibleRole getAccessibleRole() {
88 return AccessibleRole.CHECK_BOX;
89 } // getAccessibleRole()
90
91
92 } // AccessibleJCheckBoxMenuItem
93
94
95 //-------------------------------------------------------------
96 // Variables --------------------------------------------------
97 //-------------------------------------------------------------
98
99 /**
100 * uiClassID
101 */
102 private static final String uiClassID = "CheckBoxMenuItemUI";
103
104
105 //-------------------------------------------------------------
106 // Initialization ---------------------------------------------
107 //-------------------------------------------------------------
108
109 /**
110 * Constructor JCheckBoxMenuItem
111 */
112 public JCheckBoxMenuItem() {
113 // TODO
114 } // JCheckBoxMenuItem()
115
116 /**
117 * Constructor JCheckBoxMenuItem
118 * @param icon TODO
119 */
120 public JCheckBoxMenuItem(Icon icon) {
121 // TODO
122 } // JCheckBoxMenuItem()
123
124 /**
125 * Constructor JCheckBoxMenuItem
126 * @param text TODO
127 */
128 public JCheckBoxMenuItem(String text) {
129 // TODO
130 } // JCheckBoxMenuItem()
131
132 /**
133 * Constructor JCheckBoxMenuItem
134 * @param action TODO
135 */
136 public JCheckBoxMenuItem(Action action) {
137 // TODO
138 } // JCheckBoxMenuItem()
139
140 /**
141 * Constructor JCheckBoxMenuItem
142 * @param text TODO
143 * @param icon TODO
144 */
145 public JCheckBoxMenuItem(String text, Icon icon) {
146 // TODO
147 } // JCheckBoxMenuItem()
148
149 /**
150 * Constructor JCheckBoxMenuItem
151 * @param text TODO
152 * @param state TODO
153 */
154 public JCheckBoxMenuItem(String text, boolean state) {
155 // TODO
156 } // JCheckBoxMenuItem()
157
158 /**
159 * Constructor JCheckBoxMenuItem
160 * @param text TODO
161 * @param icon TODO
162 * @param state TODO
163 */
164 public JCheckBoxMenuItem(String text, Icon icon, boolean state) {
165 // TODO
166 } // JCheckBoxMenuItem()
167
168
169 //-------------------------------------------------------------
170 // Methods ----------------------------------------------------
171 //-------------------------------------------------------------
172
173 /**
174 * writeObject
175 * @param stream TODO
176 * @exception IOException TODO
177 */
178 private void writeObject(ObjectOutputStream stream) throws IOException {
179 // TODO
180 } // writeObject()
181
182 /**
183 * getUIClassID
184 * @returns String
185 */
186 public String getUIClassID() {
187 return uiClassID;
188 } // getUIClassID()
189
190 /**
191 * getState
192 * @returns boolean
193 */
194 public boolean getState() {
195 return false; // TODO
196 } // getState()
197
198 /**
199 * setState
200 * @param state TODO
201 */
202 public synchronized void setState(boolean state) {
203 // TODO
204 } // setState()
205
206 /**
207 * getSelectedObjects
208 * @returns Object[]
209 */
210 public Object[] getSelectedObjects() {
211 return null; // TODO
212 } // getSelectedObjects()
213
214 /**
215 * requestFocus
216 */
217 public void requestFocus() {
218 // TODO
219 } // requestFocus()
220
221 /**
222 * paramString
223 * @returns String
224 */
225 protected String paramString() {
226 return null; // TODO
227 } // paramString()
228
229 /**
230 * getAccessibleContext
231 * @returns AccessibleContext
232 */
233 public AccessibleContext getAccessibleContext() {
234 if (accessibleContext == null) {
235 accessibleContext = new AccessibleJCheckBoxMenuItem(this);
236 } // if
237 return accessibleContext;
238 } // getAccessibleContext()
239
240
241} // JCheckBoxMenuItem
Note: See TracBrowser for help on using the repository browser.