Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1438C200C1B for ; Tue, 14 Feb 2017 08:00:28 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 12E73160B6A; Tue, 14 Feb 2017 07:00:28 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id ED4B5160B7A for ; Tue, 14 Feb 2017 08:00:25 +0100 (CET) Received: (qmail 46032 invoked by uid 500); 14 Feb 2017 07:00:25 -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 45514 invoked by uid 99); 14 Feb 2017 07:00:24 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2017 07:00:24 +0000 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 27DEA3A47E1 for ; Tue, 14 Feb 2017 07:00:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1782914 [12/16] - in /felix/site/trunk/content/apidocs/dependencymanager/r9: ./ 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/ Date: Tue, 14 Feb 2017 07:00:21 -0000 To: commits@felix.apache.org From: pderop@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170214070023.27DEA3A47E1@svn01-us-west.apache.org> archived-at: Tue, 14 Feb 2017 07:00:28 -0000 Added: felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/EventType.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/EventType.html?rev=1782914&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/EventType.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/EventType.html Tue Feb 14 07:00:20 2017 @@ -0,0 +1,376 @@ + + + + + +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

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete 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/r9/org/apache/felix/dm/context/package-frame.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-frame.html?rev=1782914&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-frame.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-frame.html Tue Feb 14 07:00:20 2017 @@ -0,0 +1,30 @@ + + + + + +org.apache.felix.dm.context + + + + + +

org.apache.felix.dm.context

+
+

Interfaces

+ +

Classes

+ +

Enums

+ +
+ + Added: felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-summary.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-summary.html?rev=1782914&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-summary.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-summary.html Tue Feb 14 07:00:20 2017 @@ -0,0 +1,189 @@ + + + + + +org.apache.felix.dm.context + + + + + + + + + + + +
+

Package org.apache.felix.dm.context

+
+
+
    +
  • + + + + + + + + + + + + + + + + +
    Interface Summary 
    InterfaceDescription
    ComponentContext +
    This interface is the entry point to the Component implementation context.
    +
    DependencyContext +
    Every DependencyManager Dependency implementations must implement this interface.
    +
    +
  • +
  • + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    AbstractDependency<T extends Dependency> +
    Abstract class for implementing Dependencies.
    +
    Event +
    An event holds all data that belongs to some external event as it comes in via + the 'changed' callback of a dependency.
    +
    +
  • +
  • + + + + + + + + + + + + +
    Enum Summary 
    EnumDescription
    EventType +
    Types of dependency events
    +
    +
  • +
+
+ + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-tree.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-tree.html?rev=1782914&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-tree.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/context/package-tree.html Tue Feb 14 07:00:20 2017 @@ -0,0 +1,161 @@ + + + + + +org.apache.felix.dm.context Class Hierarchy + + + + + + + + + + + +
+

Hierarchy For Package org.apache.felix.dm.context

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Enum Hierarchy

+
    +
  • java.lang.Object +
      +
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) + +
    • +
    +
  • +
+
+ + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/CircularDependency.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/CircularDependency.html?rev=1782914&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/CircularDependency.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/CircularDependency.html Tue Feb 14 07:00:20 2017 @@ -0,0 +1,286 @@ + + + + + +CircularDependency + + + + + + + + + + + + +
+
org.apache.felix.dm.diagnostics
+

Class CircularDependency

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.felix.dm.diagnostics.CircularDependency
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class CircularDependency
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CircularDependency

        +
        public CircularDependency()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + + Added: felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/DependencyGraph.ComponentState.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/DependencyGraph.ComponentState.html?rev=1782914&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/DependencyGraph.ComponentState.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/DependencyGraph.ComponentState.html Tue Feb 14 07:00:20 2017 @@ -0,0 +1,344 @@ + + + + + +DependencyGraph.ComponentState + + + + + + + + + + + + +
+
org.apache.felix.dm.diagnostics
+

Enum DependencyGraph.ComponentState

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      ALL 
      UNREGISTERED 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static DependencyGraph.ComponentStatevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static DependencyGraph.ComponentState[]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
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static DependencyGraph.ComponentState[] 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 (DependencyGraph.ComponentState c : DependencyGraph.ComponentState.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static DependencyGraph.ComponentState 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/r9/org/apache/felix/dm/diagnostics/DependencyGraph.DependencyState.html URL: http://svn.apache.org/viewvc/felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/DependencyGraph.DependencyState.html?rev=1782914&view=auto ============================================================================== --- felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/DependencyGraph.DependencyState.html (added) +++ felix/site/trunk/content/apidocs/dependencymanager/r9/org/apache/felix/dm/diagnostics/DependencyGraph.DependencyState.html Tue Feb 14 07:00:20 2017 @@ -0,0 +1,356 @@ + + + + + +DependencyGraph.DependencyState + + + + + + + + + + + + +
+
org.apache.felix.dm.diagnostics
+

Enum DependencyGraph.DependencyState

+
+
+ +
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethod and Description
      static DependencyGraph.DependencyStatevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static DependencyGraph.DependencyState[]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
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static DependencyGraph.DependencyState[] 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 (DependencyGraph.DependencyState c : DependencyGraph.DependencyState.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static DependencyGraph.DependencyState 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
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + + +