oms3.annotations.Name Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package oms3.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** Naming support for components and fields
* (Ontology support)
*
* @see Label
* @author Olaf David
* @version $Id$
*/
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface Name {
String value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy