1 package org.catacomb.numeric.data; 2 3 import java.lang.reflect.Field; 4 5 6 public abstract class StackMultipleSlice extends StackSlice { 7 8 9 10 public StackMultipleSlice(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 public Object getChild(int index) { 20 return null; 21 } 22 23 24 public int getIndexOfChild(Object child) { 25 return 0; 26 } 27 28 public boolean isLeaf() { 29 return true; 30 } 31 32 33 void clearCache() { 34 35 } 36 37 38 39 }