00001
00058 package com.arcle.rmt.j2se.swing.vc;
00059
00060
00061 import javax.swing.*;
00062 import com.arcle.rmt.rqml.*;
00063 import com.arcle.rmt.j2se.swing.ui.View;
00064 import com.arcle.rmt.j2se.swing.ui.ComponentView;
00065
00078 public class Desktop extends AbstractDesktop {
00079
00080
00081
00082
00083 protected View createDocumentTreeView() {
00084 View el = new ElementList(getElementEditFactory());
00085 return el;
00086 }
00087
00088
00089 protected View createStatusBar() {
00090 return new ComponentView() {
00091 public JComponent getComponent() {
00092 return c;
00093 }
00094 JComponent c = new JLabel("Status");
00095 };
00096 }
00097 }