KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > soot > jimple > parser > node > AImplementsClause


1 /* This file was generated by SableCC (http://www.sablecc.org/). */
2
3 package soot.jimple.parser.node;
4
5 import java.util.*;
6 import soot.jimple.parser.analysis.*;
7
8 public final class AImplementsClause extends PImplementsClause
9 {
10     private TImplements _implements_;
11     private PClassNameList _classNameList_;
12
13     public AImplementsClause()
14     {
15     }
16
17     public AImplementsClause(
18         TImplements _implements_,
19         PClassNameList _classNameList_)
20     {
21         setImplements(_implements_);
22
23         setClassNameList(_classNameList_);
24
25     }
26     public Object JavaDoc clone()
27     {
28         return new AImplementsClause(
29             (TImplements) cloneNode(_implements_),
30             (PClassNameList) cloneNode(_classNameList_));
31     }
32
33     public void apply(Switch sw)
34     {
35         ((Analysis) sw).caseAImplementsClause(this);
36     }
37
38     public TImplements getImplements()
39     {
40         return _implements_;
41     }
42
43     public void setImplements(TImplements node)
44     {
45         if(_implements_ != null)
46         {
47             _implements_.parent(null);
48         }
49
50         if(node != null)
51         {
52             if(node.parent() != null)
53             {
54                 node.parent().removeChild(node);
55             }
56
57             node.parent(this);
58         }
59
60         _implements_ = node;
61     }
62
63     public PClassNameList getClassNameList()
64     {
65         return _classNameList_;
66     }
67
68     public void setClassNameList(PClassNameList node)
69     {
70         if(_classNameList_ != null)
71         {
72             _classNameList_.parent(null);
73         }
74
75         if(node != null)
76         {
77             if(node.parent() != null)
78             {
79                 node.parent().removeChild(node);
80             }
81
82             node.parent(this);
83         }
84
85         _classNameList_ = node;
86     }
87
88     public String JavaDoc toString()
89     {
90         return ""
91             + toString(_implements_)
92             + toString(_classNameList_);
93     }
94
95     void removeChild(Node child)
96     {
97         if(_implements_ == child)
98         {
99             _implements_ = null;
100             return;
101         }
102
103         if(_classNameList_ == child)
104         {
105             _classNameList_ = null;
106             return;
107         }
108
109     }
110
111     void replaceChild(Node oldChild, Node newChild)
112     {
113         if(_implements_ == oldChild)
114         {
115             setImplements((TImplements) newChild);
116             return;
117         }
118
119         if(_classNameList_ == oldChild)
120         {
121             setClassNameList((PClassNameList) newChild);
122             return;
123         }
124
125     }
126 }
127
Popular Tags