Return-Path: X-Original-To: apmail-felix-commits-archive@www.apache.org Delivered-To: apmail-felix-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A35F617472 for ; Tue, 9 Jun 2015 21:33:19 +0000 (UTC) Received: (qmail 2393 invoked by uid 500); 9 Jun 2015 21:33:19 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 2298 invoked by uid 500); 9 Jun 2015 21:33:19 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 1667 invoked by uid 99); 9 Jun 2015 21:33:19 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jun 2015 21:33:18 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id D1582AC06B4 for ; Tue, 9 Jun 2015 21:33:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1684537 [7/14] - in /felix/site/trunk/content/apidocs/dependencymanager/r5: ./ org/ org/apache/ org/apache/felix/ org/apache/felix/dm/ org/apache/felix/dm/context/ org/apache/felix/dm/diagnostics/ org/apache/felix/dm/tracker/ resources/ Date: Tue, 09 Jun 2015 21:33:18 -0000 To: commits@felix.apache.org From: pderop@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150609213318.D1582AC06B4@hades.apache.org> Added: felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/Logger.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/Logger.html?rev=1684537&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/Logger.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/Logger.html Tue Jun 9 21:33:17 2015 @@ -0,0 +1,644 @@ + + + + + +Logger + + + + + + + + + + + +
+
org.apache.felix.dm
+

Class Logger

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.felix.dm.Logger
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.util.EventListener, org.osgi.framework.ServiceListener
    +
    +
    +
    +
    public class Logger
    +extends java.lang.Object
    +implements org.osgi.framework.ServiceListener
    +
    This class mimics the standard OSGi LogService interface. An + instance of this class is used by the dependency manager for all logging. + By default this class logs messages to standard out. The log level can be set to + control the amount of logging performed, where a higher number results in + more logging. A log level of zero turns off logging completely. + + The log levels match those specified in the OSGi Log Service. + This class also tracks log services and will use the highest ranking + log service, if present, as a back end instead of printing to standard + out. The class uses reflection to invoking the log service's method to + avoid a dependency on the log interface, which is also why it does not + actually implement LogService. This class is in many ways + similar to the one used in the system bundle for that same purpose.
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Logger(org.osgi.framework.BundleContext context) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleandebug() 
      voiddebug(java.lang.String format, + java.lang.Object... params) 
      voiddebug(java.lang.String format, + java.lang.Throwable err, + java.lang.Object... params) 
      protected voiddoLog(org.osgi.framework.ServiceReference sr, + int level, + java.lang.String msg, + java.lang.Throwable throwable) 
      voiderr(java.lang.String format, + java.lang.Object... params) 
      voiderr(java.lang.String format, + java.lang.Throwable err, + java.lang.Object... params) 
      java.lang.StringgetDebugKey() 
      booleaninfo() 
      voidinfo(java.lang.String format, + java.lang.Object... params) 
      voidinfo(java.lang.String format, + java.lang.Throwable err, + java.lang.Object... params) 
      voidlog(int level, + java.lang.String msg) 
      voidlog(int level, + java.lang.String msg, + java.lang.Throwable throwable) 
      voidlog(org.osgi.framework.ServiceReference sr, + int level, + java.lang.String msg) 
      voidlog(org.osgi.framework.ServiceReference sr, + int level, + java.lang.String msg, + java.lang.Throwable throwable) 
      voidserviceChanged(org.osgi.framework.ServiceEvent event) +
      This method implements the callback for the ServiceListener interface.
      +
      voidsetDebugKey(java.lang.String debugKey) 
      voidsetEnabledLevel(int enabledLevel) 
      voidwarn(java.lang.String format, + java.lang.Object... params) 
      voidwarn(java.lang.String format, + java.lang.Throwable err, + java.lang.Object... params) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Logger

        +
        public Logger(org.osgi.framework.BundleContext context)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        log

        +
        public final void log(int level,
        +       java.lang.String msg)
        +
      • +
      + + + +
        +
      • +

        log

        +
        public final void log(int level,
        +       java.lang.String msg,
        +       java.lang.Throwable throwable)
        +
      • +
      + + + +
        +
      • +

        log

        +
        public final void log(org.osgi.framework.ServiceReference sr,
        +       int level,
        +       java.lang.String msg)
        +
      • +
      + + + +
        +
      • +

        log

        +
        public final void log(org.osgi.framework.ServiceReference sr,
        +       int level,
        +       java.lang.String msg,
        +       java.lang.Throwable throwable)
        +
      • +
      + + + +
        +
      • +

        doLog

        +
        protected void doLog(org.osgi.framework.ServiceReference sr,
        +         int level,
        +         java.lang.String msg,
        +         java.lang.Throwable throwable)
        +
      • +
      + + + +
        +
      • +

        serviceChanged

        +
        public final void serviceChanged(org.osgi.framework.ServiceEvent event)
        +
        This method implements the callback for the ServiceListener interface. + It is public as a byproduct of implementing the interface and should + not be called directly. This method tracks run-time changes to log + service availability. If the log service being used by the framework's + logging mechanism goes away, then this will try to find an alternative. + If a higher ranking log service is registered, then this will switch + to the higher ranking log service.
        +
        +
        Specified by:
        +
        serviceChanged in interface org.osgi.framework.ServiceListener
        +
        +
      • +
      + + + +
        +
      • +

        setEnabledLevel

        +
        public void setEnabledLevel(int enabledLevel)
        +
      • +
      + + + +
        +
      • +

        setDebugKey

        +
        public void setDebugKey(java.lang.String debugKey)
        +
      • +
      + + + +
        +
      • +

        getDebugKey

        +
        public java.lang.String getDebugKey()
        +
      • +
      + + + +
        +
      • +

        err

        +
        public void err(java.lang.String format,
        +       java.lang.Object... params)
        +
      • +
      + + + +
        +
      • +

        err

        +
        public void err(java.lang.String format,
        +       java.lang.Throwable err,
        +       java.lang.Object... params)
        +
      • +
      + + + +
        +
      • +

        warn

        +
        public void warn(java.lang.String format,
        +        java.lang.Object... params)
        +
      • +
      + + + +
        +
      • +

        warn

        +
        public void warn(java.lang.String format,
        +        java.lang.Throwable err,
        +        java.lang.Object... params)
        +
      • +
      + + + +
        +
      • +

        info

        +
        public boolean info()
        +
      • +
      + + + +
        +
      • +

        info

        +
        public void info(java.lang.String format,
        +        java.lang.Object... params)
        +
      • +
      + + + +
        +
      • +

        info

        +
        public void info(java.lang.String format,
        +        java.lang.Throwable err,
        +        java.lang.Object... params)
        +
      • +
      + + + +
        +
      • +

        debug

        +
        public boolean debug()
        +
      • +
      + + + +
        +
      • +

        debug

        +
        public void debug(java.lang.String format,
        +         java.lang.Object... params)
        +
      • +
      + + + +
        +
      • +

        debug

        +
        public void debug(java.lang.String format,
        +         java.lang.Throwable err,
        +         java.lang.Object... params)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/PropertyMetaData.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/PropertyMetaData.html?rev=1684537&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/PropertyMetaData.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/PropertyMetaData.html Tue Jun 9 21:33:17 2015 @@ -0,0 +1,350 @@ + + + + + +PropertyMetaData + + + + + + + + + + + +
+
org.apache.felix.dm
+

Interface PropertyMetaData

+
+
+
+
    +
  • +
    +
    +
    public interface PropertyMetaData
    +
    This interface defines meta data regarding a given configuration property.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setHeading

        +
        PropertyMetaData setHeading(java.lang.String heading)
        +
        The label used to display the property. Example: "Log Level".
        +
        Returns:
        The label used to display the property (may be localized)
        +
      • +
      + + + +
        +
      • +

        setId

        +
        PropertyMetaData setId(java.lang.String id)
        +
        The key of a ConfigurationAdmin property. Example: "printer.logLevel"
        +
        Returns:
        The Configuration Admin property name
        +
      • +
      + + + +
        +
      • +

        setType

        +
        PropertyMetaData setType(java.lang.Class<?> type)
        +
        Returns the property primitive type. If must be either one of the following types:

        +

          +
        • String.class
        • +
        • Long.class
        • +
        • Integer.class
        • +
        • Character.class
        • +
        • Byte.class
        • +
        • Double.class
        • +
        • Float.class
        • +
        • Boolean.class
        • +
        +
      • +
      + + + +
        +
      • +

        setDefaults

        +
        PropertyMetaData setDefaults(java.lang.String[] defaults)
        +
        Returns a default for this property. The object must be of the appropriate type as defined by the cardinality and getType(). + The return type is a list of String objects that can be converted to the appropriate type. The cardinality of the return + array must follow the absolute cardinality of this type. E.g. if the cardinality = 0, the array must contain 1 element. + If the cardinality is 1, it must contain 0 or 1 elements. If it is -5, it must contain from 0 to max 5 elements. Note that + the special case of a 0 cardinality, meaning a single value, does not allow arrays or vectors of 0 elements.
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        PropertyMetaData setDescription(java.lang.String description)
        +
        Returns the property description. The description may be localized and must describe the semantics of this type and any + constraints. Example: "Select the log level for the Printer Service".
        +
        Returns:
        a localizable description of the property.
        +
      • +
      + + + +
        +
      • +

        setCardinality

        +
        PropertyMetaData setCardinality(int cardinality)
        +
        Return the cardinality of this property. The OSGi environment handles multi valued properties in arrays ([]) or in Vector objects. + The return value is defined as follows:

        + +

          +
        • x = Integer.MIN_VALUE no limit, but use Vector
        • +
        • x < 0 -x = max occurrences, store in Vector
        • +
        • x > 0 x = max occurrences, store in array []
        • +
        • x = Integer.MAX_VALUE no limit, but use array []
        • +
        • x = 0 1 occurrence required
        • +
        +
      • +
      + + + +
        +
      • +

        setRequired

        +
        PropertyMetaData setRequired(boolean required)
        +
        Tells if this property is required or not.
        +
      • +
      + + + +
        +
      • +

        addOption

        +
        PropertyMetaData addOption(java.lang.String optionLabel,
        +                         java.lang.String optionValue)
        +
        Return a list of valid options for this property (the labels may be localized).
        +
        Returns:
        the list of valid options for this property.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/ResourceDependency.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/ResourceDependency.html?rev=1684537&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/ResourceDependency.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/ResourceDependency.html Tue Jun 9 21:33:17 2015 @@ -0,0 +1,472 @@ + + + + + +ResourceDependency + + + + + + + + + + + +
+
org.apache.felix.dm
+

Interface ResourceDependency

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    ComponentDependencyDeclaration, Dependency, ResourceHandler
    +
    +
    +
    +
    public interface ResourceDependency
    +extends Dependency, ComponentDependencyDeclaration, ResourceHandler
    +
    A resource dependency is a dependency on a resource. A resource in this context is an object that is + identified by a URL. Resources should somehow be provided by an external component, the resource + provider. These dependencies then react on them becoming available or not. Use cases for such dependencies + are resources that are embedded in bundles, in a workspace or some remote or local repository, etc.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setCallbacks

        +
        ResourceDependency setCallbacks(java.lang.String added,
        +                              java.lang.String removed)
        +
        Sets the callbacks for this service. These callbacks can be used as hooks whenever a + dependency is added or removed. When you specify callbacks, the auto configuration + feature is automatically turned off, because we're assuming you don't need it in this + case.
        +
        Parameters:
        added - the method to call when a service was added
        removed - the method to call when a service was removed
        +
        Returns:
        this service dependency
        +
      • +
      + + + +
        +
      • +

        setCallbacks

        +
        ResourceDependency setCallbacks(java.lang.String added,
        +                              java.lang.String changed,
        +                              java.lang.String removed)
        +
        Sets the callbacks for this service. These callbacks can be used as hooks whenever a + dependency is added, changed or removed. When you specify callbacks, the auto + configuration feature is automatically turned off, because we're assuming you don't + need it in this case.
        +
        Parameters:
        added - the method to call when a service was added
        changed - the method to call when a service was changed
        removed - the method to call when a service was removed
        +
        Returns:
        this service dependency
        +
      • +
      + + + +
        +
      • +

        setCallbacks

        +
        ResourceDependency setCallbacks(java.lang.Object instance,
        +                              java.lang.String added,
        +                              java.lang.String removed)
        +
        Sets the callbacks for this service. These callbacks can be used as hooks whenever a + dependency is added or removed. They are called on the instance you provide. When you + specify callbacks, the auto configuration feature is automatically turned off, because + we're assuming you don't need it in this case.
        +
        Parameters:
        instance - the instance to call the callbacks on
        added - the method to call when a service was added
        removed - the method to call when a service was removed
        +
        Returns:
        this service dependency
        +
      • +
      + + + +
        +
      • +

        setCallbacks

        +
        ResourceDependency setCallbacks(java.lang.Object instance,
        +                              java.lang.String added,
        +                              java.lang.String changed,
        +                              java.lang.String removed)
        +
        Sets the callbacks for this service. These callbacks can be used as hooks whenever a + dependency is added, changed or removed. They are called on the instance you provide. When you + specify callbacks, the auto configuration feature is automatically turned off, because + we're assuming you don't need it in this case.
        +
        Parameters:
        instance - the instance to call the callbacks on
        added - the method to call when a service was added
        changed - the method to call when a service was changed
        removed - the method to call when a service was removed
        +
        Returns:
        this service dependency
        +
      • +
      + + + +
        +
      • +

        setAutoConfig

        +
        ResourceDependency setAutoConfig(boolean autoConfig)
        +
        Sets auto configuration for this service. Auto configuration allows the + dependency to fill in any attributes in the service implementation that + are of the same type as this dependency. Default is on.
        +
        Parameters:
        autoConfig - the value of auto config
        +
        Returns:
        this service dependency
        +
      • +
      + + + +
        +
      • +

        setAutoConfig

        +
        ResourceDependency setAutoConfig(java.lang.String instanceName)
        +
        Sets auto configuration for this service. Auto configuration allows the + dependency to fill in the attribute in the service implementation that + has the same type and instance name.
        +
        Parameters:
        instanceName - the name of attribute to auto config
        +
        Returns:
        this service dependency
        +
      • +
      + + + +
        +
      • +

        setResource

        +
        ResourceDependency setResource(java.net.URL resource)
        +
        Sets the resource for this dependency.
        +
        Parameters:
        resource - the URL of the resource
        +
      • +
      + + + +
        +
      • +

        setRequired

        +
        ResourceDependency setRequired(boolean required)
        +
        Determines if this is a required dependency or not.
        +
        Parameters:
        required - true if the dependency is required
        +
      • +
      + + + +
        +
      • +

        setFilter

        +
        ResourceDependency setFilter(java.lang.String resourceFilter)
        +
        Sets the filter condition for this resource dependency.
        +
        Parameters:
        resourceFilter - the filter condition
        +
      • +
      + + + + + + + +
        +
      • +

        setPropagate

        +
        ResourceDependency setPropagate(java.lang.Object instance,
        +                              java.lang.String method)
        +
        Sets an Object instance and a callback method used to propagate some properties to the provided service properties. + The method will be invoked on the specified object instance and must have one of the following signatures:

        +

        • Dictionary callback(ServiceReference, Object service) +
        • Dictionary callback(ServiceReference) +
        +
        Parameters:
        instance - the Object instance which is used to retrieve propagated service properties
        method - the method to invoke for retrieving the properties to be propagated to the service properties.
        +
        Returns:
        this service dependency.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/ResourceHandler.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/ResourceHandler.html?rev=1684537&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/ResourceHandler.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r5/org/apache/felix/dm/ResourceHandler.html Tue Jun 9 21:33:17 2015 @@ -0,0 +1,435 @@ + + + + + +ResourceHandler + + + + + + + + + + + +
+
org.apache.felix.dm
+

Interface ResourceHandler

+
+
+
+
    +
  • +
    +
    All Known Subinterfaces:
    +
    ResourceDependency
    +
    +
    +
    +
    public interface ResourceHandler
    +
    Service interface for anybody wanting to be notified of changes to resources.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringFILTER +
      Name of the property that's used to describe the filter condition for a resource.
      +
      static java.lang.StringHOST +
      The host part of the URL.
      +
      static java.lang.StringPATH +
      The path part of the URL.
      +
      static java.lang.StringPORT +
      The port part of the URL.
      +
      static java.lang.StringPROTOCOL +
      The protocol part of the URL.
      +
      static java.lang.StringURL +
      Exact URL that this handler is looking for.
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidadded(java.net.URL resource) +
      Deprecated.  +
      Please use added(URL, Dictionary) instead. When both are specified, + the new method takes precedence and the deprecated one is not invoked.
      +
      +
      voidadded(java.net.URL resource, + java.util.Dictionary<?,?> resourceProperties) +
      Invoked whenever a new resource is added.
      +
      voidchanged(java.net.URL resource) +
      Deprecated.  +
      Please use changed(URL, Dictionary) instead. When both are specified, + the new method takes precedence and the deprecated one is not invoked.
      +
      +
      voidchanged(java.net.URL resource, + java.util.Dictionary<?,?> resourceProperties) +
      Invoked whenever an existing resource changes.
      +
      voidremoved(java.net.URL resource) +
      Deprecated.  +
      Please use removed(URL, Dictionary) instead. When both are specified, + the new method takes precedence and the deprecated one is not invoked.
      +
      +
      voidremoved(java.net.URL resource, + java.util.Dictionary<?,?> resourceProperties) +
      Invoked whenever an existing resource is removed.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        FILTER

        +
        static final java.lang.String FILTER
        +
        Name of the property that's used to describe the filter condition for a resource.
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        URL

        +
        static final java.lang.String URL
        +
        Exact URL that this handler is looking for. Can be used instead of a filter to be very explicit about the resource you're looking for.
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        HOST

        +
        static final java.lang.String HOST
        +
        The host part of the URL.
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        PATH

        +
        static final java.lang.String PATH
        +
        The path part of the URL.
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        PROTOCOL

        +
        static final java.lang.String PROTOCOL
        +
        The protocol part of the URL.
        +
        See Also:
        Constant Field Values
        +
      • +
      + + + +
        +
      • +

        PORT

        +
        static final java.lang.String PORT
        +
        The port part of the URL.
        +
        See Also:
        Constant Field Values
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        added

        +
        void added(java.net.URL resource)
        +
        Deprecated. Please use added(URL, Dictionary) instead. When both are specified, + the new method takes precedence and the deprecated one is not invoked.
        +
      • +
      + + + +
        +
      • +

        added

        +
        void added(java.net.URL resource,
        +         java.util.Dictionary<?,?> resourceProperties)
        +
        Invoked whenever a new resource is added.
        +
      • +
      + + + +
        +
      • +

        changed

        +
        void changed(java.net.URL resource)
        +
        Deprecated. Please use changed(URL, Dictionary) instead. When both are specified, + the new method takes precedence and the deprecated one is not invoked.
        +
      • +
      + + + +
        +
      • +

        changed

        +
        void changed(java.net.URL resource,
        +           java.util.Dictionary<?,?> resourceProperties)
        +
        Invoked whenever an existing resource changes.
        +
      • +
      + + + +
        +
      • +

        removed

        +
        void removed(java.net.URL resource)
        +
        Deprecated. Please use removed(URL, Dictionary) instead. When both are specified, + the new method takes precedence and the deprecated one is not invoked.
        +
      • +
      + + + +
        +
      • +

        removed

        +
        void removed(java.net.URL resource,
        +           java.util.Dictionary<?,?> resourceProperties)
        +
        Invoked whenever an existing resource is removed.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + +