< prev index next >

test/jdk/javax/swing/JEditorPane/bug4714674.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 4714674
  26    @summary Tests that JEditorPane opens HTTP connection asynchronously
  27    @author Peter Zhelezniakov
  28    @modules java.desktop
  29             jdk.httpserver
  30    @run main bug4714674
  31 */
  32 
  33 import javax.swing.*;
  34 
  35 import com.sun.net.httpserver.HttpExchange;
  36 import com.sun.net.httpserver.HttpHandler;
  37 import com.sun.net.httpserver.HttpServer;
  38 import java.io.IOException;
  39 import java.net.InetSocketAddress;
  40 import java.util.concurrent.Executors;
  41 
  42 
  43 public class bug4714674 {
  44 
  45     public static void main(String[] args) throws Exception {
  46         new bug4714674().test();
  47     }
  48 
  49     private void test() throws Exception {
  50         final DeafServer server = new DeafServer();




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 4714674
  26    @summary Tests that JEditorPane opens HTTP connection asynchronously
  27    @author Peter Zhelezniakov
  28    @modules java.desktop
  29             jdk.httpserver
  30    @run main/othervm bug4714674
  31 */
  32 
  33 import javax.swing.*;
  34 
  35 import com.sun.net.httpserver.HttpExchange;
  36 import com.sun.net.httpserver.HttpHandler;
  37 import com.sun.net.httpserver.HttpServer;
  38 import java.io.IOException;
  39 import java.net.InetSocketAddress;
  40 import java.util.concurrent.Executors;
  41 
  42 
  43 public class bug4714674 {
  44 
  45     public static void main(String[] args) throws Exception {
  46         new bug4714674().test();
  47     }
  48 
  49     private void test() throws Exception {
  50         final DeafServer server = new DeafServer();


< prev index next >