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

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

checkstyle: various checks

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