Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Property.java « lang « ikvm « classpath - github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f85042123c03ebc4c4b5371c67213ad47ac52228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package ikvm.lang;

import java.lang.annotation.*;

@Documented
@Retention(RetentionPolicy.CLASS)
@Target({ ElementType.FIELD })
public @interface Property
{
	String get();
	String set() default "";
}