Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 package com.generalrobotix.ui.view;
00020
00021 import org.eclipse.swt.SWT;
00022 import org.eclipse.swt.widgets.Composite;
00023
00024 import com.generalrobotix.ui.GrxBaseView;
00025 import com.generalrobotix.ui.GrxBaseViewPart;
00026 import com.generalrobotix.ui.GrxPluginManager;
00027 import com.generalrobotix.ui.util.GrxORBMonitor;
00028
00029 @SuppressWarnings("serial")
00030 public class GrxORBMonitorView extends GrxBaseView {
00031 public static final String TITLE = "NameService Monitor";
00032 private GrxORBMonitor monitor_ = null;
00033
00034 public GrxORBMonitorView(String name, GrxPluginManager manager, GrxBaseViewPart vp, Composite parent) {
00035 super(name, manager, vp, parent);
00036
00037 monitor_ = new GrxORBMonitor(composite_, SWT.NULL);
00038 setScrollMinSize(SWT.DEFAULT, SWT.DEFAULT);
00039 }
00040
00041 public String getNSHost() {
00042 return monitor_.getNSHost();
00043 }
00044
00045 public String getNSPort() {
00046 return monitor_.getNSPort();
00047 }
00048 }