package com.mindprod.common15;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* embedded copyright
*/
@Documented
@Retention( RetentionPolicy.RUNTIME )
@interface CopyrightCanadianMindProducts
{
/**
* copyright to embed via annotations so it is embedded in all classes that reference it
*/
String defaultCopyright =
"copyright (c) 1998-2008 Roedy Green, "
+ "Canadian Mind Products, http://mindprod.com";
/**
* get value of this annotation
*
* @return the copyright string
*/
String value() default defaultCopyright;
}