1 11 package org.eclipse.jdt.internal.core; 12 13 16 public class SourceMethodInfo extends SourceMethodElementInfo { 17 18 22 protected char[] returnType; 23 24 public boolean isAnnotationMethod() { 25 return false; 26 } 27 28 public boolean isConstructor() { 29 return false; 30 } 31 32 public char[] getReturnTypeName() { 33 return this.returnType; 34 } 35 36 protected void setReturnType(char[] type) { 37 this.returnType = type; 38 } 39 40 } 41 | Popular Tags |