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 aName) { 14 super(aName, Trigger.BIND); 15 } 16 } 17