MCPcopy Create free account
hub / github.com/bit4woo/ReSign / mouseClicked

Method mouseClicked

src/burp/BurpExtender.java:196–209  ·  view source on GitHub ↗
(MouseEvent e)

Source from the content-addressed store, hash-verified

194 JLabel lblNewLabel = new JLabel(extenderName+" https://github.com/bit4woo");
195 lblNewLabel.addMouseListener(new MouseAdapter() {
196 @Override
197 public void mouseClicked(MouseEvent e) {
198 try {
199 URI uri = new URI("https://github.com/bit4woo");
200 Desktop desktop = Desktop.getDesktop();
201 if(Desktop.isDesktopSupported()&&desktop.isSupported(Desktop.Action.BROWSE)){
202 desktop.browse(uri);
203 }
204 } catch (Exception e2) {
205 // TODO: handle exception
206 BurpExtender.this.callbacks.printError(e2.getMessage());
207 }
208
209 }
210 @Override
211 public void mouseEntered(MouseEvent e) {
212 lblNewLabel.setForeground(Color.BLUE);

Callers

nothing calls this directly

Calls 3

printErrorMethod · 0.80
setTextMethod · 0.80
getMessageMethod · 0.65

Tested by

no test coverage detected