1   package eu.fbk.dkm.premon.util;
2   
3   /**
4    * Created by alessio on 29/10/15.
5    */
6   
7   public abstract class PremonResource {
8   
9       protected String fileName;
10      protected String type;
11      protected String lemma;
12  
13      protected Object main;
14  
15      public String getFileName() {
16          return fileName;
17      }
18  
19      public String getType() {
20          return type;
21      }
22  
23      public String getLemma() {
24          return lemma;
25      }
26  
27      @Override public String toString() {
28          return "PremonResource{" +
29                  "fileName='" + fileName + '\'' +
30                  ", type='" + type + '\'' +
31                  ", lemma='" + lemma + '\'' +
32                  ", main=" + main +
33                  '}';
34      }
35  }