Clover coverage report - groovy - 1.0-beta-6
Coverage timestamp: Thu Jul 15 2004 13:18:22 BST
file stats: LOC: 39   Methods: 0
NCLOC: 7   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
Delimiter.java - - - -
coverage
 1   
 package org.codehaus.groovy.syntax.lexer;
 2   
 
 3   
 
 4   
 /**
 5   
  *  An interface for Lexers that delimit content from a larger source.
 6   
  *
 7   
  *  @author Chris Poirier
 8   
  */
 9   
 
 10   
 public interface Delimiter
 11   
 {
 12   
 
 13   
 
 14   
    /**
 15   
     *  Turns delimiting on or off.  This should affect <code>la()</code>
 16   
     *  and <code>consume()</code>.  However, once the delimiter has been
 17   
     *  reached, this routine should have no effect.
 18   
     */
 19   
 
 20   
     public void delimit( boolean delimiter );
 21   
 
 22   
 
 23   
 
 24   
    /**
 25   
     *  Returns true if the lexer is applying its delimiter policy.
 26   
     */
 27   
 
 28   
     public boolean isDelimited();
 29   
 
 30   
 
 31   
 
 32   
    /**
 33   
     *  Returns true if the lexer stream is dry.
 34   
     */
 35   
 
 36   
     public boolean isFinished();
 37   
 
 38   
 }
 39