01: /*
02: * Validator.java
03: *
04: * Created on November 9, 2006, 11:12 AM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.e2e.wsdl.validator;
11:
12: import java.util.ArrayList;
13: import java.util.List;
14:
15: /**
16: *
17: * @author Michal Skvor
18: */
19: public class Validator {
20:
21: private List<ReportNote> validationReport;
22:
23: /** Creates a new instance of Validator */
24: public Validator() {
25: validationReport = new ArrayList();
26: }
27:
28: }
|