Package limpidlog.asm1

Source Code of limpidlog.asm1.MemberVariable

//Copyright 2006-2007 Acelet Corporation. All rights reserved.

package limpidlog.asm1;

import limpidlog.log.Common;

/**
* @author Wei Jiang
*/

public class MemberVariable {
  public static int KIND_STATIC = 0;
  public static int KIND_INSTANCE = 1;

  public String name;
  public String desc;
  public int kind;
  public String functionDesc;

  public MemberVariable(String name, String desc, int kind) {
    this.name = name;
    this.desc = desc;
    this.kind = kind;

    functionDesc = new Common().makeFunctionDesc(desc);
  }

  public String toString() {
    return name + "," + desc + "," + kind;
  }
}
TOP

Related Classes of limpidlog.asm1.MemberVariable

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.