/usr/lib/bouml/html/128130.bodies is in bouml-plugouts-src 4.21-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | class ConfirmBox
!!!128514.java!!! ConfirmBox(inout msg : string)
super(new Frame(), "Html generator", true);
setLayout(new BorderLayout());
add("Center", new Label(msg));
Panel p = new Panel();
p.setLayout(new FlowLayout());
p.add(yes = new Button("Yes"));
yes.addActionListener(this);
p.add(no = new Button("No"));
no.addActionListener(this);
add("South",p);
pack();
Dimension d = getToolkit().getScreenSize();
setLocation(d.width/2,d.height/2);
setModal(true);
show();
!!!128386.java!!! ok() : bool
return choice;
!!!128642.java!!! actionPerformed(inout ae : ActionEvent) : void
if(ae.getSource() == yes) {
choice = true;
dispose();
}
else if(ae.getSource() == no) {
choice = false;
dispose();
}
|