namespace Core.Common.Gui
{
///
/// Interface that declares application feature manipulation.
///
public interface IApplicationFeatureCommands
{
///
/// Activates the propertyGrid toolbox
///
///
void ShowPropertiesFor(object obj);
///
/// Indicates if there is a property view object for the current .
///
///
/// true if a property view is defined, false otherwise.
bool CanShowPropertiesFor(object obj);
void OpenLogFileExternal();
}
}