1 package spoon.support.reflect.code; 2 3 import spoon.reflect.code.CtContinue; 4 import spoon.reflect.code.CtStatement; 5 import spoon.reflect.visitor.CtVisitor; 6 7 public class CtContinueImpl extends CtStatementImpl implements CtContinue { 8 private static final long serialVersionUID = 1L; 9 CtStatement labelledStatement; 10 11 public void accept(CtVisitor visitor) { 12 visitor.visitCtContinue(this); 13 } 14 15 public CtStatement getLabelledStatement() { 16 return labelledStatement; 17 } 18 19 public void setLabelledStatement(CtStatement labelledStatement) { 20 this.labelledStatement = labelledStatement; 21 } 22 23 } 24 | Popular Tags |