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 0B64218316 for ; Tue, 1 Dec 2015 15:06:10 +0000 (UTC) Received: (qmail 9600 invoked by uid 500); 1 Dec 2015 15:06:03 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 9463 invoked by uid 500); 1 Dec 2015 15:06:03 -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 9447 invoked by uid 99); 1 Dec 2015 15:06:03 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Dec 2015 15:06:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 10E51C0F8F for ; Tue, 1 Dec 2015 15:06:03 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 2.447 X-Spam-Level: ** X-Spam-Status: No, score=2.447 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, KAM_MANYCOMMENTS=1.2, RP_MATCHES_RCVD=-0.554, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id CAKo1V7bOdVV for ; Tue, 1 Dec 2015 15:05:49 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTP id CC69420CFA for ; Tue, 1 Dec 2015 15:05:48 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id C3A1AE1027 for ; Tue, 1 Dec 2015 15:05:47 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id AE85F3A207C for ; Tue, 1 Dec 2015 15:05:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1717444 [10/14] - in /felix/site/trunk/content/apidocs/dependencymanager/r6: ./ 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, 01 Dec 2015 15:05:46 -0000 To: commits@felix.apache.org From: pderop@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151201150547.AE85F3A207C@svn01-us-west.apache.org> Added: felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/ComponentContext.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/ComponentContext.html?rev=1717444&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/ComponentContext.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/ComponentContext.html Tue Dec 1 15:05:46 2015 @@ -0,0 +1,519 @@ + + + + + +ComponentContext + + + + + + + + + + + +
+
org.apache.felix.dm.context
+

Interface ComponentContext

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    Component
    +
    +
    +
    +
    public interface ComponentContext
    +extends Component
    +
    This interface is the entry point to the Component implementation context. + It is used by all DependencyManager Dependency implementations.
    +
    See Also:
    interface
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getExecutor

        +
        java.util.concurrent.Executor getExecutor()
        +
        Returns the Component Executor gate that can be used to ensure proper component event serialization. + When you schedule a task in the component executor, your task is executed safely and you do not need + to managed synchronization (other external events, like service dependency events) will be queued + until your task has been executed).
        +
      • +
      + + + +
        +
      • +

        getLogger

        +
        Logger getLogger()
        +
        Returns the logger which can be used by the DependencyManager Dependencies implementations.
        +
      • +
      + + + +
        +
      • +

        getBundleContext

        +
        BundleContext getBundleContext()
        +
        Returns the Component's bundle context
        +
        Returns:
        the Component's bundle context
        +
      • +
      + + + +
        +
      • +

        getBundle

        +
        Bundle getBundle()
        +
        Returns the Compoent's bundle.
        +
        Returns:
        the Compoent's bundle.
        +
      • +
      + + + +
        +
      • +

        setThreadPool

        +
        void setThreadPool(java.util.concurrent.Executor threadPool)
        +
        Sets a threadpool that the component will use when handling external events
        +
        Parameters:
        threadPool - a threadpool used to handle component events and invoke the component's lifecycle callbacks
        +
      • +
      + + + +
        +
      • +

        start

        +
        void start()
        +
        Starts the component. All initial dependencies previously added to the component will be started.
        +
      • +
      + + + +
        +
      • +

        stop

        +
        void stop()
        +
        Stops the component.
        +
      • +
      + + + +
        +
      • +

        isActive

        +
        boolean isActive()
        +
        Is this component already started ?
        +
        Returns:
        true if this component has been started
        +
      • +
      + + + +
        +
      • +

        isAvailable

        +
        boolean isAvailable()
        +
        Is this component available (all required dependencies are available) ?
        +
        Returns:
        true if this component is available (all dependencies are available), or false
        +
      • +
      + + + +
        +
      • +

        handleEvent

        +
        void handleEvent(DependencyContext dc,
        +               EventType type,
        +               Event... event)
        +
        Notifies the Component about a dependency event. + An event is for example fired when:

        +

        +
        Parameters:
        dc - the dependency
        type - the dependency event type
        e - the dependency event
        See Also:
        EventType
        +
      • +
      + + + +
        +
      • +

        getDependencies

        +
        java.util.List<DependencyContext> getDependencies()
        +
        Returns the list of dependencies that has been registered on this component
        +
        Returns:
        the list of dependencies that has been registered on this component
        +
      • +
      + + + +
        +
      • +

        invokeCallbackMethod

        +
        void invokeCallbackMethod(java.lang.Object[] instances,
        +                        java.lang.String methodName,
        +                        java.lang.Class<?>[][] signatures,
        +                        java.lang.Object[][] parameters)
        +
        Invoke a component callback method with a given dependency service instance
        +
        Parameters:
        instances - the component instances
        methodName - the method name
        signatures - the method signatures (types)
        parameters - the method parameters
        +
      • +
      + + + +
        +
      • +

        getInstances

        +
        java.lang.Object[] getInstances()
        +
        Returns the component instances
        +
        +
        Specified by:
        +
        getInstances in interface Component
        +
        Returns:
        the component instances
        +
      • +
      + + + +
        +
      • +

        getAutoConfigInstance

        +
        java.lang.String getAutoConfigInstance(java.lang.Class<?> clazz)
        +
        Returns the component instance field that is assignable to a given class type
        +
        Parameters:
        clazz - the type of an object that has to be injected in the component instance field
        +
        Returns:
        the name of the component instance field that can be assigned to an object having the same type as + the "clazz" parameter
        +
      • +
      + + + +
        +
      • +

        getAutoConfig

        +
        boolean getAutoConfig(java.lang.Class<?> clazz)
        +
        Indicates if an object of the given class can be injected in one field of the component
        +
        Parameters:
        clazz - the class of an object that has to be injected in one of the component fields
        +
        Returns:
        true if the component can be injected with an object having the specified "clazz" type.
        +
      • +
      + + + +
        +
      • +

        getDependencyEvent

        +
        Event getDependencyEvent(DependencyContext dc)
        +
        Returns the highest ranked dependency service instance for a given dependency
        +
        Parameters:
        dc - the dependency
        +
        Returns:
        the highest ranked dependency service instance for a given dependency
        +
      • +
      + + + +
        +
      • +

        getDependencyEvents

        +
        java.util.Set<Event> getDependencyEvents(DependencyContext dc)
        +
        Returns all the available dependency services for a given dependency
        +
        Parameters:
        dc - the dependency
        +
        Returns:
        all the available dependency services for a given dependency
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/DependencyContext.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/DependencyContext.html?rev=1717444&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/DependencyContext.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/DependencyContext.html Tue Dec 1 15:05:46 2015 @@ -0,0 +1,469 @@ + + + + + +DependencyContext + + + + + + + + + + + +
+
org.apache.felix.dm.context
+

Interface DependencyContext

+
+
+
+
    +
  • +
    +
    All Superinterfaces:
    +
    Dependency
    +
    +
    +
    All Known Implementing Classes:
    +
    AbstractDependency
    +
    +
    +
    +
    public interface DependencyContext
    +extends Dependency
    +
    Every DependencyManager Dependency implementations must implement this interface.
    +
    See Also:
    AbstractDependency} which already implements most of the methods from this interface.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidcopyToCollection(java.util.Collection<java.lang.Object> coll) +
      Copies all the dependency service instances to the given collection.
      +
      voidcopyToMap(java.util.Map<java.lang.Object,java.util.Dictionary<?,?>> map) +
      Copies all the dependency service instances to the given map (key = dependency service, value = dependency servie properties).
      +
      DependencyContextcreateCopy() +
      Creates a clone of this dependency.
      +
      java.lang.Class<?>getAutoConfigType() +
      Returns the type of the field which can be injected with the dependency service.
      +
      ComponentContextgetComponentContext() +
      Returns the Component implementation context associated to this Dependency context.
      +
      EventgetService() +
      Returns the highest ranked available dependency service instance, or null if the dependency is unavailable.
      +
      voidinvokeCallback(EventType type, + Event... events) +
      The Component implementation asks this dependency to invoke a component dependency callback.
      +
      booleanisInstanceBound() +
      Is this dependency instance bound ?
      +
      booleanisStarted() +
      Returns true if the dependency has been started, false if not
      +
      booleanneedsInstance() +
      Does this dependency need the component instances to determine if the dependency is available or not.
      +
      voidsetAvailable(boolean available) +
      Sets this dependency as available, meaning that at least one dependency service is available.
      +
      voidsetComponentContext(ComponentContext component) +
      Stores the Component implementation context in the Dependency Implementation.
      +
      voidsetInstanceBound(boolean instanceBound) +
      Sets this dependency as "instance bound".
      +
      voidstart() +
      Invoked by the component context when the dependency should start working.
      +
      voidstop() +
      Invoked by the component context when the dependency should stop working.
      +
      + +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setComponentContext

        +
        void setComponentContext(ComponentContext component)
        +
        Stores the Component implementation context in the Dependency Implementation. This object is the entry point to + the Component implementation.
        +
        Parameters:
        component - the Component implementation context
        +
      • +
      + + + +
        +
      • +

        getComponentContext

        +
        ComponentContext getComponentContext()
        +
        Returns the Component implementation context associated to this Dependency context.
        +
      • +
      + + + +
        +
      • +

        invokeCallback

        +
        void invokeCallback(EventType type,
        +                  Event... events)
        +
        The Component implementation asks this dependency to invoke a component dependency callback.
        +
        Parameters:
        type - the type of the callback to invoke (add/change/remove/swap ...)
        events - the dependency service event(s) that has previously been submitted to the component implementation using + the ComponentContext.handleEvent method. The number of events depends on the event type: one event for ADDED/CHANGED/REMOVED, + and two events for the SWAPPED event.
        See Also:
        ComponentContext.handleEvent(DependencyContext, EventType, Event...), +EventType
        +
      • +
      + + + +
        +
      • +

        start

        +
        void start()
        +
        Invoked by the component context when the dependency should start working.
        +
      • +
      + + + +
        +
      • +

        stop

        +
        void stop()
        +
        Invoked by the component context when the dependency should stop working.
        +
      • +
      + + + +
        +
      • +

        isStarted

        +
        boolean isStarted()
        +
        Returns true if the dependency has been started, false if not
        +
        Returns:
        true if the dependency has been started, false if not
        +
      • +
      + + + +
        +
      • +

        setAvailable

        +
        void setAvailable(boolean available)
        +
        Sets this dependency as available, meaning that at least one dependency service is available.
        +
        Parameters:
        available - true to mark this dependency as available, false to mark it as unavailable
        +
      • +
      + + + +
        +
      • +

        setInstanceBound

        +
        void setInstanceBound(boolean instanceBound)
        +
        Sets this dependency as "instance bound". A dependency is "instance bound" if it is defined from the + component's init method.
        +
        Parameters:
        true - if the dependency has to be marked as "intance bound", false if not.
        +
      • +
      + + + +
        +
      • +

        isInstanceBound

        +
        boolean isInstanceBound()
        +
        Is this dependency instance bound ?
        +
        Returns:
        true if this dependency is instance bound, false if not
        +
      • +
      + + + +
        +
      • +

        needsInstance

        +
        boolean needsInstance()
        +
        Does this dependency need the component instances to determine if the dependency is available or not.
        +
        Returns:
        true if the dependency need the component instances before it can be started, false if not.
        +
      • +
      + + + +
        +
      • +

        getAutoConfigType

        +
        java.lang.Class<?> getAutoConfigType()
        +
        Returns the type of the field which can be injected with the dependency service.
        +
        Returns:
        the type of the field which can be injected with the dependency service, or null if the dependency does not + support auto config mode.
        +
      • +
      + + + +
        +
      • +

        getService

        +
        Event getService()
        +
        Returns the highest ranked available dependency service instance, or null if the dependency is unavailable.
        +
        Returns:
        the highest ranked available dependency service instance, or null
        +
      • +
      + + + +
        +
      • +

        copyToCollection

        +
        void copyToCollection(java.util.Collection<java.lang.Object> coll)
        +
        Copies all the dependency service instances to the given collection.
        +
        Parameters:
        coll - the collection where the dependency service instances will be copied
        +
      • +
      + + + +
        +
      • +

        copyToMap

        +
        void copyToMap(java.util.Map<java.lang.Object,java.util.Dictionary<?,?>> map)
        +
        Copies all the dependency service instances to the given map (key = dependency service, value = dependency servie properties).
        +
        Parameters:
        map - the map where the dependency service instances (with the corresponding service properties)
        +
      • +
      + + + +
        +
      • +

        createCopy

        +
        DependencyContext createCopy()
        +
        Creates a clone of this dependency.
        +
        Returns:
        a clone of this dependency.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/Event.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/Event.html?rev=1717444&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/Event.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/Event.html Tue Dec 1 15:05:46 2015 @@ -0,0 +1,383 @@ + + + + + +Event + + + + + + + + + + + +
+
org.apache.felix.dm.context
+

Class Event

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.felix.dm.context.Event
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.lang.Comparable<Event>
    +
    +
    +
    +
    public class Event
    +extends java.lang.Object
    +implements java.lang.Comparable<Event>
    +
    An event holds all data that belongs to some external event as it comes in via + the 'changed' callback of a dependency.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      protected static java.util.Dictionary<java.lang.Object,java.lang.Object>EMPTY_PROPERTIES 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Event(java.lang.Object event) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidclose() +
      Release the resources this event is holding (like service reference for example).
      +
      intcompareTo(Event o) 
      booleanequals(java.lang.Object obj) 
      <T> TgetEvent() +
      Returns the actual event object wrapped by this event (a Service Dependency, a Bundle for Bundle Dependency, etc...).
      +
      <K,V> java.util.Dictionary<K,V>getProperties() +
      Returns the properties of the actual event object wrapped by this event (Service Dependency properties, ...).
      +
      inthashCode() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

      Field Detail

      + + + +
        +
      • +

        EMPTY_PROPERTIES

        +
        protected static final java.util.Dictionary<java.lang.Object,java.lang.Object> EMPTY_PROPERTIES
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Event

        +
        public Event(java.lang.Object event)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getEvent

        +
        public <T> T getEvent()
        +
        Returns the actual event object wrapped by this event (a Service Dependency, a Bundle for Bundle Dependency, etc...).
        +
      • +
      + + + +
        +
      • +

        getProperties

        +
        public <K,V> java.util.Dictionary<K,V> getProperties()
        +
        Returns the properties of the actual event object wrapped by this event (Service Dependency properties, ...).
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        compareTo

        +
        public int compareTo(Event o)
        +
        +
        Specified by:
        +
        compareTo in interface java.lang.Comparable<Event>
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        public void close()
        +
        Release the resources this event is holding (like service reference for example).
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/EventType.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/EventType.html?rev=1717444&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/EventType.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/EventType.html Tue Dec 1 15:05:46 2015 @@ -0,0 +1,354 @@ + + + + + +EventType + + + + + + + + + + + +
+
org.apache.felix.dm.context
+

Enum EventType

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • java.lang.Enum<EventType>
    • +
    • +
        +
      • org.apache.felix.dm.context.EventType
      • +
      +
    • +
    +
  • +
+
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<EventType>
    +
    +
    +
    +
    public enum EventType
    +extends java.lang.Enum<EventType>
    +
    Types of dependency events
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      ADDED +
      A Dependency service becomes available.
      +
      CHANGED +
      A Dependency service has changed.
      +
      REMOVED +
      A Dependency service becomes unavailable.
      +
      SWAPPED +
      A Dependency service has been swapped by another one.
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static EventTypevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static EventType[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Detail

      + + + +
        +
      • +

        ADDED

        +
        public static final EventType ADDED
        +
        A Dependency service becomes available.
        +
      • +
      + + + +
        +
      • +

        CHANGED

        +
        public static final EventType CHANGED
        +
        A Dependency service has changed.
        +
      • +
      + + + +
        +
      • +

        REMOVED

        +
        public static final EventType REMOVED
        +
        A Dependency service becomes unavailable.
        +
      • +
      + + + +
        +
      • +

        SWAPPED

        +
        public static final EventType SWAPPED
        +
        A Dependency service has been swapped by another one.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static EventType[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (EventType c : EventType.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static EventType valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/package-frame.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/package-frame.html?rev=1717444&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/package-frame.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r6/org/apache/felix/dm/context/package-frame.html Tue Dec 1 15:05:46 2015 @@ -0,0 +1,29 @@ + + + + + +org.apache.felix.dm.context + + + + +

org.apache.felix.dm.context

+
+

Interfaces

+ +

Classes

+ +

Enums

+ +
+ +