1 /**********************************************************************
2 * IDynAccess.java
3 * created on 21.07.2006 by netseeker
4 * $Source: /cvsroot/ejoe/EJOE/src/de/netseeker/ejoe/handler/gen/IDynAccess.java,v $
5 * $Date: 2006/11/05 16:59:31 $
6 * $Revision: 1.2 $
7 *
8 * ====================================================================
9 *
10 * Copyright 2006 netseeker aka Michael Manske
11 *
12 * Licensed under the Apache License, Version 2.0 (the "License");
13 * you may not use this file except in compliance with the License.
14 * You may obtain a copy of the License at
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS,
20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
23 * ====================================================================
24 *
25 * This file is part of the EJOE framework.
26 * For more information on the author, please see
27 * <http://www.manskes.de/>.
28 *
29 *********************************************************************/
30
31 package de.netseeker.ejoe.handler.gen;
32
33 /***
34 * @author netseeker
35 * @since 0.3.9.1
36 */
37 public interface IDynAccess
38 {
39 public void setDynTarget( Object target );
40
41 public Object invokeDynMethod( String method, Object[] params ) throws Exception;
42
43 public IDynAccess createCopy();
44 }