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

Last change on this file since 6881 was 6881, checked in by Don-vip, 10 years ago

javadoc/code style/minor refactorization

File size: 505 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 void start() {
11 dialog = new ChangesetQueryDialog(this);
12 dialog.initForUserInput();
13 dialog.setVisible(true);
14 }
15
16 static public void main(String args[]) {
17 new ChangesetQueryDialogTest().start();
18 }
19}
Note: See TracBrowser for help on using the repository browser.