All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.astamuse.asta4d.data.annotation.ContextDataSet Maven / Gradle / Ivy

Go to download

core functionalities of asta4d framework, including template and snippt implemention

There is a newer version: 1.2-M2
Show newest version
package com.astamuse.asta4d.data.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import com.astamuse.asta4d.data.ContextDataSetFactory;
import com.astamuse.asta4d.data.DefaultContextDataSetFactory;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ContextDataSet {

    public boolean singletonInContext() default false;

    public Class factory() default DefaultContextDataSetFactory.class;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy