View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   public interface TouchTime {
5   
6       int time();
7   
8       boolean isAfter(TouchTime tt);
9   
10      boolean isBefore(TouchTime tt);
11  
12      void now();
13  
14  
15  }