1 package cve.esecutori.servizioEACBuildSemantic; 2 3 import java.util.*; 4 import javax.swing.*; 5 import javax.swing.tree.*; 6 7 public class SpecificationEventSem 8 { 9 private String actionUser; 10 private DefaultMutableTreeNode model; 11 private String path; 12 13 public void setActionUser(String name) { 14 actionUser=name; 15 } 16 17 public String getActionUser() { 18 return actionUser; 19 } 20 21 public void setModelTree(DefaultMutableTreeNode mod) { 22 model=mod; 23 } 24 25 public DefaultMutableTreeNode getModelTree() { 26 return model; 27 } 28 29 public void setFileTree(String pathFile) { 31 path=pathFile; 32 } 33 34 public String getFileTree() { 35 return path; 36 } 37 } | Popular Tags |