View Javadoc

1   package org.catacomb.numeric.data;
2   
3   import java.lang.reflect.Field;
4   
5   
6   public abstract class StackSingleSlice extends StackSlice {
7   
8   
9   
10      public StackSingleSlice(BlockStack bs, String fnm, Field f, String u, String t) {
11          super(bs, fnm, f, u, t);
12      }
13  
14  
15      public int getChildCount() {
16          return 0;
17      }
18  
19  
20      public Object getChild(int index) {
21          return null;
22      }
23  
24  
25      public int getIndexOfChild(Object child) {
26          return 0;
27      }
28  
29      public boolean isLeaf() {
30          return true;
31      }
32  
33  
34      void clearCache() {
35  
36      }
37  
38  
39  
40  }