buildframework/helium/sf/java/signaling/src/com/nokia/helium/signal/ant/types/SignalNotifierList.java
changeset 628 7c4a911dc066
parent 588 c7c26511138f
child 645 b8d81fa19e7d
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
    16 */
    16 */
    17 
    17 
    18  
    18  
    19 package com.nokia.helium.signal.ant.types;
    19 package com.nokia.helium.signal.ant.types;
    20 
    20 
       
    21 import java.util.Vector;
       
    22 
    21 import org.apache.tools.ant.types.DataType;
    23 import org.apache.tools.ant.types.DataType;
       
    24 
    22 import com.nokia.helium.signal.Notifier;
    25 import com.nokia.helium.signal.Notifier;
    23 
       
    24 
       
    25 import java.util.Vector;
       
    26 
    26 
    27     
    27     
    28 /**
    28 /**
    29  * Helper class to store the list of notifiers.
    29  * Helper class to store the list of notifiers.
    30  *
    30  *
    51     }
    51     }
    52             
    52             
    53     /**
    53     /**
    54      * Returns the list of variables available in the VariableSet 
    54      * Returns the list of variables available in the VariableSet 
    55      * @return variable list
    55      * @return variable list
    56      * @throws HlmAntLibException
       
    57      */
    56      */
    58     public Vector<Notifier> getNotifierList() {
    57     public Vector<Notifier> getNotifierList() {
    59         return notifierlist;
    58         return notifierlist;
    60     }
    59     }
    61 }
    60 }