KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > aop > metadata > ClassMetaDataLoader


1 /*
2   * JBoss, Home of Professional Open Source
3   * Copyright 2005, JBoss Inc., and individual contributors as indicated
4   * by the @authors tag. See the copyright.txt in the distribution for a
5   * full listing of individual contributors.
6   *
7   * This is free software; you can redistribute it and/or modify it
8   * under the terms of the GNU Lesser General Public License as
9   * published by the Free Software Foundation; either version 2.1 of
10   * the License, or (at your option) any later version.
11   *
12   * This software is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * Lesser General Public License for more details.
16   *
17   * You should have received a copy of the GNU Lesser General Public
18   * License along with this software; if not, write to the Free
19   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21   */

22 package org.jboss.aop.metadata;
23
24 import javassist.CtConstructor;
25 import javassist.CtField;
26 import javassist.CtMethod;
27 import org.jboss.aop.Advisor;
28 import org.w3c.dom.Element JavaDoc;
29
30 import java.lang.reflect.Constructor JavaDoc;
31 import java.lang.reflect.Field JavaDoc;
32 import java.lang.reflect.Method JavaDoc;
33
34 /**
35  * <description>
36  *
37  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
38  * @version $Revision: 37406 $
39  * @see <related>
40  */

41 public interface ClassMetaDataLoader
42 {
43    // Public --------------------------------------------------------
44
public ClassMetaDataBinding importMetaData(Element JavaDoc element, String JavaDoc name, String JavaDoc tag, String JavaDoc classExpr) throws Exception JavaDoc;
45
46    /**
47     * This is a prebind of metadata so that loader/compiler can work with metadata as strings
48     *
49     * @param advisor
50     * @param data
51     * @param methods
52     * @param fields
53     * @param constructors
54     * @throws Exception
55     */

56    public void bind(Advisor advisor, ClassMetaDataBinding data, CtMethod[] methods, CtField[] fields, CtConstructor[] constructors) throws Exception JavaDoc;
57
58    /**
59     * This is a full bind of metadata. It can work with real objects unlike the bind with Javassist types
60     *
61     * @param advisor
62     * @param data
63     * @param methods
64     * @param fields
65     * @param constructors
66     * @throws Exception
67     */

68    public void bind(Advisor advisor, ClassMetaDataBinding data, Method[] methods, Field[] fields, Constructor[] constructors) throws Exception JavaDoc;
69 }
70
Popular Tags