/[classpath]/classpath/javax/swing/tree/FixedHeightLayoutCache.java
ViewVC logotype

Diff of /classpath/javax/swing/tree/FixedHeightLayoutCache.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by mkoch, Fri Oct 22 12:44:01 2004 UTC revision 1.4 by langel, Wed Jun 29 13:20:01 2005 UTC
# Line 1  Line 1 
1  /* FixedHeightLayoutCache.java --  /* FixedHeightLayoutCache.java --
2     Copyright (C) 2002, 2004  Free Software Foundation, Inc.  Copyright (C) 2002, 2004  Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 35  this exception to your version of the li Line 35  this exception to your version of the li
35  obligated to do so.  If you do not wish to do so, delete this  obligated to do so.  If you do not wish to do so, delete this
36  exception statement from your version. */  exception statement from your version. */
37    
   
38  package javax.swing.tree;  package javax.swing.tree;
39    
40  import java.awt.Rectangle;  import java.awt.Rectangle;
# Line 45  import javax.swing.event.TreeModelEvent; Line 44  import javax.swing.event.TreeModelEvent;
44    
45  /**  /**
46   * FixedHeightLayoutCache   * FixedHeightLayoutCache
47     *
48   * @author Andrew Selkirk   * @author Andrew Selkirk
49   */   */
50  public class FixedHeightLayoutCache extends AbstractLayoutCache {  public class FixedHeightLayoutCache
51                    extends AbstractLayoutCache
52    {
53    
54          //-------------------------------------------------------------          // -------------------------------------------------------------
55          // Variables --------------------------------------------------          // Variables --------------------------------------------------
56          //-------------------------------------------------------------          // -------------------------------------------------------------
   
57    
58          //-------------------------------------------------------------          // -------------------------------------------------------------
59          // Initialization ---------------------------------------------          // Initialization ---------------------------------------------
60          //-------------------------------------------------------------          // -------------------------------------------------------------
61    
62          /**          /**
63           * Constructor FixedHeightLayoutCache           * Constructor FixedHeightLayoutCache
64           */           */
65          public FixedHeightLayoutCache() {          public FixedHeightLayoutCache()
66            {
67                  // TODO                  // TODO
68          } // FixedHeightLayoutCache()          } // FixedHeightLayoutCache()
69    
70            // -------------------------------------------------------------
         //-------------------------------------------------------------  
71          // Methods ----------------------------------------------------          // Methods ----------------------------------------------------
72          //-------------------------------------------------------------          // -------------------------------------------------------------
   
         /**  
          * setModel  
          * @param value0 TODO  
          */  
         public void setModel(TreeModel value0) {  
                 // TODO  
         } // setModel()  
   
         /**  
          * setRootVisible  
          * @param value0 TODO  
          */  
         public void setRootVisible(boolean value0) {  
                 // TODO  
         } // setRootVisible()  
   
         /**  
          * setRowHeight  
          * @param value0 TODO  
          */  
         public void setRowHeight(int value0) {  
                 // TODO  
         } // setRowHeight()  
73    
74          /**          /**
75           * getRowCount           * getRowCount
76             *
77           * @returns int           * @returns int
78           */           */
79          public int getRowCount() {          public int getRowCount()
80            {
81                  return 0; // TODO                  return 0; // TODO
82          } // getRowCount()          } // getRowCount()
83    
84          /**          /**
85           * invalidatePathBounds           * invalidatePathBounds
86             *
87           * @param value0 TODO           * @param value0 TODO
88           */           */
89          public void invalidatePathBounds(TreePath value0) {          public void invalidatePathBounds(TreePath value0)
90            {
91                  // TODO                  // TODO
92          } // invalidatePathBounds()          } // invalidatePathBounds()
93    
94          /**          /**
95           * invalidateSizes           * invalidateSizes
96           */           */
97          public void invalidateSizes() {          public void invalidateSizes()
98            {
99                  // TODO                  // TODO
100          } // invalidateSizes()          } // invalidateSizes()
101    
102          /**          /**
103           * isExpanded           * isExpanded
104             *
105           * @param value0 TODO           * @param value0 TODO
106           * @returns boolean           * @returns boolean
107           */           */
108          public boolean isExpanded(TreePath value0) {          public boolean isExpanded(TreePath value0)
109            {
110                  return false; // TODO                  return false; // TODO
111          } // isExpanded()          } // isExpanded()
112    
113          /**          /**
114           * getBounds           * getBounds
115             *
116           * @param value0 TODO           * @param value0 TODO
117           * @param value1 TODO           * @param value1 TODO
118           * @returns Rectangle           * @returns Rectangle
119           */           */
120          public Rectangle getBounds(TreePath value0, Rectangle value1) {          public Rectangle getBounds(TreePath value0, Rectangle value1)
121            {
122                  return null; // TODO                  return null; // TODO
123          } // getBounds()          } // getBounds()
124    
125          /**          /**
126           * getPathForRow           * getPathForRow
127             *
128           * @param value0 TODO           * @param value0 TODO
129           * @returns TreePath           * @returns TreePath
130           */           */
131          public TreePath getPathForRow(int value0) {          public TreePath getPathForRow(int row)
132                  return null; // TODO          {
133                    //TODO
134                    return null;
135          } // getPathForRow()          } // getPathForRow()
136    
137          /**          /**
138           * getRowForPath           * getRowForPath
139             *
140           * @param value0 TODO           * @param value0 TODO
141           * @returns int           * @returns int
142           */           */
143          public int getRowForPath(TreePath value0) {          public int getRowForPath(TreePath value0)
144                  return 0; // TODO          {
145                    return 0;
146          } // getRowForPath()          } // getRowForPath()
147    
148          /**          /**
149           * getPathClosestTo           * getPathClosestTo
150             *
151           * @param value0 TODO           * @param value0 TODO
152           * @param value1 TODO           * @param value1 TODO
153           * @returns TreePath           * @returns TreePath
154           */           */
155          public TreePath getPathClosestTo(int value0, int value1) {          public TreePath getPathClosestTo(int value0, int value1)
156            {
157                  return null; // TODO                  return null; // TODO
158          } // getPathClosestTo()          } // getPathClosestTo()
159    
160          /**          /**
161           * getVisibleChildCount           * getVisibleChildCount
162             *
163           * @param value0 TODO           * @param value0 TODO
164           * @returns int           * @returns int
165           */           */
166          public int getVisibleChildCount(TreePath value0) {          public int getVisibleChildCount(TreePath value0)
167            {
168                  return 0; // TODO                  return 0; // TODO
169          } // getVisibleChildCount()          } // getVisibleChildCount()
170    
171          /**          /**
172           * getVisiblePathsFrom           * getVisiblePathsFrom
173             *
174           * @param value0 TODO           * @param value0 TODO
175           * @returns Enumeration           * @returns Enumeration
176           */           */
177          public Enumeration getVisiblePathsFrom(TreePath value0) {          public Enumeration getVisiblePathsFrom(TreePath value0)
178            {
179                  return null; // TODO                  return null; // TODO
180          } // getVisiblePathsFrom()          } // getVisiblePathsFrom()
181    
182          /**          /**
183           * setExpandedState           * setExpandedState
184             *
185           * @param value0 TODO           * @param value0 TODO
186           * @param value1 TODO           * @param value1 TODO
187           */           */
188          public void setExpandedState(TreePath value0, boolean value1) {          public void setExpandedState(TreePath value0, boolean value1)
189            {
190                  // TODO                  // TODO
191          } // setExpandedState()          } // setExpandedState()
192    
193          /**          /**
194           * getExpandedState           * getExpandedState
195             *
196           * @param value0 TODO           * @param value0 TODO
197           * @returns boolean           * @returns boolean
198           */           */
199          public boolean getExpandedState(TreePath value0) {          public boolean getExpandedState(TreePath value0)
200            {
201                  return false; // TODO                  return false; // TODO
202          } // getExpandedState()          } // getExpandedState()
203    
204          /**          /**
205           * treeNodesChanged           * treeNodesChanged
206             *
207           * @param value0 TODO           * @param value0 TODO
208           */           */
209          public void treeNodesChanged(TreeModelEvent value0) {          public void treeNodesChanged(TreeModelEvent value0)
210            {
211                  // TODO                  // TODO
212          } // treeNodesChanged()          } // treeNodesChanged()
213    
214          /**          /**
215           * treeNodesInserted           * treeNodesInserted
216             *
217           * @param value0 TODO           * @param value0 TODO
218           */           */
219          public void treeNodesInserted(TreeModelEvent value0) {          public void treeNodesInserted(TreeModelEvent value0)
220            {
221                  // TODO                  // TODO
222          } // treeNodesInserted()          } // treeNodesInserted()
223    
224          /**          /**
225           * treeNodesRemoved           * treeNodesRemoved
226             *
227           * @param value0 TODO           * @param value0 TODO
228           */           */
229          public void treeNodesRemoved(TreeModelEvent value0) {          public void treeNodesRemoved(TreeModelEvent value0)
230            {
231                  // TODO                  // TODO
232          } // treeNodesRemoved()          } // treeNodesRemoved()
233    
234          /**          /**
235           * treeStructureChanged           * treeStructureChanged
236             *
237           * @param value0 TODO           * @param value0 TODO
238           */           */
239          public void treeStructureChanged(TreeModelEvent value0) {          public void treeStructureChanged(TreeModelEvent value0)
240            {
241                  // TODO                  // TODO
242          } // treeStructureChanged()          } // treeStructureChanged()
243    
   
244  } // FixedHeightLayoutCache  } // FixedHeightLayoutCache

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26