Last change
on this file since 6362 was
6033,
checked in by cneumuel, 14 years ago
|
#1233
- created baseclass for jobs (ItemJob) which derives OperatorJobs and EngineJobs
- created special view for OptimizerJobs which derives from a more general view
- removed logic from domain class HiveExperiment and moved it into RefreshableHiveExperiment
- improved ItemTreeView
- corrected plugin dependencies
- fixed bug in database trigger when deleting HiveExperiments
- added delete cascade for Plugin and PluginData
- lots of fixes
|
File size:
713 bytes
|
Rev | Line | |
---|
[5043] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.PluginInfrastructure;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.Services.Hive.DataAccess {
|
---|
| 8 | [Plugin("HeuristicLab.Services.Hive.DataAccess", "3.4.0.$WCREV$")]
|
---|
| 9 | [PluginFile("HeuristicLab.Services.Hive.DataAccess-3.4.dll", PluginFileType.Assembly)]
|
---|
[6033] | 10 | [PluginDependency("HeuristicLab.Clients.Common", "3.3")]
|
---|
[5043] | 11 | [PluginDependency("HeuristicLab.Common", "3.3")]
|
---|
| 12 | [PluginDependency("HeuristicLab.Core", "3.3")]
|
---|
| 13 | [PluginDependency("HeuristicLab.Persistence", "3.3")]
|
---|
[6033] | 14 | [PluginDependency("HeuristicLab.Services.Hive.Common", "3.4")]
|
---|
[5043] | 15 | public class HeuristicLabServicesHiveDataAccessPlugin : PluginBase {
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.