We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1ff0e6 commit 6cfa06eCopy full SHA for 6cfa06e
1 file changed
src/main/kotlin/org/skgroup/securityinspector/ui/component/CallGraphUIComponents.kt
@@ -46,6 +46,20 @@ class CallGraphUIComponents(val project: Project) {
46
val sinkField = JBTextField(15)
47
val searchButton = JButton("Search")
48
49
+ val containInfo = JBCheckBox("Info").apply {
50
+ addActionListener {
51
+ val enabled = isSelected
52
+ System.setProperty("BUILD_WITH_METHOD_INFO", enabled.toString())
53
+ }
54
55
+
56
+ val containPath = JBCheckBox("Path").apply {
57
58
59
+ System.setProperty("BUILD_WITH_PATH", enabled.toString())
60
61
62
63
val systemPlatformLabel =
64
JBLabel("System Plat: ${System.getProperty("os.name")}", LEFT).apply {
65
border = JBUI.Borders.empty(5)
0 commit comments