View Javadoc
1 /*
2 * ModuleCfg.java
3 * Created on August 16, 2003
4 *
5 * The Blues Framework - A lightweight application framework
6 * Copyright (C) 2003 Lonnie Pryor
7 * http://blues.lonniepryor.com
8 *
9 * This library is free software; you can redistribute it and/or modify it under the
10 * terms of the GNU Lesser General Public License as published by the Free Software
11 * Foundation; either version 2.1 of the License, or (at your option) any later
12 * version.
13 *
14 * This library is distributed in the hope that it will be useful, but WITHOUT ANY
15 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
16 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public License along
19 * with this library; if not, write to:
20 *
21 * The Free Software Foundation, Inc.
22 * 59 Temple Place, Suite 330
23 * Boston, MA 02111-1307 USA
24 *
25 */
26 package com.lonniepryor.blues.cfg;
27
28 /***
29 * Defines the requirements for a Blues module configuration.
30 *
31 * @author Lonnie Pryor
32 * @version $Revision: 1.1 $
33 */
34 public interface ModuleCfg {
35 /***
36 * Returns all of the variables declared in this module.
37 *
38 * @return All of the variables declared in this module.
39 */
40 public String[] getVariables ();
41
42 /***
43 * Returns all of the pointcuts declared in this module.
44 *
45 * @return All of the pointcuts declared in this module.
46 */
47 public PointcutCfg[] getPointcuts ();
48
49 /***
50 * Returns all of the advices declared in this module.
51 *
52 * @return All of the advices declared in this module.
53 */
54 public AdviceCfg[] getAdvices ();
55
56 /***
57 * Returns all of the services declared in this module.
58 *
59 * @return All of the services declared in this module.
60 */
61 public ServiceCfg[] getServices ();
62
63 /***
64 * Returns all of the includes declared in this module.
65 *
66 * @return All of the includes declared in this module.
67 */
68 public IncludeCfg[] getIncludes ();
69 }
This page was automatically generated by Maven