This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.alkalinezoo.transform | |
import java.lang.annotation.Target | |
import java.lang.annotation.ElementType | |
import java.lang.annotation.Retention | |
import java.lang.annotation.RetentionPolicy | |
import org.codehaus.groovy.transform.GroovyASTTransformationClass | |
/** | |
* Simple annotation that when used on a class adds two new fields of type {@code java.util.Date} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.spartacus; | |
/** | |
* Interface that defines a method that calculates Roman numerals from a given number. | |
* | |
* @author robert.patrick | |
*/ | |
public interface RomanNumeralGenerator { | |
String generateNumber( int number ); |