source: branches/GNU/src/gcc/libjava/java/net/InetAddress.java@ 3

Last change on this file since 3 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 8.5 KB
Line 
1// INetAddress.java -- An Internet Protocol (IP) address.
2
3/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
4
5 This file is part of libgcj.
6
7This software is copyrighted work licensed under the terms of the
8Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9details. */
10
11package java.net;
12import java.io.ObjectInputStream;
13import java.io.ObjectOutputStream;
14import java.io.IOException;
15
16/**
17 * @author Per Bothner
18 * @date January 6, 1999.
19 */
20
21/*
22 * Written using on-line Java Platform 1.2 API Specification, as well
23 * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
24 * (The latter turns out to have some errors ...)
25 * Status: Believed complete and correct.
26 */