1 33 34 package edu.rice.cs.drjava.model.definitions.indent; 35 36 import edu.rice.cs.drjava.model.AbstractDJDocument; 37 import edu.rice.cs.drjava.model.definitions.reducedmodel.*; 38 39 44 public class QuestionBraceIsCurly extends IndentRuleQuestion { 45 46 49 public QuestionBraceIsCurly(IndentRule yesRule, IndentRule noRule) { super(yesRule, noRule); } 50 51 54 boolean applyRule(AbstractDJDocument doc, int reason) { 55 58 IndentInfo info = doc.getIndentInformation(); 59 60 return info.braceType.equals(IndentInfo.openSquiggly); 61 } 62 } 63 | Popular Tags |