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
// ****************************************************************
9
namespace NUnit.ProjectEditor
12
/// The IViewElement interface is exposed by the view
13
/// for an individual gui element. It is the base of
14
/// other more specific interfaces.
16
public interface IViewElement
19
/// Gets the name of the element in the view
24
/// Gets or sets the enabled status of the element
26
bool Enabled { get; set; }
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
// ****************************************************************
9
namespace NUnit.ProjectEditor
12
/// The IViewElement interface is exposed by the view
13
/// for an individual gui element. It is the base of
14
/// other more specific interfaces.
16
public interface IViewElement
19
/// Gets the name of the element in the view
24
/// Gets or sets the enabled status of the element
26
bool Enabled { get; set; }