Package net.sf.joafip

Source Code of net.sf.joafip.MainNotStorableClass

package net.sf.joafip;

import net.sf.joafip.asm.Type;

public class MainNotStorableClass {

  public static void main(String[] args) {
    Type type = Type.getType(NotStorableClass.class);
    System.out.println(type.getDescriptor());
    type = Type.getType(int.class);
    System.out.println(type.getDescriptor());
  }
}
TOP

Related Classes of net.sf.joafip.MainNotStorableClass

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.