1 11 package org.eclipse.jdt.internal.core; 12 13 16 public class SourceConstructorInfo extends SourceMethodElementInfo { 17 18 private static final char[] RETURN_TYPE_NAME = new char[]{'v', 'o','i', 'd'}; 19 20 public boolean isAnnotationMethod() { 21 return false; 23 } 24 25 public boolean isConstructor() { 26 return true; 27 } 28 29 public char[] getReturnTypeName() { 30 return RETURN_TYPE_NAME; 31 } 32 33 protected void setReturnType(char[] type) { 34 } 36 37 } 38 | Popular Tags |