package com.mindprod.common17;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* embedded copyright annotation.
*
* @author Roedy Green, Canadian Mind Products
* @version 1.0 2005-01-01 initial version
* @since 2005-01-01
*/
@Documented
@Retention( RetentionPolicy.RUNTIME )
@interface CopyrightCanadianMindProducts
{
static final int FIRST_COPYRIGHT_YEAR = 1998;
/**
* copyright to embed via annotations so it is embedded in all classes that reference it
*/
String defaultCopyright =
"Copyright: (c) 1998-2017 Roedy Green, Canadian Mind Products, http://mindprod.com";
/**
* get value of this annotation
*
* @return the copyright string
*/
String value() default defaultCopyright;
}