Changeset 1185
- Timestamp:
- 01/28/09 11:53:25 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.AdvancedOptimizationFrontend
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/AboutDialog.cs
r607 r1185 29 29 30 30 namespace HeuristicLab.AdvancedOptimizationFrontend { 31 /// <summary> 32 /// The about dialog that presents some basic information about the application. 33 /// </summary> 31 34 public partial class AboutDialog : Form { 35 /// <summary> 36 /// Initializes a new instance of <see cref="AboutDialog"/>. 37 /// </summary> 32 38 public AboutDialog() { 33 39 InitializeComponent(); -
trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/AvailableOperatorsForm.cs
r2 r1185 33 33 34 34 namespace HeuristicLab.AdvancedOptimizationFrontend { 35 /// <summary> 36 /// Display of all available operators of a specific operator library. 37 /// </summary> 35 38 public partial class AvailableOperatorsForm : DockContent { 36 39 #region Inner Class TreeNodeSorter … … 50 53 private IOperatorLibrary operatorLibrary; 51 54 55 /// <summary> 56 /// Initializes a new instance of <see cref="AvailableOperatorsForm"/>. 57 /// </summary> 52 58 public AvailableOperatorsForm() { 53 59 InitializeComponent(); -
trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/EditorForm.cs
r2 r1185 31 31 32 32 namespace HeuristicLab.AdvancedOptimizationFrontend { 33 /// <summary> 34 /// Displays the used editor. 35 /// </summary> 33 36 public partial class EditorForm : DockContent { 34 37 private IEditor myEditor; 38 /// <summary> 39 /// Gets the editor that is displayed. 40 /// </summary> 35 41 public IEditor Editor { 36 42 get { return myEditor; } 37 43 } 38 44 45 /// <summary> 46 /// Initializes a new instance of <see cref="EditorForm"/>. 47 /// </summary> 39 48 public EditorForm() { 40 49 InitializeComponent(); 41 50 } 51 /// <summary> 52 /// Initializes a new instance of <see cref="EditorForm"/> with the given <paramref name="editor"/> 53 /// that should be displayed. 54 /// </summary> 55 /// <param name="editor">The editor that should be displayed.</param> 42 56 public EditorForm(IEditor editor) 43 57 : this() { -
trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/HeuristicLabAdvancedOptimizationFrontendApplication.cs
r593 r1185 27 27 28 28 namespace HeuristicLab.AdvancedOptimizationFrontend { 29 /// <summary> 30 /// The HeuristicLab Advanced Optimization Frontend Application. 31 /// </summary> 29 32 [ClassInfo(Name = "HeuristicLab 3.2 (dockable)", Description="Next generation heuristic optimization environment.")] 30 33 class HeuristicLabAdvancedOptimizationFrontendApplication : ApplicationBase { 34 /// <summary> 35 /// Runs the application and displays the main window. 36 /// </summary> 31 37 public override void Run() { 32 38 Form mainForm = new MainForm(); -
trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/HeuristicLabAdvancedOptimizationFrontendPlugin.cs
r582 r1185 27 27 28 28 namespace HeuristicLab.AdvancedOptimizationFrontend { 29 /// <summary> 30 /// Plugin class for HeuristicLab.AdvancedOptimizationFrontend plugin. 31 /// </summary> 29 32 [ClassInfo(Name = "HeuristicLab.AdvancedOptimizationFrontend-3.2")] 30 33 [PluginFile(Filename = "HeuristicLab.AdvancedOptimizationFrontend-3.2.dll", Filetype = PluginFileType.Assembly)] -
trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/MainForm.cs
r676 r1185 34 34 35 35 namespace HeuristicLab.AdvancedOptimizationFrontend { 36 /// <summary> 37 /// The main form of the application. 38 /// </summary> 36 39 public partial class MainForm : Form, IControlManager { 37 40 #region Inner Types … … 53 56 private int runningTasks; 54 57 58 /// <summary> 59 /// Initializes a new instance of <see cref="MainForm"/>. 60 /// </summary> 55 61 public MainForm() { 56 62 InitializeComponent(); … … 88 94 89 95 #region IControlManager Members 96 /// <summary> 97 /// Displays the given <paramref name="control"/>. 98 /// </summary> 99 /// <exception cref="InvalidOperationException">Thrown when the given <paramref name="control"/> 100 /// is neither a view nor an editor.</exception> 101 /// <param name="control">The control to display.</param> 90 102 public void ShowControl(IControl control) { 91 103 DockContent content; -
trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/ViewForm.cs
r2 r1185 31 31 32 32 namespace HeuristicLab.AdvancedOptimizationFrontend { 33 /// <summary> 34 /// Displays the used view. 35 /// </summary> 33 36 public partial class ViewForm : DockContent { 34 37 private IView myView; 38 /// <summary> 39 /// Gets the view that is displayed. 40 /// </summary> 35 41 public IView View { 36 42 get { return myView; } 37 43 } 38 44 45 /// <summary> 46 /// Initializes a new instance of <see cref="ViewForm"/>. 47 /// </summary> 39 48 public ViewForm() { 40 49 InitializeComponent(); 41 50 } 51 /// <summary> 52 /// Initializes a new instance of <see cref="ViewForm"/> with the given <paramref name="view"/> 53 /// to display. 54 /// </summary> 55 /// <param name="view">The view that should be displayed.</param> 42 56 public ViewForm(IView view) 43 57 : this() {
Note: See TracChangeset
for help on using the changeset viewer.