/* * NetworkView.java * * Copyright (c) 2003-2004 Digi International * This program and the information contained in it is confidential and * proprietary to Digi International and may not be used, copied, or re- * produced without the prior written permission of Digi International. * */ package com.digi.config.ui; import com.digi.config.core.*; import com.digi.config.util.*; import javax.swing.*; import javax.swing.event.*; import javax.swing.tree.*; import javax.swing.border.*; import java.awt.*; import java.awt.event.*; import java.util.*; import java.io.*; import java.net.*; /** * This class is a view panel that shows a Network KvpNode * informational panel for the ConnectMe device * * This view can be embedded in other panels as desired. */ public class NetworkView extends AggregateConfigView { /** * Basic constructor. Sets up the tree view and the edit panel. */ public NetworkView() throws Exception { super(true); addView(new NetworkBasicView()); // addView(new NetworkAdvancedView()); } /** * Returns a one word name identifying this view. */ public String getName() { return "NetworkView"; } }