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

Last change on this file since 7937 was 7937, checked in by bastiK, 9 years ago

add subversion property svn:eol=native

  • 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 org.junit.Ignore;
5
6import javax.swing.JFrame;
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 static public void main(String args[]) {
20 new ChangesetQueryDialogTest().start();
21 }
22}
Note: See TracBrowser for help on using the repository browser.