All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.SootMethodRef Maven / Gradle / Ivy

package soot;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 2004 Ondrej Lhotak
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 2.1 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import java.util.List;

import soot.SootMethodRefImpl.ClassResolutionFailedException;
import soot.options.Options;
import soot.util.NumberedString;

/**
 * Representation of a reference to a method as it appears in a class file. Note that the method directly referred to may not
 * actually exist; the actual target of the reference is determined according to the resolution procedure in the Java Virtual
 * Machine Specification, 2nd ed, section 5.4.3.3.
 */
public interface SootMethodRef extends SootMethodInterface {

  /**
   * Use {@link #getDeclaringClass()} instead
   */
  public @Deprecated SootClass declaringClass();

  /**
   * Use {@link #getName()} instead
   */
  public @Deprecated String name();

  /**
   * Use {@link #getParameterTypes()} instead
   */
  public @Deprecated List parameterTypes();

  /**
   * Use {@link #getReturnType()} instead
   */
  public @Deprecated Type returnType();

  public boolean isStatic();

  public NumberedString getSubSignature();

  public String getSignature();

  /**
   * Use {@link #getParameterType(int)} instead
   */
  public @Deprecated Type parameterType(int i);

  /**
   * Resolves this method call, i.e., finds the method to which this reference points. This method does not handle virtual
   * dispatch, it just gives the immediate target, which can also be an abstract method.
   *
   * @return The immediate target if this method reference
   * @throws ClassResolutionFailedException
   *           (can be suppressed by {@link Options#set_ignore_resolution_errors(boolean)})
   */
  public SootMethod resolve();

  /**
   * Tries to resolve this method call, i.e., tries to finds the method to which this reference points. This method does not
   * handle virtual dispatch, it just gives the immediate target, which can also be an abstract method. This method is
   * different from {@link #resolve()} in the following ways:
   *
   * (1) This method does not fail when the target method does not exist and phantom references are not allowed. In that
   * case, it returns null. (2) While {@link #resolve()} creates fake methods that throw exceptions when a
   * target method does not exist and phantom references are allowed, this method returns null.
   *
   * @return The immediate target if this method reference if available, null otherwise
   */
  public SootMethod tryResolve();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy