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

soot.asm.UnitContainer Maven / Gradle / Ivy

package soot.asm;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 1997 - 2014 Raja Vallee-Rai and others
 * %%
 * 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.Unit;
import soot.UnitBox;
import soot.UnitPrinter;
import soot.ValueBox;
import soot.tagkit.Host;
import soot.tagkit.Tag;
import soot.util.Switch;

/**
 * A psuedo unit containing different units.
 * 
 * @author Aaloan Miftah
 */
@SuppressWarnings("serial")
class UnitContainer implements Unit {

  final Unit[] units;

  UnitContainer(Unit... units) {
    this.units = units;
  }

  /**
   * Searches the depth of the UnitContainer until the actual first Unit represented is found.
   *
   * @return
   */
  Unit getFirstUnit() {
    Unit ret = units[0];
    while (ret instanceof UnitContainer) {
      ret = ((UnitContainer) ret).units[0];
    }
    return ret;
  }

  @Override
  public Object clone() {
    throw new UnsupportedOperationException();
  }

  public void apply(Switch sw) {
    throw new UnsupportedOperationException();
  }

  public List getTags() {
    throw new UnsupportedOperationException();
  }

  public Tag getTag(String aName) {
    throw new UnsupportedOperationException();
  }

  public void addTag(Tag t) {
    throw new UnsupportedOperationException();
  }

  public void removeTag(String name) {
    throw new UnsupportedOperationException();
  }

  public boolean hasTag(String aName) {
    throw new UnsupportedOperationException();
  }

  public void removeAllTags() {
    throw new UnsupportedOperationException();
  }

  public void addAllTagsOf(Host h) {
    throw new UnsupportedOperationException();
  }

  public List getUseBoxes() {
    throw new UnsupportedOperationException();
  }

  public List getDefBoxes() {
    throw new UnsupportedOperationException();
  }

  public List getUnitBoxes() {
    throw new UnsupportedOperationException();
  }

  public List getBoxesPointingToThis() {
    throw new UnsupportedOperationException();
  }

  public void addBoxPointingToThis(UnitBox b) {
    throw new UnsupportedOperationException();
  }

  public void removeBoxPointingToThis(UnitBox b) {
    throw new UnsupportedOperationException();
  }

  public void clearUnitBoxes() {
    throw new UnsupportedOperationException();
  }

  public List getUseAndDefBoxes() {
    throw new UnsupportedOperationException();
  }

  public boolean fallsThrough() {
    throw new UnsupportedOperationException();
  }

  public boolean branches() {
    throw new UnsupportedOperationException();
  }

  public void toString(UnitPrinter up) {
    throw new UnsupportedOperationException();
  }

  public void redirectJumpsToThisTo(Unit newLocation) {
    throw new UnsupportedOperationException();
  }

  @Override
  public int getJavaSourceStartLineNumber() {
    throw new UnsupportedOperationException();
  }

  @Override
  public int getJavaSourceStartColumnNumber() {
    throw new UnsupportedOperationException();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy