Project

General

Profile

« Previous | Next » 

Revision 52891

Added by Tsampikos Livisianos over 5 years ago

add empty constructors

View differences:

Report.java
5 5
import java.util.List;
6 6

  
7 7
public class Report {
8
    private final String created;
9
    private final String version;
10
    private final String name;
8
    private String created;
9
    private String version;
10
    private String name;
11 11

  
12
    private final Vendor vendor = new Vendor();
12
    private Vendor vendor = new Vendor();
13 13

  
14
    private final Customer customer;
14
    private Customer customer;
15 15

  
16
    public Report() {
17
    }
18

  
16 19
    public Report(String created, String name, String version, String requestor, List<ReportItem> reportItems) {
17 20
        this.created = created;
18 21
        this.version = version;

Also available in: Unified diff