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

com.yworks.yshrink.model.Invocation Maven / Gradle / Ivy

Go to download

The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts

There is a newer version: 4.1.1
Show newest version
package com.yworks.yshrink.model;

/**
 * @author Michael Schroeder, yWorks GmbH http://www.yworks.com
 */
public class Invocation {

  private int opcode;
  private String type;
  private String name;
  private String desc;

  public Invocation( int opcode, String type, String name, String desc ) {
    this.opcode = opcode;
    this.type = type;
    this.name = name;
    this.desc = desc;
  }

  public int getOpcode() {
    return opcode;
  }

  public String getType() {
    return type;
  }

  public String getName() {
    return name;
  }

  public String getDesc() {
    return desc;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy