1 4 package com.tc.object.dna.api; 5 6 import com.tc.object.dna.impl.DNAEncoding; 7 8 import java.io.IOException ; 9 10 17 public interface DNACursor { 18 19 public int getActionCount(); 20 21 public boolean next() throws IOException ; 22 23 public boolean next(DNAEncoding encoding) throws IOException , ClassNotFoundException ; 24 25 public void reset() throws UnsupportedOperationException ; 26 27 public LogicalAction getLogicalAction(); 28 29 public PhysicalAction getPhysicalAction(); 30 31 public Object getAction(); 34 35 } | Popular Tags |