EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.codegen.simucontroller.workflow.jobs]

COVERAGE SUMMARY FOR SOURCE FILE [WorkflowHooks.java]

nameclass, %method, %block, %line, %
WorkflowHooks.java0%   (0/1)0%   (0/3)0%   (0/28)0%   (0/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class WorkflowHooks0%   (0/1)0%   (0/3)0%   (0/28)0%   (0/9)
<static initializer> 0%   (0/1)0%   (0/7)0%   (0/4)
WorkflowHooks (): void 0%   (0/1)0%   (0/3)0%   (0/1)
getAllWorkflowHookIDs (): List 0%   (0/1)0%   (0/18)0%   (0/5)

1package de.uka.ipd.sdq.codegen.simucontroller.workflow.jobs;
2 
3import java.util.LinkedList;
4import java.util.List;
5 
6public class WorkflowHooks {
7    
8    /** The id of the workflow extending configuration tabs have to register for. */
9    public static String WORKFLOW_ID_BEFORE_DOCK = "workflow.extension.simucom.before.dock";
10    
11    /** The id of the workflow extending configuration tabs have to register for. */
12    public static String WORKFLOW_ID_AFTER_DOCK = "workflow.extension.simucom.after.dock";
13    
14    /** The id of the workflow extending configuration tabs have to register for. */
15    public static String WORKFLOW_ID_AFTER_LOAD_VALIDATE = "workflow.extension.simucom.after.load.validate";
16    
17    /**
18     * Get a list of ids of all extendible workflow extension points.
19     * 
20     * @return The list of ids.
21     */
22    public static List<String> getAllWorkflowHookIDs(){
23        
24        List<String> idList = new LinkedList<String>();
25        idList.add(WORKFLOW_ID_AFTER_LOAD_VALIDATE);
26        idList.add(WORKFLOW_ID_BEFORE_DOCK);
27        idList.add(WORKFLOW_ID_AFTER_DOCK);
28        return idList;
29    }
30 
31}

[all classes][de.uka.ipd.sdq.codegen.simucontroller.workflow.jobs]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov