Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src/org/osgi/service/condpermadmin/ConditionalPermissionInfo.java')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/service/condpermadmin/ConditionalPermissionInfo.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/service/condpermadmin/ConditionalPermissionInfo.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/service/condpermadmin/ConditionalPermissionInfo.java
index 1630bc4c5..77b137fef 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/service/condpermadmin/ConditionalPermissionInfo.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/service/condpermadmin/ConditionalPermissionInfo.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) OSGi Alliance (2004, 2013). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2004, 2015). All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -85,7 +85,7 @@ public interface ConditionalPermissionInfo {
* 1.1.
* @throws SecurityException If the caller does not have
* {@code AllPermission}.
- * @deprecated Since 1.1. Use
+ * @deprecated As of 1.1. Use
* {@link ConditionalPermissionAdmin#newConditionalPermissionUpdate()}
* instead to manage the Conditional Permissions.
*/
@@ -159,6 +159,7 @@ public interface ConditionalPermissionInfo {
* {@code ConditionalPermissionInfo}.
* @since 1.1
*/
+ @Override
String toString();
/**
@@ -177,6 +178,7 @@ public interface ConditionalPermissionInfo {
* otherwise.
* @since 1.1
*/
+ @Override
boolean equals(Object obj);
/**
@@ -185,5 +187,6 @@ public interface ConditionalPermissionInfo {
* @return A hash code value for this object.
* @since 1.1
*/
+ @Override
int hashCode();
}

Back to the top