All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.inject.grapher.BindingEdge Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
/**
 * Copyright (C) 2008 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.inject.grapher;

/**
 * Interface for an edge that connects an interface to the type or instance
 * that is bound to implement it.
 *
 * @author [email protected] (Pete Hopkins)
 *
 * @param  The type for node IDs.
 */
public interface BindingEdge {
  /**
   * Classification for what kind of binding this edge represents.
   */
  enum Type {
    /** Binding is to an instance or class of the binding's same type. */
    NORMAL,
    /** Binding is to an instance or class that provides the binding's type. */
    PROVIDER,
    /** Binding is to the interface for a constant of a different type. */
    CONVERTED_CONSTANT
  }

  void setType(Type type);

  /**
   * Factory interface for {@link BindingEdge}s. Renderer implementations will
   * need to provide an implementation for this.
   *
   * @param  The type for node IDs.
   * @param  The {@link BindingEdge} sub-type that this factory provides.
   */
  interface Factory> {
    /**
     * Creates a new {@link BindingEdge} instance and adds it to the graph.
     *
     * @param fromId Node ID for the interface node.
     * @param toId Node ID for the implementation (class or instance) node.
     * @return The newly created and added {@link BindingEdge}.
     */
    T newBindingEdge(K fromId, K toId);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy