MCPcopy Index your code
hub / github.com/CompassSecurity/SAMLRaider / setText

Method setText

src/main/java/gui/SamlPanelStatus.java:26–36  ·  view source on GitHub ↗
(String text)

Source from the content-addressed store, hash-verified

24 }
25
26 public void setText(String text) {
27 this.textPane.setText(text);
28 if ("".equals(text)) {
29 this.remove(this.textPane);
30 this.setBorder(null);
31 } else {
32 this.add(this.textPane);
33 var borderColor = UIManager.getColor("Component.borderColor");
34 this.setBorder(new MatteBorder(1, 0, 0, 0, borderColor));
35 }
36 }
37
38 public String getText() {
39 return this.textPane.getText();

Callers 15

resetMessageMethod · 0.80
setInfoMessageTextMethod · 0.80
resetInfoMessageTextMethod · 0.80
initializeGuiMethod · 0.80
actionPerformedMethod · 0.80
setTxtStatusMethod · 0.80
setTxtSourceMethod · 0.80
setTxtSerialNumberMethod · 0.80
setTxtIssuerMethod · 0.80
setTxtNotBeforeMethod · 0.80
setTxtNotAfterMethod · 0.80
setTxtSubjectMethod · 0.80

Calls 1

equalsMethod · 0.80

Tested by 1

LiveTestingTabMethod · 0.64