Skip to contentPackage: BuildingPhase
BuildingPhase
Coverage
      1: package controller;
2: 
3: import java.io.IOException;
4: 
5: import parser.ParserException;
6: import reader.ReaderException;
7: import scanner.ScannerException;
8: 
9: /**
10:  * 
11:  */
12: 
13: /**
14:  * @author Hendrik
15:  * 
16:  */
17: public abstract class BuildingPhase extends AbstractPhase {
18: 
19:         @Override
20:         public abstract void action() throws ScannerException, InterruptedException, IOException,
21:                         ReaderException, ParserException;
22: }