|
|||||||||||||||||||
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 | |||||||||||||||
AbstractCharStream.java | - | 0% | 0% | 0% |
|
1 |
package org.codehaus.groovy.syntax.lexer;
|
|
2 |
|
|
3 |
public abstract class AbstractCharStream |
|
4 |
implements CharStream
|
|
5 |
{ |
|
6 |
private String description;
|
|
7 |
|
|
8 | 0 |
public AbstractCharStream()
|
9 |
{ |
|
10 | 0 |
this( "<unknown>" ); |
11 |
} |
|
12 |
|
|
13 | 0 |
public AbstractCharStream(String description)
|
14 |
{ |
|
15 | 0 |
this.description = description;
|
16 |
} |
|
17 |
|
|
18 | 0 |
public String getDescription()
|
19 |
{ |
|
20 | 0 |
return this.description; |
21 |
} |
|
22 |
} |
|
23 |
|
|