/[classpath]/classpath/java/lang/Runnable.java
ViewVC logotype

Diff of /classpath/java/lang/Runnable.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by mark, Tue Jan 22 22:27:00 2002 UTC revision 1.8 by ericb, Wed Mar 20 20:04:32 2002 UTC
# Line 1  Line 1 
1  /* java.lang.Runnable  /* Runnable -- interface for a method tied to an Object; often for Threads
2     Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.     Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 7  GNU Classpath is free software; you can Line 7  GNU Classpath is free software; you can
7  it under the terms of the GNU General Public License as published by  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
9  any later version.  any later version.
10    
11  GNU Classpath is distributed in the hope that it will be useful, but  GNU Classpath is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Line 38  exception statement from your version. * Line 38  exception statement from your version. *
38    
39  package java.lang;  package java.lang;
40    
 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3  
  * "The Java Language Specification", ISBN 0-201-63451-1  
  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.  
  * Status:  Complete.  
  */  
   
41  /**  /**
42   * Runnable is an interface you implement to indicate that your class can be   * Runnable is an interface you implement to indicate that your class can be
43   * executed as the main part of a Thread, among other places.  When you want   * executed as the main part of a Thread, among other places.  When you want
# Line 52  package java.lang; Line 46  package java.lang;
46   *   *
47   * @author Paul Fisher   * @author Paul Fisher
48   * @author Tom Tromey <tromey@cygnus.com>   * @author Tom Tromey <tromey@cygnus.com>
49     * @see Thread
50     * @since 1.0
51     * @status updated to 1.4
52   */   */
   
53  public interface Runnable  public interface Runnable
54  {  {
55    /**    /**
56     * This method will be called by whoever wishes to run your class     * This method will be called by whoever wishes to run your class
57     * implementing Runnable.     * implementing Runnable. Note that there are no restrictions on what
58     * @since JDK1.0     * you are allowed to do in the run method, except that you cannot
59       * throw a checked exception.
60     */     */
61    void run();    void run();
62  }  }

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26