KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > kilim > description > BindTrigger


1 package org.objectweb.kilim.description;
2
3 /**
4  * @author horn.
5  * This class is a specialization of the generic Trigger class, which corresponds to a bind event.
6  */

7 public class BindTrigger extends Trigger {
8
9     /**
10      * the public constructor for a BindTrigger.
11      * @param aName : name of the trigger.
12      */

13     public BindTrigger(String JavaDoc aName) {
14         super(aName, Trigger.BIND);
15     }
16 }
17
Popular Tags