View Javadoc

1   package com.explosion.expfmodules.freeform;
2   
3   /*
4    * =============================================================================
5    * 
6    * Copyright 2004 Stephen Cowx
7    * 
8    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
9    * use this file except in compliance with the License. You may obtain a copy of
10   * the License at
11   * 
12   * http://www.apache.org/licenses/LICENSE-2.0
13   * 
14   * Unless required by applicable law or agreed to in writing, software
15   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17   * License for the specific language governing permissions and limitations under
18   * the License.
19   * 
20   * =============================================================================
21   */
22  
23  import java.util.Properties;
24  import java.util.Vector;
25  
26  import javax.swing.JPanel;
27  
28  import com.explosion.expf.ExpActionListener;
29  import com.explosion.expf.ExpModuleManager;
30  import com.explosion.utilities.preferences.Preference;
31  
32  /***
33   * @author Steve.Cowx
34   */
35  public class FreeFormModuleManager implements ExpModuleManager
36  {
37  
38      /***
39       * @see com.explosion.expf.ExpModuleManager#getDescription()
40       * @return
41       */
42      public String getDescription()
43      {
44          return null;
45      }
46  
47      /***
48       * @see com.explosion.expf.ExpModuleManager#getGlobalListener()
49       * @return
50       */
51      public ExpActionListener getGlobalListener()
52      {
53          return null;
54      }
55  
56      /***
57       * @see com.explosion.expf.ExpModuleManager#getName()
58       * @return
59       */
60      public String getName()
61      {
62          return null;
63      }
64  
65      /***
66       * @see com.explosion.expf.ExpModuleManager#getPreference(java.lang.String)
67       * @param preferenceName
68       * @return
69       */
70      public Preference getPreference(String preferenceName)
71      {
72          return null;
73      }
74  
75      /***
76       * @see com.explosion.expf.ExpModuleManager#getPreferences()
77       * @return
78       */
79      public Vector getPreferences()
80      {
81          return null;
82      }
83  
84      /***
85       * @see com.explosion.expf.ExpModuleManager#getPreferencesEditor()
86       * @return
87       */
88      public JPanel getPreferencesEditor()
89      {
90          return null;
91      }
92  
93      /***
94       * @see com.explosion.expf.ExpModuleManager#getVersion()
95       * @return
96       */
97      public String getVersion()
98      {
99          return null;
100     }
101 
102     /***
103      * @param moduleAttributes
104      * @see com.explosion.expf.ExpModuleManager#initialiseCore(Properties)
105      */
106     public void initialiseCore(Properties properties)
107     {}
108 
109     /***
110      * @see com.explosion.expf.ExpModuleManager#initialiseGui()
111      * @throws Exception
112      */
113     public void initialiseGui() throws Exception
114     {}
115 }