Changeset 1476 for branches/GNU/src/gcc/libjava
- Timestamp:
- Sep 7, 2004, 4:49:39 AM (21 years ago)
- Location:
- branches/GNU/src/gcc/libjava
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc/libjava/java/net/NetworkInterface.java
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1475 r1476 116 116 117 117 /** 118 * Returns an network interface by name 119 * 120 * @param name The name of the interface to return 121 * 122 * @exception SocketException If an error occurs 123 * @exception NullPointerException If the specified name is null 118 * Returns an network interface by name 119 * 120 * @param name The name of the interface to return 121 * 122 * @return a <code>NetworkInterface</code> object representing the interface, 123 * or null if there is no interface with that name. 124 * 125 * @exception SocketException If an error occurs 126 * @exception NullPointerException If the specified name is null 124 127 */ 125 128 public static NetworkInterface getByName (String name) … … 138 141 } 139 142 140 throw new SocketException ("no network interface with this name exists"); 143 // No interface with the given name found. 144 return null; 141 145 } 142 146 -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/libjava/libltdl/ChangeLog
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.1.1.3
r1475 r1476 1 2004-05-31 Release Manager 2 3 * GCC 3.3.4 Released. 4 1 5 2004-02-14 Release Manager 2 6 -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/libjava/org/xml/sax/helpers/NewInstance.java
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1475 r1476 5 5 // NO WARRANTY! This class is in the Public Domain. 6 6 7 // $Id: NewInstance.java,v 1.1.2. 1 2002/12/20 03:50:17 tromeyExp $7 // $Id: NewInstance.java,v 1.1.2.4 2002/01/29 21:34:14 dbrownell Exp $ 8 8 9 9 package org.xml.sax.helpers; -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/libjava/org/xml/sax/helpers/package.html
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1475 r1476 1 1 <HTML><HEAD> 2 2 3 <!-- $Id: package.html,v 1. 1.2.1 2002/12/20 03:50:17 tromeyExp $ -->3 <!-- $Id: package.html,v 1.3.2.1 2001/11/09 20:32:58 dbrownell Exp $ --> 4 4 5 5 </HEAD><BODY> -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/libjava/org/xml/sax/package.html
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1475 r1476 1 1 <html><head> 2 2 3 <!-- $Id: package.html,v 1. 1.2.1 2002/12/20 03:50:17 tromeyExp $ -->3 <!-- $Id: package.html,v 1.2.2.2 2002/01/12 21:42:21 dbrownell Exp $ --> 4 4 5 5 </head><body> -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/libjava/testsuite/ChangeLog
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.1.1.3
r1475 r1476 1 2004-05-31 Release Manager 2 3 * GCC 3.3.4 Released. 4 1 5 2004-02-14 Release Manager 2 6 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.