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

soot.jimple.toolkits.annotation.nullcheck.RefIntPair Maven / Gradle / Ivy

package soot.jimple.toolkits.annotation.nullcheck;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 2000 Janus
 * %%
 * 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 soot.EquivalentValue;

/**
 * @deprecated only used by deprecated type {@link BranchedRefVarsAnalysis}; flagged for future deletion
 */
@Deprecated
public class RefIntPair {
  private EquivalentValue _ref;
  private int _val;

  // constructor is not public so that people go throught the ref pair constants factory on the analysis
  RefIntPair(EquivalentValue r, int v, BranchedRefVarsAnalysis brva) {
    this._ref = r;
    this._val = v;
  }

  public EquivalentValue ref() {
    return this._ref;
  }

  public int val() {
    return this._val;
  }

  public String toString() {
    String prefix = "(" + _ref + ", ";
    if (_val == BranchedRefVarsAnalysis.kNull) {
      return prefix + "null)";
    } else if (_val == BranchedRefVarsAnalysis.kNonNull) {
      return prefix + "non-null)";
    } else if (_val == BranchedRefVarsAnalysis.kTop) {
      return prefix + "top)";
    } else if (_val == BranchedRefVarsAnalysis.kBottom) {
      return prefix + "bottom)";
    } else {
      return prefix + _val + ")";
    }
  }
} // end class RefIntPair




© 2015 - 2024 Weber Informatics LLC | Privacy Policy