# HG changeset patch # User Doug Simon # Date 1398614616 -7200 # Node ID 21204413a6de751f946773d670e463e08824eebe # Parent 1d3c23e675eda034d49a38782d194c170019164b fixed javadoc errors diff -r 1d3c23e675ed -r 21204413a6de graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/MatchGenerator.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/MatchGenerator.java Sun Apr 27 17:29:19 2014 +0200 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/match/MatchGenerator.java Sun Apr 27 18:03:36 2014 +0200 @@ -26,10 +26,11 @@ /** * Code generator for complex match patterns. - * - * @returns null if the match can't be generated or a {@link ComplexMatchResult} that can be - * evaluated during LIR generation to produce the final LIR value. */ public interface MatchGenerator { + /** + * @returns null if the match can't be generated or a {@link ComplexMatchResult} that can be + * evaluated during LIR generation to produce the final LIR value. + */ ComplexMatchResult match(NodeLIRBuilder gen); } diff -r 1d3c23e675ed -r 21204413a6de graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/cfs/State.java --- a/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/cfs/State.java Sun Apr 27 17:29:19 2014 +0200 +++ b/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/cfs/State.java Sun Apr 27 18:03:36 2014 +0200 @@ -346,7 +346,7 @@ } /** - * @retun null if no type-witness available for the argument, the witness otherwise. + * @return null if no type-witness available for the argument, the witness otherwise. */ public Witness typeInfo(ValueNode object) { assert FlowUtil.hasLegalObjectStamp(object); @@ -354,7 +354,7 @@ } /** - * @retun true iff the argument is known to stand for null. + * @return true iff the argument is known to stand for null. */ public boolean isNull(ValueNode object) { assert FlowUtil.hasLegalObjectStamp(object); @@ -377,7 +377,7 @@ * is-non-null set. *

* - * @retun true iff the argument is known to stand for non-null. + * @return true iff the argument is known to stand for non-null. */ public boolean isNonNull(ValueNode object) { assert FlowUtil.hasLegalObjectStamp(object); @@ -389,7 +389,7 @@ } /** - * @retun true iff the argument is known to stand for an object conforming to the given type. + * @return true iff the argument is known to stand for an object conforming to the given type. */ public boolean knownToConform(ValueNode object, ResolvedJavaType to) { assert FlowUtil.hasLegalObjectStamp(object); @@ -411,8 +411,8 @@ } /** - * @retun true iff the argument is known to stand for an object that definitely does not conform - * to the given type. + * @return true iff the argument is known to stand for an object that definitely does not + * conform to the given type. */ public boolean knownNotToConform(ValueNode object, ResolvedJavaType to) { assert FlowUtil.hasLegalObjectStamp(object); @@ -454,7 +454,7 @@ * final: exact non-interface reference-type * non-f: non-exact non-interface reference-type * - * @retun true iff the first argument is known not to conform to the second argument. + * @return true iff the first argument is known not to conform to the second argument. */ // @formatter:on public static boolean knownNotToConform(ResolvedJavaType a, ResolvedJavaType b) {