classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: PortableServer API fixes.


From: Meskauskas Audrius
Subject: [cp-patches] FYI: PortableServer API fixes.
Date: Sat, 23 Jul 2005 09:40:04 +0200
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

2005-07-22  Audrius Meskauskas  <address@hidden>

* org/omg/PortableServer/RequestProcessingPolicyOperations.java,
org/omg/PortableServer/ServantRetentionPolicyOperations.java,
org/omg/PortableServer/ThreadPolicyOperations.java,
org/omg/PortableServer/IdAssignmentPolicyOperations.java,
org/omg/PortableServer/IdUniquenessPolicyOperations.java,
org/omg/PortableServer/ImplicitActivationPolicyOperations.java,
org/omg/PortableServer/LifespanPolicyOperations.java:
Inherit from PolicyOperations.

? gnu/javax/swing/plaf/gtk/icons/Thumbs.db
Index: org/omg/PortableServer/IdAssignmentPolicyOperations.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/org/omg/PortableServer/IdAssignmentPolicyOperations.java,v
retrieving revision 1.1
diff -u -r1.1 IdAssignmentPolicyOperations.java
--- org/omg/PortableServer/IdAssignmentPolicyOperations.java    17 Jul 2005 
20:05:27 -0000      1.1
+++ org/omg/PortableServer/IdAssignmentPolicyOperations.java    23 Jul 2005 
07:26:10 -0000
@@ -38,6 +38,7 @@
 
 package org.omg.PortableServer;
 
+import org.omg.CORBA.PolicyOperations;
 
 /**
  * Defines the operations, applicable to the IdAssignmentPolicy.
@@ -45,6 +46,7 @@
  * @author Audrius Meskauskas, Lithuania (address@hidden)
  */
 public interface IdAssignmentPolicyOperations
+  extends PolicyOperations
 {
   /**
    * Return the value of this policy type, stated by the current instance.
Index: org/omg/PortableServer/IdUniquenessPolicyOperations.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/org/omg/PortableServer/IdUniquenessPolicyOperations.java,v
retrieving revision 1.1
diff -u -r1.1 IdUniquenessPolicyOperations.java
--- org/omg/PortableServer/IdUniquenessPolicyOperations.java    17 Jul 2005 
20:05:27 -0000      1.1
+++ org/omg/PortableServer/IdUniquenessPolicyOperations.java    23 Jul 2005 
07:26:34 -0000
@@ -38,6 +38,7 @@
 
 package org.omg.PortableServer;
 
+import org.omg.CORBA.PolicyOperations;
 
 /**
  * Defines the operations, applicable to the IdUniquenessPolicy.
@@ -45,6 +46,7 @@
  * @author Audrius Meskauskas, Lithuania (address@hidden)
  */
 public interface IdUniquenessPolicyOperations
+  extends PolicyOperations
 {
   /**
    * Return the value of this policy type, stated by the current instance.
Index: org/omg/PortableServer/ImplicitActivationPolicyOperations.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/org/omg/PortableServer/ImplicitActivationPolicyOperations.java,v
retrieving revision 1.1
diff -u -r1.1 ImplicitActivationPolicyOperations.java
--- org/omg/PortableServer/ImplicitActivationPolicyOperations.java      17 Jul 
2005 20:05:27 -0000      1.1
+++ org/omg/PortableServer/ImplicitActivationPolicyOperations.java      23 Jul 
2005 07:26:52 -0000
@@ -38,6 +38,7 @@
 
 package org.omg.PortableServer;
 
+import org.omg.CORBA.PolicyOperations;
 
 /**
  * Defines the operations, applicable to the ImplicitActivationPolicy.
@@ -45,6 +46,7 @@
  * @author Audrius Meskauskas, Lithuania (address@hidden)
  */
 public interface ImplicitActivationPolicyOperations
+  extends PolicyOperations
 {
   /**
    * Return the value of this policy type, stated by the current instance.
Index: org/omg/PortableServer/LifespanPolicyOperations.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/org/omg/PortableServer/LifespanPolicyOperations.java,v
retrieving revision 1.1
diff -u -r1.1 LifespanPolicyOperations.java
--- org/omg/PortableServer/LifespanPolicyOperations.java        17 Jul 2005 
20:05:27 -0000      1.1
+++ org/omg/PortableServer/LifespanPolicyOperations.java        23 Jul 2005 
07:28:24 -0000
@@ -38,6 +38,7 @@
 
 package org.omg.PortableServer;
 
+import org.omg.CORBA.PolicyOperations;
 
 /**
  * Defines the operations, applicable to the LifespanPolicy.
@@ -45,6 +46,7 @@
  * @author Audrius Meskauskas, Lithuania (address@hidden)
  */
 public interface LifespanPolicyOperations
+  extends PolicyOperations
 {
   /**
    * Return the value of this policy type, stated by the current instance.
Index: org/omg/PortableServer/RequestProcessingPolicyOperations.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/org/omg/PortableServer/RequestProcessingPolicyOperations.java,v
retrieving revision 1.1
diff -u -r1.1 RequestProcessingPolicyOperations.java
--- org/omg/PortableServer/RequestProcessingPolicyOperations.java       17 Jul 
2005 20:05:27 -0000      1.1
+++ org/omg/PortableServer/RequestProcessingPolicyOperations.java       23 Jul 
2005 07:28:24 -0000
@@ -38,6 +38,7 @@
 
 package org.omg.PortableServer;
 
+import org.omg.CORBA.PolicyOperations;
 
 /**
  * Defines the operations, applicable to the RequestProcessingPolicy.
@@ -45,6 +46,7 @@
  * @author Audrius Meskauskas, Lithuania (address@hidden)
  */
 public interface RequestProcessingPolicyOperations
+  extends PolicyOperations
 {
   /**
    * Return the value of this policy type, stated by the current instance.
Index: org/omg/PortableServer/ServantRetentionPolicyOperations.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/org/omg/PortableServer/ServantRetentionPolicyOperations.java,v
retrieving revision 1.1
diff -u -r1.1 ServantRetentionPolicyOperations.java
--- org/omg/PortableServer/ServantRetentionPolicyOperations.java        17 Jul 
2005 20:05:27 -0000      1.1
+++ org/omg/PortableServer/ServantRetentionPolicyOperations.java        23 Jul 
2005 07:28:24 -0000
@@ -38,6 +38,7 @@
 
 package org.omg.PortableServer;
 
+import org.omg.CORBA.PolicyOperations;
 
 /**
  * Defines the operations, applicable to the ServantRetentionPolicy.
@@ -45,6 +46,7 @@
  * @author Audrius Meskauskas, Lithuania (address@hidden)
  */
 public interface ServantRetentionPolicyOperations
+  extends PolicyOperations
 {
   /**
    * Return the value of this policy type, stated by the current instance.
Index: org/omg/PortableServer/ThreadPolicyOperations.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/org/omg/PortableServer/ThreadPolicyOperations.java,v
retrieving revision 1.1
diff -u -r1.1 ThreadPolicyOperations.java
--- org/omg/PortableServer/ThreadPolicyOperations.java  17 Jul 2005 20:05:27 
-0000      1.1
+++ org/omg/PortableServer/ThreadPolicyOperations.java  23 Jul 2005 07:28:24 
-0000
@@ -38,6 +38,7 @@
 
 package org.omg.PortableServer;
 
+import org.omg.CORBA.PolicyOperations;
 
 /**
  * Defines the operations, applicable to the ThreadPolicy.
@@ -45,6 +46,7 @@
  * @author Audrius Meskauskas, Lithuania (address@hidden)
  */
 public interface ThreadPolicyOperations
+  extends PolicyOperations
 {
   /**
    * Return the value of this policy type, stated by the current instance.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]