blob: 3de07c310f5019c4454d3495df555e54bc89a00c [file] [log] [blame]
package com.intellij.codeInsight.template.postfix.util;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author ignatov
*/
@Target(value = ElementType.TYPE)
@Retention(value = RetentionPolicy.RUNTIME)
public @interface Aliases {
String[] value();
}