Dead
[official-gcc.git] / gomp-20050608-branch / libjava / classpath / javax / swing / tree / FixedHeightLayoutCache.java
blob535417ec38996332e322b131bd60f8130b7c9b76
1 /* FixedHeightLayoutCache.java --
2 Copyright (C) 2002, 2004 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., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 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. */
38 package javax.swing.tree;
40 import java.awt.Rectangle;
41 import java.util.Enumeration;
43 import javax.swing.event.TreeModelEvent;
45 /**
46 * FixedHeightLayoutCache
48 * @author Andrew Selkirk
50 public class FixedHeightLayoutCache
51 extends AbstractLayoutCache
54 // -------------------------------------------------------------
55 // Variables --------------------------------------------------
56 // -------------------------------------------------------------
58 // -------------------------------------------------------------
59 // Initialization ---------------------------------------------
60 // -------------------------------------------------------------
62 /**
63 * Constructor FixedHeightLayoutCache
65 public FixedHeightLayoutCache()
67 // TODO
68 } // FixedHeightLayoutCache()
70 // -------------------------------------------------------------
71 // Methods ----------------------------------------------------
72 // -------------------------------------------------------------
74 /**
75 * getRowCount
77 * @returns int
79 public int getRowCount()
81 return 0; // TODO
82 } // getRowCount()
84 /**
85 * invalidatePathBounds
87 * @param value0 TODO
89 public void invalidatePathBounds(TreePath value0)
91 // TODO
92 } // invalidatePathBounds()
94 /**
95 * invalidateSizes
97 public void invalidateSizes()
99 // TODO
100 } // invalidateSizes()
103 * isExpanded
105 * @param value0 TODO
106 * @returns boolean
108 public boolean isExpanded(TreePath value0)
110 return false; // TODO
111 } // isExpanded()
114 * getBounds
116 * @param value0 TODO
117 * @param value1 TODO
118 * @returns Rectangle
120 public Rectangle getBounds(TreePath value0, Rectangle value1)
122 return null; // TODO
123 } // getBounds()
126 * getPathForRow
128 * @param row TODO
129 * @returns TreePath
131 public TreePath getPathForRow(int row)
133 //TODO
134 return null;
135 } // getPathForRow()
138 * getRowForPath
140 * @param value0 TODO
141 * @returns int
143 public int getRowForPath(TreePath value0)
145 return 0;
146 } // getRowForPath()
149 * getPathClosestTo
151 * @param value0 TODO
152 * @param value1 TODO
153 * @returns TreePath
155 public TreePath getPathClosestTo(int value0, int value1)
157 return null; // TODO
158 } // getPathClosestTo()
161 * getVisibleChildCount
163 * @param value0 TODO
164 * @returns int
166 public int getVisibleChildCount(TreePath value0)
168 return 0; // TODO
169 } // getVisibleChildCount()
172 * getVisiblePathsFrom
174 * @param value0 TODO
175 * @returns Enumeration
177 public Enumeration getVisiblePathsFrom(TreePath value0)
179 return null; // TODO
180 } // getVisiblePathsFrom()
183 * setExpandedState
185 * @param value0 TODO
186 * @param value1 TODO
188 public void setExpandedState(TreePath value0, boolean value1)
190 // TODO
191 } // setExpandedState()
194 * getExpandedState
196 * @param value0 TODO
197 * @returns boolean
199 public boolean getExpandedState(TreePath value0)
201 return false; // TODO
202 } // getExpandedState()
205 * treeNodesChanged
207 * @param value0 TODO
209 public void treeNodesChanged(TreeModelEvent value0)
211 // TODO
212 } // treeNodesChanged()
215 * treeNodesInserted
217 * @param value0 TODO
219 public void treeNodesInserted(TreeModelEvent value0)
221 // TODO
222 } // treeNodesInserted()
225 * treeNodesRemoved
227 * @param value0 TODO
229 public void treeNodesRemoved(TreeModelEvent value0)
231 // TODO
232 } // treeNodesRemoved()
235 * treeStructureChanged
237 * @param value0 TODO
239 public void treeStructureChanged(TreeModelEvent value0)
241 // TODO
242 } // treeStructureChanged()
244 } // FixedHeightLayoutCache