~charlie.poole/nunitv2/equality-handlers

« back to all changes in this revision

Viewing changes to src/ProjectEditor/editor/PropertyEditor/IProjectModel.cs

  • Committer: Charlie Poole
  • Date: 2011-03-29 21:54:46 UTC
  • mfrom: (3257.4.15 standalone-editor)
  • Revision ID: charlie@nunit.org-20110329215446-pu1r6okg4www4zat
Remove integrated project editor and substitute new standalone editor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ****************************************************************
 
2
// Copyright 2011, Charlie Poole
 
3
// This is free software licensed under the NUnit license. You may
 
4
// obtain a copy of the license at http://nunit.org
 
5
// ****************************************************************
 
6
 
 
7
using System;
 
8
 
 
9
namespace NUnit.ProjectEditor
 
10
{
 
11
    public interface IProjectModel
 
12
    {
 
13
        #region Properties
 
14
 
 
15
        IProjectDocument Document { get; }
 
16
 
 
17
        string ProjectPath { get; set; }
 
18
        string BasePath { get; set; }
 
19
        string EffectiveBasePath { get; }
 
20
 
 
21
        string ActiveConfigName { get; set; }
 
22
 
 
23
        string ProcessModel { get; set; }
 
24
        string DomainUsage { get; set; }
 
25
 
 
26
        ConfigList Configs { get; }
 
27
        string[] ConfigNames { get; }
 
28
 
 
29
        #endregion
 
30
 
 
31
        #region Methods
 
32
 
 
33
        IProjectConfig AddConfig(string name);
 
34
        void RemoveConfig(string name);
 
35
        void RemoveConfigAt(int index);
 
36
 
 
37
        #endregion
 
38
    }
 
39
}