OSDN Git Service

* javax/naming/CompoundName.java (CompoundName): Don't check for
[pf3gnuchains/gcc-fork.git] / libjava / javax / swing / CellRendererPane.java
1 /* CellRendererPane.java --
2    Copyright (C) 2002, 2004 Free Software Foundation, Inc.
3
4 This file is part of GNU Classpath.
5
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING.  If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
20
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library.  Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
25
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module.  An independent module is a module which is not derived from
33 or based on this library.  If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so.  If you do not wish to do so, delete this
36 exception statement from your version. */
37
38 package javax.swing;
39
40 import java.awt.Component;
41 import java.awt.Container;
42 import java.awt.Graphics;
43 import java.awt.Rectangle;
44 import java.io.IOException;
45 import java.io.ObjectOutputStream;
46 import javax.accessibility.Accessible;
47 import javax.accessibility.AccessibleContext;
48 import javax.accessibility.AccessibleRole;
49
50 /**
51  * CellRendererPane
52  * @author      Andrew Selkirk
53  * @version     1.0
54  */
55 public class CellRendererPane extends Container implements Accessible
56 {
57   private static final long serialVersionUID = -7642183829532984273L;
58
59   /**
60    * AccessibleCellRendererPane
61    */
62   protected class AccessibleCellRendererPane extends AccessibleAWTContainer
63   {
64     private static final long serialVersionUID = -8981090083147391074L;
65
66     /**
67      * Constructor AccessibleCellRendererPane
68      * @param component TODO
69      */
70     protected AccessibleCellRendererPane()
71     {
72     }
73
74     /**
75      * getAccessibleRole
76      * @returns AccessibleRole
77      */
78     public AccessibleRole getAccessibleRole()
79     {
80       return AccessibleRole.PANEL;
81     }
82   }
83
84         /**
85          * accessibleContext
86          */
87         protected AccessibleContext accessibleContext = null;
88
89
90         //-------------------------------------------------------------
91         // Initialization ---------------------------------------------
92         //-------------------------------------------------------------
93
94         /**
95          * Constructor CellRendererPane
96          */
97         public CellRendererPane() {
98                 // TODO
99         } // CellRendererPane()
100
101
102         //-------------------------------------------------------------
103         // Methods ----------------------------------------------------
104         //-------------------------------------------------------------
105
106         /**
107          * writeObject
108          * @param stream TODO
109          * @exception IOException TODO
110          */
111         private void writeObject(ObjectOutputStream stream) throws IOException {
112                 // TODO
113         } // writeObject()
114
115         /**
116          * update
117          * @param graphics TODO
118          */
119         public void update(Graphics graphics) {
120                 // TODO
121         } // update()
122
123         /**
124          * invalidate
125          */
126         public void invalidate() {
127                 // TODO
128         } // invalidate()
129
130         /**
131          * paint
132          * @param graphics TODO
133          */
134         public void paint(Graphics graphics) {
135                 // TODO
136         } // paint()
137
138         /**
139          * addImpl
140          * @param c TODO
141          * @param constraints TODO
142          * @param index TODO
143          */
144         protected void addImpl(Component c, Object constraints, int index) {
145                 // TODO
146         } // addImpl()
147
148         /**
149          * paintComponent
150          * @param graphics TODO
151          * @param c TODO
152          * @param p TODO
153          * @param x TODO
154          * @param y TODO
155          * @param w TODO
156          * @param h TODO
157          * @param shouldValidate TODO
158          */
159         public void paintComponent(Graphics graphics, Component c,
160                         Container p, int x, int y, int w, int h, 
161                         boolean shouldValidate) {
162                 // TODO
163         } // paintComponent()
164
165         /**
166          * paintComponent
167          * @param graphics TODO
168          * @param c TODO
169          * @param p TODO
170          * @param x TODO
171          * @param y TODO
172          * @param w TODO
173          * @param h TODO
174          */
175         public void paintComponent(Graphics graphics, Component c,
176                         Container p, int x, int y, int w, int h) {
177                 // TODO
178         } // paintComponent()
179
180         /**
181          * paintComponent
182          * @param graphics TODO
183          * @param c TODO
184          * @param p TODO
185          * @param r TODO
186          */
187         public void paintComponent(Graphics graphics, Component c,
188                         Container p, Rectangle r) {
189                 // TODO
190         } // paintComponent()
191
192   /**
193    * getAccessibleContext
194    * @return AccessibleContext
195    */
196   public AccessibleContext getAccessibleContext()
197   {
198     if (accessibleContext == null)
199       accessibleContext = new AccessibleCellRendererPane();
200
201     return accessibleContext;
202   }
203 }