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

gw.internal.gosu.parser.ExtendedProperty Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
package gw.internal.gosu.parser;

/*
 * Copyright 2014 Guidewire Software, Inc.
 */

import gw.lang.reflect.java.IJavaPropertyInfo;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Specifies that the annotated property method is an extended property, i.e., an extension of
 * {@link gw.lang.reflect.java.IJavaPropertyInfo}. This annotation must be used on classes annotated with {@link gw.internal.gosu.parser.ExtendedType} in order to
 * have any effect.
 */
@Retention(RUNTIME)
@Target(METHOD)
public @interface ExtendedProperty {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy