KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > beehive > controls > api > packaging > PropertyInfo


1 package org.apache.beehive.controls.api.packaging;
2
3 /*
4  * Copyright 2004 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * $Header:$
19  */

20
21 import java.lang.annotation.ElementType JavaDoc;
22 import java.lang.annotation.Target JavaDoc;
23
24 import java.beans.PropertyEditor JavaDoc;
25
26 /**
27  * The PropertyInfo annotation type defines a JSR-175 syntax for annotating a Control
28  * property declaration to provide java.beans.PropertyDescriptor information. Generic
29  * feature information is defined using the <code>FeatureInfo</code> annotation type
30  * <p>
31  * The elements of PropertyInfo correspond 1-to-1 with the information exposed by the
32  * <code>java.beans.PropertyDescriptor</code> class.
33  *
34  * @see java.beans.PropertyDescriptor
35  */

36 @Target JavaDoc({ElementType.METHOD}) // appears on PropertySet method declaration (i.e. properties)
37
public @interface PropertyInfo
38 {
39     /**
40      * The NoEditor class can be used as the value of the editorClass attribute to
41      * indicate that the property has no editor
42      */

43     static public class NoEditor {};
44
45     public boolean bound() default false; // Sends PropertyChange events
46
public boolean constrained() default false; // Sends VetoableChange events
47
public Class JavaDoc editorClass() default NoEditor.class; // default == no editor
48
}
49
Popular Tags