1 11 package org.eclipse.jdt.internal.core; 12 13 16 abstract class MemberElementInfo extends SourceRefElementInfo { 17 22 protected int flags; 23 24 28 protected int nameStart= -1; 29 30 34 protected int nameEnd= -1; 35 36 41 public int getModifiers() { 42 return this.flags; 43 } 44 49 public int getNameSourceEnd() { 50 return this.nameEnd; 51 } 52 57 public int getNameSourceStart() { 58 return this.nameStart; 59 } 60 protected void setFlags(int flags) { 61 this.flags = flags; 62 } 63 67 protected void setNameSourceEnd(int end) { 68 this.nameEnd= end; 69 } 70 74 protected void setNameSourceStart(int start) { 75 this.nameStart= start; 76 } 77 } 78 | Popular Tags |