From 254ee6f47eebfc00462c10756a92066e82cc1a96 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Tue, 21 Jun 2011 15:46:02 +0200 Subject: Initial commit --- .../gui/tabs/collection/DependencyView.java | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 source/com/c2kernel/gui/tabs/collection/DependencyView.java (limited to 'source/com/c2kernel/gui/tabs/collection/DependencyView.java') diff --git a/source/com/c2kernel/gui/tabs/collection/DependencyView.java b/source/com/c2kernel/gui/tabs/collection/DependencyView.java new file mode 100755 index 0000000..4465d6a --- /dev/null +++ b/source/com/c2kernel/gui/tabs/collection/DependencyView.java @@ -0,0 +1,33 @@ +package com.c2kernel.gui.tabs.collection; +import java.awt.GridLayout; + +import javax.swing.JLabel; + +import com.c2kernel.collection.Collection; +/** + * @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(); + } + + 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.")); + } + + +} -- cgit v1.2.3