1 package cve.esecutori.servizioEACesec; 2 3 import java.util.*; 4 5 12 public class SentenceEvent 13 { 14 17 private String actionUser; 18 19 22 private Collection sentence; 23 24 27 private Map rappresentations; 28 29 33 public void setActionUser(String name) { 34 actionUser=name; 35 } 36 37 41 public void setSentence(Collection sent) { 42 sentence=sent; 43 } 44 45 49 public void setRappresentations(Map rap) { 50 rappresentations=rap; 51 } 52 53 56 public Map getRappresentatons() { 57 return rappresentations; 58 } 59 60 63 public String getActionUser() { 64 return actionUser; 65 } 66 67 70 public Collection getSenetence() { 71 return sentence; 72 } 73 74 } 75 76 | Popular Tags |