Last change
on this file since 1835 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
|
Rev | Line | |
---|
[713] | 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 | {
|
---|
[741] | 12 | public partial class MainForm : Form {
|
---|
[1376] | 13 | public MainForm(Dictionary<string, Uri> addresses) {
|
---|
[741] | 14 | InitializeComponent();
|
---|
[1376] | 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();
|
---|
[713] | 25 | }
|
---|
[1120] | 26 |
|
---|
[713] | 27 | }
|
---|
| 28 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.