01: // THIS SOFTWARE IS PROVIDED BY SOFTARIS PTY.LTD. AND OTHER METABOSS
02: // CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
03: // BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
04: // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTARIS PTY.LTD.
05: // OR OTHER METABOSS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
06: // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
07: // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
08: // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
09: // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
10: // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
11: // EVEN IF SOFTARIS PTY.LTD. OR OTHER METABOSS CONTRIBUTORS ARE ADVISED OF THE
12: // POSSIBILITY OF SUCH DAMAGE.
13: //
14: // Copyright 2000-2005 © Softaris Pty.Ltd. All Rights Reserved.
15: package com.metaboss.applications.designstudio.underconstructionview;
16:
17: import java.awt.BorderLayout;
18:
19: import javax.swing.ImageIcon;
20: import javax.swing.JButton;
21: import javax.swing.JPanel;
22:
23: public class UnderConstructionViewPanel extends JPanel {
24: private BorderLayout mLayout = null;
25: private JButton mUnderConstructionButton = null;
26: private ImageIcon mUnderConstructionIcon = null;
27: private JButton mUnderConstruction1Button = null;
28: private ImageIcon mUnderConstruction1Icon = null;
29:
30: public UnderConstructionViewPanel() throws Exception {
31: setLayout(mLayout = new BorderLayout());
32:
33: mUnderConstructionIcon = new ImageIcon(getClass().getResource(
34: "UnderConstruction.gif"));
35: mUnderConstructionButton = new JButton(mUnderConstructionIcon);
36: add(mUnderConstructionButton, BorderLayout.SOUTH);
37: mUnderConstruction1Icon = new ImageIcon(getClass().getResource(
38: "UnderConstruction1.gif"));
39: mUnderConstruction1Button = new JButton(mUnderConstruction1Icon);
40: add(mUnderConstruction1Button, BorderLayout.CENTER);
41:
42: // Init member variables
43: // mDomain = pDomain;
44: // mModel = new DomainViewModel();
45: // mGraph = new DomainViewGraph(mModel);
46: // mModel.setDomain(mDomain);
47: // add(mGraph, BorderLayout.CENTER);
48: }
49: }
|