2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / javax / swing / tree / VariableHeightLayoutCache.java
blob445faa9c230d40ff646577e6c52f7dd352d7821d
1 /* VariableHeightLayoutCache.java --
2 Copyright (C) 2002 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
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.
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.
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.
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.
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. */
39 package javax.swing.tree;
41 import java.awt.Rectangle;
42 import java.util.Enumeration;
43 import javax.swing.event.TreeModelEvent;
45 /**
46 * VariableHeightLayoutCache
47 * @author Andrew Selkirk
49 public class VariableHeightLayoutCache extends AbstractLayoutCache {
51 //-------------------------------------------------------------
52 // Variables --------------------------------------------------
53 //-------------------------------------------------------------
56 //-------------------------------------------------------------
57 // Initialization ---------------------------------------------
58 //-------------------------------------------------------------
60 /**
61 * Constructor VariableHeightLayoutCache
63 public VariableHeightLayoutCache() {
64 // TODO
65 } // VariableHeightLayoutCache()
68 //-------------------------------------------------------------
69 // Methods ----------------------------------------------------
70 //-------------------------------------------------------------
72 /**
73 * setModel
74 * @param value0 TODO
76 public void setModel(TreeModel value0) {
77 // TODO
78 } // setModel()
80 /**
81 * setRootVisible
82 * @param value0 TODO
84 public void setRootVisible(boolean value0) {
85 // TODO
86 } // setRootVisible()
88 /**
89 * setRowHeight
90 * @param value0 TODO
92 public void setRowHeight(int value0) {
93 // TODO
94 } // setRowHeight()
96 /**
97 * setNodeDimensions
98 * @param value0 TODO
100 public void setNodeDimensions(NodeDimensions value0) {
101 // TODO
102 } // setNodeDimensions()
105 * setExpandedState
106 * @param value0 TODO
107 * @param value1 TODO
109 public void setExpandedState(TreePath value0, boolean value1) {
110 // TODO
111 } // setExpandedState()
114 * getExpandedState
115 * @param value0 TODO
116 * @returns boolean
118 public boolean getExpandedState(TreePath value0) {
119 return false; // TODO
120 } // getExpandedState()
123 * getBounds
124 * @param value0 TODO
125 * @param value1 TODO
126 * @returns Rectangle
128 public Rectangle getBounds(TreePath value0, Rectangle value1) {
129 return null; // TODO
130 } // getBounds()
133 * getPathForRow
134 * @param value0 TODO
135 * @returns TreePath
137 public TreePath getPathForRow(int value0) {
138 return null; // TODO
139 } // getPathForRow()
142 * getRowForPath
143 * @param value0 TODO
144 * @returns int
146 public int getRowForPath(TreePath value0) {
147 return 0; // TODO
148 } // getRowForPath()
151 * getRowCount
152 * @returns int
154 public int getRowCount() {
155 return 0; // TODO
156 } // getRowCount()
159 * invalidatePathBounds
160 * @param value0 TODO
162 public void invalidatePathBounds(TreePath value0) {
163 // TODO
164 } // invalidatePathBounds()
167 * getPreferredHeight
168 * @returns int
170 public int getPreferredHeight() {
171 return 0; // TODO
172 } // getPreferredHeight()
175 * getPreferredWidth
176 * @param value0 TODO
177 * @returns int
179 public int getPreferredWidth(Rectangle value0) {
180 return 0; // TODO
181 } // getPreferredWidth()
184 * getPathClosestTo
185 * @param value0 TODO
186 * @param value1 TODO
187 * @returns TreePath
189 public TreePath getPathClosestTo(int value0, int value1) {
190 return null; // TODO
191 } // getPathClosestTo()
194 * getVisiblePathsFrom
195 * @param value0 TODO
196 * @returns Enumeration
198 public Enumeration getVisiblePathsFrom(TreePath value0) {
199 return null; // TODO
200 } // getVisiblePathsFrom()
203 * getVisibleChildCount
204 * @param value0 TODO
205 * @returns int
207 public int getVisibleChildCount(TreePath value0) {
208 return 0; // TODO
209 } // getVisibleChildCount()
212 * invalidateSizes
214 public void invalidateSizes() {
215 // TODO
216 } // invalidateSizes()
219 * isExpanded
220 * @param value0 TODO
221 * @returns boolean
223 public boolean isExpanded(TreePath value0) {
224 return false; // TODO
225 } // isExpanded()
228 * treeNodesChanged
229 * @param value0 TODO
231 public void treeNodesChanged(TreeModelEvent value0) {
232 // TODO
233 } // treeNodesChanged()
236 * treeNodesInserted
237 * @param value0 TODO
239 public void treeNodesInserted(TreeModelEvent value0) {
240 // TODO
241 } // treeNodesInserted()
244 * treeNodesRemoved
245 * @param value0 TODO
247 public void treeNodesRemoved(TreeModelEvent value0) {
248 // TODO
249 } // treeNodesRemoved()
252 * treeStructureChanged
253 * @param value0 TODO
255 public void treeStructureChanged(TreeModelEvent value0) {
256 // TODO
257 } // treeStructureChanged()
260 } // VariableHeightLayoutCache