source: josm/trunk/test/functional/org/openstreetmap/josm/gui/dialogs/changeset/query/ChangesetQueryDialogTest.java@ 2986

Last change on this file since 2986 was 2986, checked in by jttt, 14 years ago

Fix some of FindBugs warnings

File size: 557 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset.query;
3
4import javax.swing.JFrame;
5
6public class ChangesetQueryDialogTest extends JFrame {
7
8 private ChangesetQueryDialog dialog;
9
10 public ChangesetQueryDialogTest() {
11 }
12
13 public void start() {
14 dialog = new ChangesetQueryDialog(this);
15 dialog.initForUserInput();
16 dialog.setVisible(true);
17 }
18
19
20 static public void main(String args[]) {
21 new ChangesetQueryDialogTest().start();
22 }
23}
Note: See TracBrowser for help on using the repository browser.