KickJava   Java API By Example, From Geeks To Geeks.

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


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 ANativeModifier extends PModifier
9 {
10     private TNative _native_;
11
12     public ANativeModifier()
13     {
14     }
15
16     public ANativeModifier(
17         TNative _native_)
18     {
19         setNative(_native_);
20
21     }
22     public Object JavaDoc clone()
23     {
24         return new ANativeModifier(
25             (TNative) cloneNode(_native_));
26     }
27
28     public void apply(Switch sw)
29     {
30         ((Analysis) sw).caseANativeModifier(this);
31     }
32
33     public TNative getNative()
34     {
35         return _native_;
36     }
37
38     public void setNative(TNative node)
39     {
40         if(_native_ != null)
41         {
42             _native_.parent(null);
43         }
44
45         if(node != null)
46         {
47             if(node.parent() != null)
48             {
49                 node.parent().removeChild(node);
50             }
51
52             node.parent(this);
53         }
54
55         _native_ = node;
56     }
57
58     public String JavaDoc toString()
59     {
60         return ""
61             + toString(_native_);
62     }
63
64     void removeChild(Node child)
65     {
66         if(_native_ == child)
67         {
68             _native_ = null;
69             return;
70         }
71
72     }
73
74     void replaceChild(Node oldChild, Node newChild)
75     {
76         if(_native_ == oldChild)
77         {
78             setNative((TNative) newChild);
79             return;
80         }
81
82     }
83 }
84
Popular Tags