1 23 package org.hammurapi.inspectors; 24 25 import org.hammurapi.InspectorBase; 26 27 import com.pavelvlasov.jsel.statements.ContinueStatement; 28 import com.pavelvlasov.review.SourceMarker; 29 30 31 37 public class ContinueRule extends InspectorBase { 38 39 public void visit(ContinueStatement element) { 40 if (element.getLabel()==null) { 41 context.reportViolation((SourceMarker) element); 42 } 43 } 44 45 57 } 58 | Popular Tags |