KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > fractal > fraclet > annotation > FractalRC


1 /*==============================================================================
2  Fraclet annotation - Copyright (C) 2002-2006 INRIA Futurs / LIFL
3  Fractal Component Model (contact: fractal@objectweb.org)
4
5  This library is free software; you can redistribute it and/or modify it under
6  the terms of the GNU Lesser General Public License as published by the Free
7  Software Foundation; either version 2.1 of the License, or any later version.
8
9  This library is distributed in the hope that it will be useful, but WITHOUT ANY
10  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11  PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
12
13  You should have received a copy of the GNU Lesser General Public License along
14  with this library; if not, write to the Free Software Foundation, Inc.,
15  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
17  Initial developer(s): Nicolas Pessemier (nicolas.pessemier@lifl.fr)
18  ==============================================================================*/

19 package org.objectweb.fractal.fraclet.annotation;
20
21 import java.lang.annotation.ElementType JavaDoc;
22 import java.lang.annotation.Target JavaDoc;
23
24 /**
25  * This field annotation provides a way to get the Component reference of a component
26  *
27  * @author Nicolas Pessemier <Nicolas.Pessemier@lifl.fr>
28  *
29  */

30 @Target JavaDoc(ElementType.FIELD)
31 public @interface FractalRC {
32
33 }
34
Popular Tags