KickJava   Java API By Example, From Geeks To Geeks.

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


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 ASimpleNewExpr extends PNewExpr
9 {
10     private TNew _new_;
11     private PBaseType _baseType_;
12
13     public ASimpleNewExpr()
14     {
15     }
16
17     public ASimpleNewExpr(
18         TNew _new_,
19         PBaseType _baseType_)
20     {
21         setNew(_new_);
22
23         setBaseType(_baseType_);
24
25     }
26     public Object JavaDoc clone()
27     {
28         return new ASimpleNewExpr(
29             (TNew) cloneNode(_new_),
30             (PBaseType) cloneNode(_baseType_));
31     }
32
33     public void apply(Switch sw)
34     {
35         ((Analysis) sw).caseASimpleNewExpr(this);
36     }
37
38     public TNew getNew()
39     {
40         return _new_;
41     }
42
43     public void setNew(TNew node)
44     {
45         if(_new_ != null)
46         {
47             _new_.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         _new_ = node;
61     }
62
63     public PBaseType getBaseType()
64     {
65         return _baseType_;
66     }
67
68     public void setBaseType(PBaseType node)
69     {
70         if(_baseType_ != null)
71         {
72             _baseType_.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         _baseType_ = node;
86     }
87
88     public String JavaDoc toString()
89     {
90         return ""
91             + toString(_new_)
92             + toString(_baseType_);
93     }
94
95     void removeChild(Node child)
96     {
97         if(_new_ == child)
98         {
99             _new_ = null;
100             return;
101         }
102
103         if(_baseType_ == child)
104         {
105             _baseType_ = null;
106             return;
107         }
108
109     }
110
111     void replaceChild(Node oldChild, Node newChild)
112     {
113         if(_new_ == oldChild)
114         {
115             setNew((TNew) newChild);
116             return;
117         }
118
119         if(_baseType_ == oldChild)
120         {
121             setBaseType((PBaseType) newChild);
122             return;
123         }
124
125     }
126 }
127
Popular Tags