| Home >> All >> org >> milligan >> [ eccles Javadoc ] |
Source code: org/milligan/eccles/ReportingTag.java
1 package org.milligan.eccles; 2 3 /** 4 * A tag that supports writing to the report file 5 * @author Ian Tomey 6 * 7 */ 8 9 public abstract class ReportingTag extends Tag { 10 11 public ReportingTag() { 12 } 13 14 /** 15 * Indicate this tag supports writing to the report 16 * @return 17 */ 18 public boolean isReportingTag() { 19 return true; 20 } 21 }