package com.c2kernel.gui.tabs.collection; import java.awt.GridLayout; import javax.swing.JLabel; import com.c2kernel.collection.Collection; import com.c2kernel.collection.DependencyMember; /** * @version $Revision: 1.2 $ $Date: 2005/06/02 12:17:22 $ * @author $Author: abranson $ */ public class DependencyView extends CollectionView { // Objects to view/modify the properties of the selected activity public DependencyView() { super(); setLayout(new GridLayout(1,1)); createLayout(); } @Override public void setCollection(Collection contents) { thisColl = contents; } public void createLayout() { // TODO: design a nice dependency view, with property viewing and modification add(new JLabel("Dependency view not yet implemented. Please browse the tree instead.")); } }