(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / graph / component / package-info.java
index 18a03ce09f1bfe5356004f2f50b425f2dd80a6af..6711cb6dd104f704e7200d447dcc383cfe137c85 100644 (file)
@@ -1,30 +1,17 @@
-/**
- * <h1>Graph component package </h1>
+/*
+ * Copyright 2005-2010 the original author or authors.
  * 
- * The graph component package provides the representation of a number of 
- * components {@link Component} 
- * their required and provided interfaces ({@link RequiredInterface} and 
- * {@link ProvidedInterface}), and how these are connected together.
+ * 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
  * 
- * This package provides the bridge between the component model and the 
- * representation of the components and their connections in a graph. 
- * The component package provides various algorithms, filters, and 
- * validations that are required for the implementation of a container. 
+ *      http://www.apache.org/licenses/LICENSE-2.0
  * 
- * The main abstractions are: 
- * <ul>
- *   <li> {@link ComponentGraph}: A graph of components. This provides the logic
- *   for creating a graph based on components. </li>
- *   <li> {@link ComponentNode}: A node representing a component. </li>
- *   <li> {@link RequiredInterfaceNode}: A node representing a required interface of a component. </li>
- *   <li> {@link ProvidedInterfaceNode}: A node repesenting a provided interface of a component. </li>
- *   <li> {@link ExternalRequiredInterfaceNode}: A node representing a required interface of a container </li>
- *   <li> {@link ExternalProvidedInterfaceNode}: A node representing a provided interface of a container </li>  
- * </ul> 
- *
+ * 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 org.wamblee.system.graph.component;
 
-import org.wamblee.system.core.Component;
-import org.wamblee.system.core.ProvidedInterface;
-import org.wamblee.system.core.RequiredInterface;