< prev index next >

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

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


   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 




   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  * This tests launches a debuggee using a custom LaunchingConnector.
  28  *
  29  * @modules jdk.jdi/com.sun.tools.jdi
  30  *
  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 >