source: java/main/src/main/java/com/framsticks/params/annotations/AutoAppendAnnotation.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 313 bytes
Line 
1package com.framsticks.params.annotations;
2
3import java.lang.annotation.ElementType;
4import java.lang.annotation.Retention;
5import java.lang.annotation.RetentionPolicy;
6import java.lang.annotation.Target;
7
8@Retention(RetentionPolicy.RUNTIME)
9@Target(ElementType.METHOD)
10public @interface AutoAppendAnnotation {
11}
Note: See TracBrowser for help on using the repository browser.