comparison jvmci/jdk.vm.ci.meta/src/jdk/vm/ci/meta/ValueKind.java @ 23397:a7b12c1ab514

Javadoc fix.
author Roland Schatz <roland.schatz@oracle.com>
date Fri, 13 May 2016 16:38:50 +0200
parents 9ed5b586018b
children 282873d0192c
comparison
equal deleted inserted replaced
23396:9ed5b586018b 23397:a7b12c1ab514
76 public final PlatformKind getPlatformKind() { 76 public final PlatformKind getPlatformKind() {
77 return platformKind; 77 return platformKind;
78 } 78 }
79 79
80 /** 80 /**
81 * Create a new {@link ValueKind} with a different {@link PlatformKind}. Subclasses should 81 * Create a new {@link ValueKind} with a different {@link PlatformKind}. Subclasses must
82 * override this to preserve the additional information added by the compiler. 82 * override this to preserve the additional information added by the compiler.
83 */ 83 */
84 public abstract K changeType(PlatformKind newPlatformKind); 84 public abstract K changeType(PlatformKind newPlatformKind);
85 } 85 }