1 11 package org.eclipse.jdt.internal.core; 12 13 import org.eclipse.jdt.core.Signature; 14 import org.eclipse.jdt.internal.compiler.env.ISourceField; 15 16 19 20 public class SourceFieldElementInfo extends MemberElementInfo implements ISourceField { 21 22 25 protected char[] typeName; 26 27 30 protected char[] initializationSource; 31 32 36 public char[] getInitializationSource() { 37 return this.initializationSource; 38 } 39 42 public char[] getTypeName() { 43 return this.typeName; 44 } 45 50 protected String getTypeSignature() { 51 return Signature.createTypeSignature(this.typeName, false); 52 } 53 54 57 protected void setTypeName(char[] typeName) { 58 this.typeName = typeName; 59 } 60 } 61 | Popular Tags |