Last change
on this file since 1956 was
1530,
checked in by gkronber, 16 years ago
|
Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576
|
File size:
930 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Data;
|
---|
5 | using System.Drawing;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Windows.Forms;
|
---|
9 |
|
---|
10 | namespace HeuristicLab.Hive.Server
|
---|
11 | {
|
---|
12 | public partial class MainForm : Form {
|
---|
13 | public MainForm(Dictionary<string, Uri> addresses) {
|
---|
14 | InitializeComponent();
|
---|
15 | Uri uri;
|
---|
16 | addresses.TryGetValue(HiveServerApplication.STR_ClientCommunicator, out uri);
|
---|
17 | if(uri!=null)
|
---|
18 | this.lblAddress1.Text = uri.ToString();
|
---|
19 | addresses.TryGetValue(HiveServerApplication.STR_ServerConsoleFacade, out uri);
|
---|
20 | if (uri != null)
|
---|
21 | this.lblAddress2.Text = uri.ToString();
|
---|
22 | addresses.TryGetValue(HiveServerApplication.STR_ExecutionEngineFacade, out uri);
|
---|
23 | if (uri != null)
|
---|
24 | this.lblAddress3.Text = uri.ToString();
|
---|
25 | }
|
---|
26 |
|
---|
27 | }
|
---|
28 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.