sourcecodebuilderconfiguration.java

来自「JASML is a java byte code compiler, prov」· Java 代码 · 共 30 行

JAVA
30
字号
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 + =
减小字号Ctrl + -
显示快捷键?