1 11 package org.eclipse.jdt.internal.compiler.lookup; 12 13 public interface InvocationSite { 14 15 TypeBinding[] genericTypeArguments(); 16 boolean isSuperAccess(); 17 boolean isTypeAccess(); 18 void setDepth(int depth); 19 void setFieldIndex(int depth); 20 21 void setActualReceiverType(ReferenceBinding receiverType); 26 int sourceStart(); 27 int sourceEnd(); 28 } 29 | Popular Tags |