View Javadoc

1   package net.sf.mvnflexreports;
2   
3   import java.io.File;
4   
5   /***
6    * @author RĂ©mi Flament
7    * 
8    */
9   public class ActionScriptParseError {
10  
11  	private File sourceFile;
12  
13  	private String error;
14  
15  	public File getSourceFile() {
16  		return sourceFile;
17  	}
18  
19  	public void setSourceFile(File sourceFile) {
20  		this.sourceFile = sourceFile;
21  	}
22  
23  	public String getError() {
24  		return error;
25  	}
26  
27  	public void setError(String error) {
28  		this.error = error;
29  	}
30  
31  }