< prev index next >

test/com/sun/jdi/connect/spi/DebugUsingCustomConnector.java

Print this page
rev 11832 : 8078896: Add @modules as needed to the jdk_svc tests
Reviewed-by: alanb, mchung
   1 /*
   2  * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 4287596
  26  * @summary Unit test for "Pluggable Connectors and Transports" feature.
  27  *
  28  * This tests launches a debuggee using a custom LaunchingConnector.
  29  *

  30  * @build DebugUsingCustomConnector SimpleLaunchingConnector Foo NullTransportService
  31  * @run main/othervm DebugUsingCustomConnector
  32  */
  33 import com.sun.jdi.*;
  34 import com.sun.jdi.connect.*;
  35 import java.util.*;
  36 
  37 public class DebugUsingCustomConnector {
  38 
  39     static Connector find(List l, String name) {
  40         Iterator i = l.iterator();
  41         while (i.hasNext()) {
  42             Connector c = (Connector)i.next();
  43             if (c.name().equals(name)) {
  44                 return c;
  45             }
  46         }
  47         return null;
  48     }
  49 


   1 /*
   2  * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 4287596
  26  * @summary Unit test for "Pluggable Connectors and Transports" feature.
  27  *
  28  * This tests launches a debuggee using a custom LaunchingConnector.
  29  *
  30  * @modules jdk.jdi/com.sun.tools.jdi
  31  * @build DebugUsingCustomConnector SimpleLaunchingConnector Foo NullTransportService
  32  * @run main/othervm DebugUsingCustomConnector
  33  */
  34 import com.sun.jdi.*;
  35 import com.sun.jdi.connect.*;
  36 import java.util.*;
  37 
  38 public class DebugUsingCustomConnector {
  39 
  40     static Connector find(List l, String name) {
  41         Iterator i = l.iterator();
  42         while (i.hasNext()) {
  43             Connector c = (Connector)i.next();
  44             if (c.name().equals(name)) {
  45                 return c;
  46             }
  47         }
  48         return null;
  49     }
  50 


< prev index next >