KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.kilim.description;
2
3 /**
4  * @author horn
5  */

6 public class UnBindTrigger extends Trigger {
7
8     /**
9      * public constructor of unbind triggers.
10      * @param aName :
11      */

12     public UnBindTrigger(String JavaDoc aName) {
13         super(aName, Trigger.UNBIND);
14     }
15 }
16
Popular Tags