Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-06-16 15:50:48 +0000
committerThomas Watson2017-06-16 15:50:48 +0000
commit436f783a93cbe6440ceef7ad71c06e22c53d3af8 (patch)
treef42f7b0e8b1bf0b67df6ae80994c912346a34e02 /bundles/org.eclipse.osgi/supplement
parent8c4c57fc16567b50b21a2e3764514f00cab86346 (diff)
downloadrt.equinox.framework-436f783a93cbe6440ceef7ad71c06e22c53d3af8.tar.gz
rt.equinox.framework-436f783a93cbe6440ceef7ad71c06e22c53d3af8.tar.xz
rt.equinox.framework-436f783a93cbe6440ceef7ad71c06e22c53d3af8.zip
Change-Id: I542dd7195b4156d856997d81780acd06006cc346 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.osgi/supplement')
-rw-r--r--bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/ExtendedLogService.java3
-rw-r--r--bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/Logger.java3
2 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/ExtendedLogService.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/ExtendedLogService.java
index 9b9b8f764..b208f80fb 100644
--- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/ExtendedLogService.java
+++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/ExtendedLogService.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2011 IBM Corporation and others
+ * Copyright (c) 2006, 2017 IBM Corporation and others
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
@@ -16,6 +16,7 @@ import org.osgi.service.log.LogService;
* @ThreadSafe
* @see Logger
* @since 3.7
+ * @noimplement This interface is not intended to be implemented by clients.
*/
public interface ExtendedLogService extends LogService, Logger {
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/Logger.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/Logger.java
index cb2954612..6ae08a4eb 100644
--- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/Logger.java
+++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/equinox/log/Logger.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2011 IBM Corporation and others
+ * Copyright (c) 2006, 2017 IBM Corporation and others
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
@@ -15,6 +15,7 @@ import org.osgi.service.log.LogService;
* @ThreadSafe
* @see LogService
* @since 3.7
+ * @noimplement This interface is not intended to be implemented by clients.
*/
public interface Logger extends org.osgi.service.log.Logger {
/**

Back to the top