00001 package edu.ksu.cis.bandera.abstraction.specification.node;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 import java.util.*;
00039 import edu.ksu.cis.bandera.abstraction.specification.analysis.*;
00040
00041 public final class AOctIntLiteral extends PLiteral
00042 {
00043 private TOctIntLiteral _octIntLiteral_;
00044
00045 public AOctIntLiteral()
00046 {
00047 }
00048 public AOctIntLiteral(
00049 TOctIntLiteral _octIntLiteral_)
00050 {
00051 setOctIntLiteral(_octIntLiteral_);
00052
00053 }
00054 public void apply(Switch sw)
00055 {
00056 ((Analysis) sw).caseAOctIntLiteral(this);
00057 }
00058 public Object clone()
00059 {
00060 return new AOctIntLiteral(
00061 (TOctIntLiteral) cloneNode(_octIntLiteral_));
00062 }
00063 public TOctIntLiteral getOctIntLiteral()
00064 {
00065 return _octIntLiteral_;
00066 }
00067 void removeChild(Node child)
00068 {
00069 if(_octIntLiteral_ == child)
00070 {
00071 _octIntLiteral_ = null;
00072 return;
00073 }
00074
00075 }
00076 void replaceChild(Node oldChild, Node newChild)
00077 {
00078 if(_octIntLiteral_ == oldChild)
00079 {
00080 setOctIntLiteral((TOctIntLiteral) newChild);
00081 return;
00082 }
00083
00084 }
00085 public void setOctIntLiteral(TOctIntLiteral node)
00086 {
00087 if(_octIntLiteral_ != null)
00088 {
00089 _octIntLiteral_.parent(null);
00090 }
00091
00092 if(node != null)
00093 {
00094 if(node.parent() != null)
00095 {
00096 node.parent().removeChild(node);
00097 }
00098
00099 node.parent(this);
00100 }
00101
00102 _octIntLiteral_ = node;
00103 }
00104 public String toString()
00105 {
00106 return ""
00107 + toString(_octIntLiteral_);
00108 }
00109 }