~ubuntu-branches/ubuntu/raring/accessodf/raring

« back to all changes in this revision

Viewing changes to core/be/docarch/accessodf/Report.java

  • Committer: Package Import Robot
  • Author(s): Sebastian Humenda
  • Date: 2012-04-09 11:21:13 UTC
  • Revision ID: package-import@ubuntu.com-20120409112113-v0kmfdj1ks80xoj8
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 *  AccessODF - Accessibility checker for OpenOffice.org and LibreOffice Writer.
 
3
 *
 
4
 *  Copyright (c) 2011 by DocArch <http://www.docarch.be>.
 
5
 *
 
6
 *  This program is free software: you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU Lesser General Public License as
 
8
 *  published by the Free Software Foundation, either version 3 of the
 
9
 *  License, or (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU Lesser General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU Lesser General Public License
 
17
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
package be.docarch.accessodf;
 
21
 
 
22
import java.io.File;
 
23
 
 
24
/**
 
25
 * Class representing an accessibility report (EARL)
 
26
 *
 
27
 * @author Bert Frees
 
28
 */
 
29
public class Report {
 
30
 
 
31
    private File file = null;
 
32
    private String name = null;
 
33
 
 
34
    public Report(File file,
 
35
                  String name) {
 
36
 
 
37
        this.file = file;
 
38
        this.name = name;
 
39
    }
 
40
 
 
41
    public File getFile() {
 
42
        return file;
 
43
    }
 
44
 
 
45
    public String getName() {
 
46
        return name;
 
47
    }
 
48
}