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

com.devonfw.cobigen.api.annotation.Name Maven / Gradle / Ivy

The newest version!
package com.devonfw.cobigen.api.annotation;

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;

/**
 * Name of an extension
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
@Inherited
public @interface Name {

  /** Name of the plug-in */
  String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy