1 package cve.esecutori.servizioEACesecSemantic; 2 3 import javax.swing.*; 4 import javax.swing.tree.*; 5 6 import java.util.*; 7 8 16 public class SentenceEvent 17 { 18 21 private String actionUser; 22 23 26 private Collection sentence; 27 28 31 private Map rappresentations; 32 33 private DefaultMutableTreeNode model; 34 private String path; 35 36 40 public void setActionUser(String name) { 41 actionUser=name; 42 } 43 44 48 public void setSentence(Collection sent) { 49 sentence=sent; 50 } 51 52 56 public void setRappresentations(Map rap) { 57 rappresentations=rap; 58 } 59 60 63 public Map getRappresentatons() { 64 return rappresentations; 65 } 66 67 70 public String getActionUser() { 71 return actionUser; 72 } 73 74 77 public Collection getSenetence() { 78 return sentence; 79 } 80 81 public void setModelTree(DefaultMutableTreeNode mod) { 83 model=mod; 84 } 85 86 public DefaultMutableTreeNode getModelTree() { 87 return model; 88 } 89 90 public void setFileTree(String pathFile) { 92 path=pathFile; 93 } 94 95 public String getFileTree() { 96 return path; 97 } 98 99 100 101 } | Popular Tags |