00001 package edu.ksu.cis.bandera.annotation;
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 import edu.ksu.cis.bandera.jjjc.node.*;
00036 import ca.mcgill.sable.soot.jimple.*;
00037 import ca.mcgill.sable.util.*;
00038 import java.util.*;
00039 public class LabeledStmtAnnotation extends SequentialAnnotation {
00040 private String id = null;
00041 private Annotation annotation = null;
00042
00043
00044
00045
00046 public LabeledStmtAnnotation(edu.ksu.cis.bandera.jjjc.node.Node node) {
00047 super(node);
00048 }
00049 public void apply(Switch sw)
00050 {
00051 ((AnnotationSwitch) sw).caseLabeledStmtAnnotation(this);
00052 }
00053
00054
00055
00056
00057 public Object clone() {
00058 LabeledStmtAnnotation result = new LabeledStmtAnnotation((Node) node.clone());
00059 result.id = id;
00060 if (annotation != null) result.annotation = (Annotation) annotation.clone();
00061 return result;
00062 }
00063
00064
00065
00066
00067
00068 public Vector getAllAnnotations(boolean includeSequential) {
00069 Vector result = new Vector();
00070 result.addElement(this);
00071 result.addAll(annotation.getAllAnnotations(includeSequential));
00072 return result;
00073 }
00074
00075
00076
00077
00078 public Annotation getAnnotation() {
00079 return annotation;
00080 }
00081
00082
00083
00084
00085
00086 public Annotation getContainingAnnotation(Stmt stmt) throws AnnotationException {
00087 return (annotation != null) ? annotation.getContainingAnnotation(stmt) : null;
00088 }
00089
00090
00091
00092
00093 public String getId() {
00094 return id;
00095 }
00096
00097
00098
00099
00100 public Stmt[] getStatements() {
00101 return (annotation != null) ? annotation.getStatements() : new Stmt[0];
00102 }
00103
00104
00105
00106
00107
00108 public boolean removeStmt(Stmt stmt) throws AnnotationException {
00109 if (annotation != null) return annotation.removeStmt(stmt);
00110 else return false;
00111 }
00112
00113
00114
00115
00116
00117 public boolean removeStmtByMark(Stmt stmt) throws AnnotationException {
00118 if (annotation != null) return annotation.removeStmtByMark(stmt);
00119 else return false;
00120 }
00121
00122
00123
00124
00125
00126
00127 public boolean replaceStmt(Stmt oldStmt, Stmt newStmt) throws AnnotationException {
00128 if (annotation != null) return annotation.replaceStmt(oldStmt, newStmt);
00129 else return false;
00130 }
00131
00132
00133
00134
00135
00136
00137 public boolean replaceStmtByMark(Stmt oldStmt, Stmt newStmt) throws AnnotationException {
00138 if (annotation != null) return annotation.replaceStmtByMark(oldStmt, newStmt);
00139 else return false;
00140 }
00141
00142
00143
00144
00145 public void setAnnotation(Annotation annotation) {
00146 this.annotation = annotation;
00147 this.annotation.setParent(this);
00148 }
00149
00150
00151
00152
00153 public void setId(String id) {
00154 this.id = id;
00155 }
00156
00157
00158
00159
00160 public String toString() {
00161 return id + ":";
00162 }
00163
00164
00165
00166
00167 public void validate(JimpleBody body) {
00168 if (annotation != null) annotation.validate(body);
00169 }
00170 }