📄 sourcecodebuilderconfiguration.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 + -