~ubuntu-branches/ubuntu/precise/classpath/precise

« back to all changes in this revision

Viewing changes to java/rmi/server/Operation.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2006-05-27 16:11:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060527161115-h6e39eposdt5snb6
Tags: 2:0.91-3
* Install header files to /usr/include/classpath.
* debian/control: classpath: Conflict with jamvm < 1.4.3 and
  cacao < 0.96 (Closes: #368172).

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
package java.rmi.server;
39
39
 
40
40
/**
 
41
 * This class was used with jdk 1.1 stubs and skeletons. It is no longer
 
42
 * needed since jdk 1.2 and higher.
 
43
 *  
41
44
 * @deprecated
42
45
 */
43
46
public class Operation
45
48
  private String operation;
46
49
 
47
50
  /**
 
51
   * Create operation with the given name.
48
52
   * @deprecated
49
53
   */
50
54
  public Operation (String op)
53
57
  }
54
58
 
55
59
  /**
 
60
   * Get the name of the operation.
 
61
   * 
56
62
   * @deprecated
57
63
   */
58
64
  public String getOperation ()
61
67
  }
62
68
 
63
69
  /**
 
70
   * Return the name of the operation.
 
71
   * 
64
72
   * @deprecated
65
73
   */
66
74
  public String toString ()