code
stringlengths
3
1.18M
language
stringclasses
1 value
import java.net.*; import java.io.IOException; import java.io.InputStream; public class Socket_SetTimeoutBeforeBlockingInput_1 { public static void main(String[] args) throws IOException { // This program assumes the following socket cannot read input // immediately. If this assumption does not hold, this ...
Java
import java.net.*; import java.io.IOException; import java.io.OutputStream; public class Socket_OutputStreamUnavailable_1 { public static void main(String[] args) throws IOException { testValid(); testNotConnected(); testClosed(); testShutdown(); } private static void testValid() throws Unkno...
Java
import java.net.*; import java.io.UnsupportedEncodingException; public class URLDecoder_DecodeUTF8_1 { public static void main(String[] args) throws UnsupportedEncodingException { URLDecoder.decode("Hello", "utf-8"); // As UTF-8 is recommended, the following should trigger the property // handler. U...
Java
import java.net.*; public class SocketPermission_Actions_1 { public static void main(String[] args) { create(true, "listen"); create(true, "listen,accept"); create(false, ""); create(false, "foo"); create(false, "foo,listen"); create(false, "listen,foo"); } private static void create(bool...
Java
import java.net.*; import java.io.InputStream; public class HttpURLConnection_SetBeforeConnect_1 { public static void main(String[] args) throws Exception { URL url = new URL("http://www.illinois.edu"); HttpURLConnection conn = (HttpURLConnection)url.openConnection(); // One can set options before a co...
Java
import java.net.*; public class DatagramPacket_Length_1 { public static void main(String[] args) { byte[] buffer = new byte[5]; DatagramPacket good = null; DatagramPacket bad = null; good = new DatagramPacket(buffer, 5); try { bad = new DatagramPacket(buffer, 6); } catch (IllegalArgume...
Java
import java.net.*; import java.io.IOException; public class ContentHandler_GetContent_1 { public static void main(String[] args) throws Exception { ContentHandler handler = new MyContentHandler(); Object content = handler.getContent(null); } static class MyContentHandler extends ContentHandler { @O...
Java
import java.net.*; public class DatagramSocket_Port_1 { public static void main(String[] args) throws SocketException { DatagramSocket bad = null; try { bad = new DatagramSocket(65536); } catch (IllegalArgumentException e) { } try { bad = new DatagramSocket(65536, null); } catch...
Java
import java.net.*; public class InetSocketAddress_Port_1 { public static void main(String[] args) { create(true, 65535); create(false, 65536); } private static void create(boolean legal, int port) { try { InetSocketAddress addr = new InetSocketAddress("localhost", port); } catch (Illegal...
Java
import java.net.*; import java.io.IOException; import java.io.InputStream; public class Socket_CloseInput_1 { public static void main(String[] args) throws IOException, SocketException { Socket sock = new Socket("www.illinois.edu", 80); InputStream input = sock.getInputStream(); sock.close(); // ...
Java
import java.net.*; public class NetPermission_Actions_1 { public static void main(String[] args) { create(true, null); create(false, "foo"); } private static void create(boolean legal, String actions) { try { NetPermission p = new NetPermission("*", actions); } catch (IllegalArgumentExce...
Java
import java.net.*; public class IDN_ToAscii_1 { public static void main(String[] args) { toAscii(true, "abc"); toAscii(false, "\uAC00\uB098\uB2E4"); } private static void toAscii(boolean legal, String input) { try { IDN.toASCII(input); } catch (IllegalArgumentException e) { if (legal) ...
Java
import java.net.*; import java.io.UnsupportedEncodingException; public class URLEncoder_EncodeUTF8_1 { public static void main(String[] args) throws UnsupportedEncodingException { URLEncoder.encode("Hello", "utf-8"); // As UTF-8 is recommended, the following should trigger the property // handler. U...
Java
import java.net.*; import java.io.IOException; public class MulticastSocket_TTL_1 { public static void main(String[] args) throws IOException { MulticastSocket socket = new MulticastSocket(); set(true, socket, 255); set(false, socket, 256); } private static void set(boolean legal, MulticastSocket s...
Java
import java.net.*; import java.io.IOException; public class ServerSocket_Port_1 { public static void main(String[] args) throws IOException { ServerSocket good = new ServerSocket(65535, 50); ServerSocket bad = null; try { bad = new ServerSocket(65536); } catch (IllegalArgumentException e) {...
Java
import java.net.*; public class PasswordAuthentication_FillZeroPassword_1 { public static void main(String[] args) { String user = "user"; String passwd = "passwd"; PasswordAuthentication auth = new PasswordAuthentication(user, passwd.toCharArray()); char[] obtained = auth.getPassword(); // java....
Java
import java.net.*; import java.io.IOException; public class ServerSocket_SetTimeoutBeforeBlocking_1 { public static void main(String[] args) throws IOException { final ServerSocket sock = new ServerSocket(65535); // The following method call is fine; after 2 seconds, accept() will // raise the SocketTi...
Java
import java.net.*; import java.io.IOException; import java.security.Permission; public class URLConnection_OverrideGetPermission_1 { public static void main(String[] args) throws Exception { URLConnection a1 = new Inner_1(); URLConnection a2 = new Inner_2(); } static class Inner_1 extends URLConnecti...
Java
import java.net.*; public class NetPermission_Name_1 { public static void main(String[] args) { create(true, "*"); create(true, "foo"); create(true, "foo*"); create(true, "foo.*"); create(false, "*foo"); create(false, "f*o"); } private static void create(boolean legal, String name) { t...
Java
import java.net.*; import java.io.IOException; public class Socket_PerformancePreferences_1 { public static void main(String[] args) throws IOException, SocketException { Socket sock = new Socket(); // The following call is fine. sock.setPerformancePreferences(1, 0, 0); InetSocketAddress addr = ne...
Java
import java.net.*; import java.io.InputStream; public class URLConnection_Connect_1 { public static void main(String[] args) throws Exception { URL url = new URL("http://www.illinois.edu"); URLConnection conn = url.openConnection(); // The URLConnection is connected to the server. InputStream input ...
Java
import java.net.*; public class Socket_TrafficClass_1 { public static void main(String[] args) throws SocketException { Socket socket = new Socket(); set(true, socket, 0); set(true, socket, 1 << 1); set(true, socket, 1 << 2); set(true, socket, 1 << 3); set(true, socket, 1 << 4); // The val...
Java
import java.net.*; public class HttpCookie_Domain_1 { public static void main(String[] args) throws SocketException { HttpCookie cookie = new HttpCookie("name", "val"); set(true, cookie, "Abc012"); set(true, cookie, "Abc012_"); set(true, cookie, "Abc+012"); // A quoted-string can contain some sp...
Java
import java.net.*; import java.io.IOException; public class Socket_ReuseSocket_1 { public static void main(String[] args) throws IOException, SocketException { Socket sock = new Socket("www.illinois.edu", 80); sock.close(); // After close(), the socket should not be reused for binding or // connec...
Java
import java.net.*; import java.io.IOException; public class ServerSocket_PerformancePreferences_1 { public static void main(String[] args) throws IOException, SocketException { ServerSocket sock = new ServerSocket(); // The following call is fine. sock.setPerformancePreferences(1, 0, 0); sock.bind...
Java
import java.net.*; import java.io.IOException; import java.io.InputStream; public class Socket_InputStreamUnavailable_1 { public static void main(String[] args) throws IOException { testValid(); testNotConnected(); testClosed(); testShutdown(); } private static void testValid() throws Unknown...
Java
import java.net.*; public class DatagramSocket_TrafficClass_1 { public static void main(String[] args) throws SocketException { DatagramSocket socket = new DatagramSocket(); set(true, socket, 0); set(true, socket, 1 << 1); set(true, socket, 1 << 2); set(true, socket, 1 << 3); set(true, socket, ...
Java
import java.net.*; import java.io.InputStream; public class URLConnection_SetBeforeConnect_1 { public static void main(String[] args) throws Exception { URL url = new URL("http://www.illinois.edu"); URLConnection conn = (URLConnection)url.openConnection(); // One can set options before a connection is ...
Java
import java.net.*; import java.io.IOException; public class InetAddress_IsReachable_1 { public static void main(String[] args) throws Exception { call(true, 0, 0); call(false, -1, -1); call(false, -1, 0); call(false, 0, -1); } private static void call(boolean legal, int ttl, int timeout) throw...
Java
import java.net.*; import java.io.IOException; public class ServerSocket_LargeReceiveBuffer_1 { public static void main(String[] args) throws IOException { int largebuffer = 65536 + 1; ServerSocket unbound = new ServerSocket(); // A buffer larger than 64K bytes can be set, as the socket has not been ...
Java
import java.net.*; public class HttpCookie_Name_1 { public static void main(String[] args) throws SocketException { create(true, "Abc012"); create(true, "Abc012_"); create(true, "Abc+012"); // The name cannot contain space, tab, or many special characters, such as =. create(false, "Abc 012"); c...
Java
import java.net.*; public class Authenticator_OverrideGetPasswordAuthentication_1 { public static void main(String[] args) throws Exception { Authenticator a1 = new Inner_1(); Authenticator a2 = new Inner_2(); } static class Inner_1 extends Authenticator { @Override protected PasswordAuthenticati...
Java
import java.net.*; import java.io.IOException; public class Socket_LargeReceiveBuffer_1 { public static void main(String[] args) throws IOException { int largebuffer = 65536 + 1; Socket unconnected = new Socket(); // A buffer larger than 64K bytes can be set, as the socket has not been // connected ...
Java
import java.net.*; import java.io.IOException; public class ServerSocket_Backlog_1 { public static void main(String[] args) throws IOException { create(true, 65535, 1); create(false, 65534, 0); bind(true, 1); bind(false, 0); } private static void create(boolean legal, int port, int backlog) th...
Java
import java.net.*; import java.io.IOException; import java.io.OutputStream; public class Socket_CloseOutput_1 { public static void main(String[] args) throws IOException, SocketException { Socket sock = new Socket("www.illinois.edu", 80); OutputStream input = sock.getOutputStream(); sock.close(); ...
Java
import java.net.*; public class DatagramPacket_SetLength_1 { public static void main(String[] args) { byte[] buffer = new byte[5]; DatagramPacket packet1 = new DatagramPacket(buffer, 5); packet1.setLength(5); try { packet1.setLength(6); } catch (IllegalArgumentException e) { } Datag...
Java
import java.net.*; import java.io.IOException; public class ServerSocket_ReuseAddress_1 { public static void main(String[] args) throws IOException, SocketException { ServerSocket sock = new ServerSocket(); // The following call is fine. sock.setReuseAddress(true); sock.bind(null); // Now tha...
Java
/* * Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1998, 2005, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1998, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1998, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1998, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1998, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1998, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1998, 2000, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1997, 2005, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 1997, 2005, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 2000, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java
/* * Copyright (c) 2000, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
Java