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 ca.mcgill.sable.soot.*;
00036 import ca.mcgill.sable.soot.jimple.*;
00037 import ca.mcgill.sable.util.*;
00038 public class ClassDeclarationAnnotation extends Annotation {
00039 private SootClass sootClass;
00040
00041
00042
00043
00044 public ClassDeclarationAnnotation(edu.ksu.cis.bandera.jjjc.node.Node node) {
00045 super(node);
00046 }
00047 public void apply(Switch sw)
00048 {
00049 ((AnnotationSwitch) sw).caseClassDeclarationAnnotation(this);
00050 }
00051
00052
00053
00054 public Object clone() {
00055 ClassDeclarationAnnotation result = new ClassDeclarationAnnotation(node);
00056 result.setSootClass(getSootClass());
00057 return result;
00058 }
00059
00060
00061
00062
00063 public ca.mcgill.sable.soot.SootClass getSootClass() {
00064 return sootClass;
00065 }
00066
00067
00068
00069 public ca.mcgill.sable.soot.jimple.Stmt[] getStatements() {
00070 return new Stmt[0];
00071 }
00072
00073
00074
00075 public boolean removeStmt(ca.mcgill.sable.soot.jimple.Stmt stmt) throws AnnotationException {
00076 return false;
00077 }
00078
00079
00080
00081 public boolean removeStmtByMark(ca.mcgill.sable.soot.jimple.Stmt stmt) throws AnnotationException {
00082 return false;
00083 }
00084
00085
00086
00087 public boolean replaceStmt(ca.mcgill.sable.soot.jimple.Stmt oldStmt, ca.mcgill.sable.soot.jimple.Stmt newStmt) throws AnnotationException {
00088 return false;
00089 }
00090
00091
00092
00093 public boolean replaceStmtByMark(ca.mcgill.sable.soot.jimple.Stmt oldStmt, ca.mcgill.sable.soot.jimple.Stmt newStmt) throws AnnotationException {
00094 return false;
00095 }
00096
00097
00098
00099
00100 public void setSootClass(ca.mcgill.sable.soot.SootClass newSootClass) {
00101 sootClass = newSootClass;
00102 }
00103
00104
00105
00106
00107 public String toString() {
00108 return sootClass.toString();
00109 }
00110 }