⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dump.java

📁 Java Op Processor java vhdl processor
💻 JAVA
字号:
/* * Created on 04.06.2005 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */package com.jopdesign.build;import org.apache.bcel.classfile.*;/** * @author martin * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */public class Dump extends EmptyVisitor {	private JOPizer jz;	private ClassInfo cli;	private JavaClass clazz;	public Dump(JOPizer jz) {		this.jz = jz;	}		public void visitJavaClass(JavaClass clazz) {		this.clazz = clazz;		cli = ClassInfo.getClassInfo(clazz.getClassName());	}	public void visitMethod(Method method) {		jz.out.println(clazz.getClassName()+":"+method.getName()+method.getSignature());		jz.out.println(method.getCode());	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -