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 AOperatorOperatorTest extends POperatorTest
00042 {
00043 private POperator _operator_;
00044
00045 public AOperatorOperatorTest()
00046 {
00047 }
00048 public AOperatorOperatorTest(
00049 POperator _operator_)
00050 {
00051 setOperator(_operator_);
00052
00053 }
00054 public void apply(Switch sw)
00055 {
00056 ((Analysis) sw).caseAOperatorOperatorTest(this);
00057 }
00058 public Object clone()
00059 {
00060 return new AOperatorOperatorTest(
00061 (POperator) cloneNode(_operator_));
00062 }
00063 public POperator getOperator()
00064 {
00065 return _operator_;
00066 }
00067 void removeChild(Node child)
00068 {
00069 if(_operator_ == child)
00070 {
00071 _operator_ = null;
00072 return;
00073 }
00074
00075 }
00076 void replaceChild(Node oldChild, Node newChild)
00077 {
00078 if(_operator_ == oldChild)
00079 {
00080 setOperator((POperator) newChild);
00081 return;
00082 }
00083
00084 }
00085 public void setOperator(POperator node)
00086 {
00087 if(_operator_ != null)
00088 {
00089 _operator_.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 _operator_ = node;
00103 }
00104 public String toString()
00105 {
00106 return ""
00107 + toString(_operator_);
00108 }
00109 }