package org.gcube.accounting.datamodel.decorators; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This annotations indicates that the field is calculated using the * value of other field in the instance * @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface ComputedField { }