~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.callgraph.genericzestdemo/src/org/eclipse/linuxtools/sleepingthreads/XMLData.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.eclipse.linuxtools.sleepingthreads;
 
2
 
 
3
public class XMLData {
 
4
        
 
5
        private int parent;
 
6
        private String name;
 
7
        private boolean isNode;
 
8
        private String text;
 
9
        private Object object;
 
10
        
 
11
        public boolean isNode() {
 
12
                return isNode;
 
13
        }
 
14
        
 
15
        public void setIsNode(boolean val) {
 
16
                isNode = val;
 
17
        }
 
18
 
 
19
        public void setParent(int val) {
 
20
                parent = val;
 
21
        }
 
22
        
 
23
        public int getParent() {
 
24
                return parent;
 
25
        }
 
26
 
 
27
        public void setName(String name) {
 
28
                this.name = name;
 
29
        }
 
30
 
 
31
        public String getName() {
 
32
                return name;
 
33
        }
 
34
 
 
35
        public String getText() {
 
36
                return text;
 
37
        }
 
38
 
 
39
        public void setText(String text) {
 
40
                this.text = text;
 
41
        }
 
42
 
 
43
        public Object getObject() {
 
44
                return object;
 
45
        }
 
46
 
 
47
        public void setObject(Object object) {
 
48
                this.object = object;
 
49
        }
 
50
        
 
51
 
 
52
}