View Javadoc
1   package de.fhdw.wtf.walker.tasks;
2   
3   import de.fhdw.wtf.common.ast.Model;
4   import de.fhdw.wtf.common.task.TaskExecutor;
5   import de.fhdw.wtf.walker.walker.SimpleWalkerTask;
6   
7   /**
8    * Abstract class for all referencers.
9    * 
10   * @author hfw413sc
11   *
12   */
13  public abstract class Referencer extends SimpleWalkerTask {
14  	
15  	/**
16  	 * Delegation of constructor to super constructor.
17  	 * 
18  	 * @param m
19  	 * @param taskmanager
20  	 */
21  	public Referencer(final Model m, final TaskExecutor taskmanager) {
22  		super(m, taskmanager);
23  	}
24  	
25  }