blob: 4465d6a38daf3243fabcf78962d44d77c056aa05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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."));
}
}
|