KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cve > esecutori > servizioEACBuildSemantic > SpecificationEventSem


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 JavaDoc actionUser;
10    private DefaultMutableTreeNode model;
11    private String JavaDoc path;
12
13    public void setActionUser(String JavaDoc name) {
14       actionUser=name;
15    }
16
17    public String JavaDoc 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    //Passagio File
30
public void setFileTree(String JavaDoc pathFile) {
31       path=pathFile;
32    }
33
34    public String JavaDoc getFileTree() {
35       return path;
36    }
37 }
Popular Tags