KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > aspectj > lang > reflect > InitializerSignature


1 /* *******************************************************************
2  * Copyright (c) 1999-2001 Xerox Corporation,
3  * 2002 Palo Alto Research Center, Incorporated (PARC),
4  * 2006 Contributors.
5  * All rights reserved.
6  * This program and the accompanying materials are made available
7  * under the terms of the Eclipse Public License v1.0
8  * which accompanies this distribution and is available at
9  * http://www.eclipse.org/legal/epl-v10.html
10  *
11  * Contributors:
12  * Xerox/PARC initial implementation
13  * ******************************************************************/

14
15
16 package org.aspectj.lang.reflect;
17 import java.lang.reflect.Constructor JavaDoc;
18
19 /**
20  * Signature for static and instance initializers.
21  * Static initializers have no parameters or exceptions,
22  * so empty arrays are returned from the CodeSignature methods.
23  */

24 public interface InitializerSignature extends CodeSignature {
25     /**
26      * @return Constructor associated with this initializer,
27      * or null in the case of interface initializers and
28      * static initializers.
29      */

30     Constructor JavaDoc getInitializer();
31 }
32
Popular Tags