comparison graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/MatchStatementSet.java @ 18163:c88ab4f1f04a

re-enabled Checkstyle with the release of 6.0 that supports Java 8; fixed existing Checkstyle warnings
author Doug Simon <doug.simon@oracle.com>
date Fri, 24 Oct 2014 16:18:10 +0200
parents 27ff0792b048
children e6637891a870
comparison
equal deleted inserted replaced
18162:ab62800259ff 18163:c88ab4f1f04a
30 public interface MatchStatementSet extends Service { 30 public interface MatchStatementSet extends Service {
31 /** 31 /**
32 * @return the {@link NodeLIRBuilder} subclass which defined this set of {@link MatchStatement} 32 * @return the {@link NodeLIRBuilder} subclass which defined this set of {@link MatchStatement}
33 * instances. 33 * instances.
34 */ 34 */
35 public Class<? extends NodeLIRBuilder> forClass(); 35 Class<? extends NodeLIRBuilder> forClass();
36 36
37 /** 37 /**
38 * @return the {@link MatchStatement}s available for this {@link NodeLIRBuilder} subclass. 38 * @return the {@link MatchStatement}s available for this {@link NodeLIRBuilder} subclass.
39 */ 39 */
40 public List<MatchStatement> statements(MatchRuleRegistry.NodeClassLookup lookup); 40 List<MatchStatement> statements(MatchRuleRegistry.NodeClassLookup lookup);
41 } 41 }