com.agimatec.annotations.Default Maven / Gradle / Ivy
package com.agimatec.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Description: put a hint for the default value on a property
* User: roman.stumm
* Date: 06.12.2007
* Time: 12:08:55
* Copyright: Agimatec GmbH
*/
@Retention(RetentionPolicy.SOURCE)
@Target(value = {ElementType.FIELD, ElementType.METHOD})
public @interface Default {
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy