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

📄 sourcecodebuilderconfiguration.java

📁 JASML is a java byte code compiler, providing yet another approach to view, write and edit java clas
💻 JAVA
字号:
package com.jasml.decompiler;

import com.jasml.helper.Util;

public class SourceCodeBuilderConfiguration {
	protected boolean showVersion = true;

	protected boolean showLineNumber = false;

	protected boolean labelInSingleLine = false;

	protected boolean showInfo = true;

	protected String labelPrefix = "line";

	protected int labelLength = 8;

	protected String instructionPadding = Util.padChar("", labelLength + 3, ' ');

	public SourceCodeBuilderConfiguration(boolean showVersion,boolean showLineNumber,boolean labelInSingleLine,boolean showInfo){
		this.showVersion = showVersion;
		this.showLineNumber = showLineNumber;
		this.labelInSingleLine = labelInSingleLine;
		this.showInfo = showInfo;
	}
	public SourceCodeBuilderConfiguration(){
		
	}
}

⌨️ 快捷键说明

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