MCPcopy Create free account
hub / github.com/Kitware/VTK / run

Method run

Wrapping/Java/vtk/sample/SimpleVTK.java:74–82  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

72 public static void main(String s[]) {
73 SwingUtilities.invokeLater(new Runnable() {
74 public void run() {
75 JFrame frame = new JFrame("SimpleVTK");
76 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
77 frame.getContentPane().setLayout(new BorderLayout());
78 frame.getContentPane().add(new SimpleVTK(), BorderLayout.CENTER);
79 frame.setSize(400, 400);
80 frame.setLocationRelativeTo(null);
81 frame.setVisible(true);
82 }
83 });
84 }
85}

Callers

nothing calls this directly

Calls 2

setSizeMethod · 0.65
addMethod · 0.45

Tested by

no test coverage detected