KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jzonic > jlo > handler > AbstractHandler


1 package org.jzonic.jlo.handler;
2
3 /**
4  * @author mecky
5  *
6  * To change this generated comment edit the template variable "typecomment":
7  * Window>Preferences>Java>Templates.
8  * To enable and disable the creation of type comments go to
9  * Window>Preferences>Java>Code Generation.
10  */

11 public abstract class AbstractHandler implements Handler {
12
13     private String JavaDoc configName;
14     
15     private AbstractHandler() {
16     }
17     
18     public AbstractHandler(String JavaDoc configName) {
19         this.configName = configName;
20     }
21     
22     public String JavaDoc getConfigurationName() {
23         return configName;
24     }
25 }
26
Popular Tags