ObjectStates: Initial commit

thobaben_serialize
Harald Wolff 2016-04-28 16:36:56 +02:00
parent 17fa3cbe0f
commit d6bfabf02a
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package org.hwo.objectstates;
public class StateAttribute {
}

View File

@ -0,0 +1,10 @@
package org.hwo.objectstates;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface StateRelevant {
public String name() default "";
public int order() default 1;
}