-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8db4f44
commit dbdbc92
Showing
8 changed files
with
1,099 additions
and
1,099 deletions.
There are no files selected for viewing
58 changes: 29 additions & 29 deletions
58
source/Components/AvalonDock/Commands/IExecuteWithObject.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
namespace AvalonDock.Commands | ||
{ | ||
/// <summary> | ||
/// Interface IExecuteWithObject | ||
/// </summary> | ||
internal interface IExecuteWithObject | ||
{ | ||
#region Public Properties | ||
/// <summary> | ||
/// Interface IExecuteWithObject | ||
/// </summary> | ||
internal interface IExecuteWithObject | ||
{ | ||
#region Public Properties | ||
|
||
/// <summary> | ||
/// The target of the WeakAction. | ||
/// </summary> | ||
/// <value>The target.</value> | ||
object Target | ||
{ | ||
get; | ||
} | ||
/// <summary> | ||
/// The target of the WeakAction. | ||
/// </summary> | ||
/// <value>The target.</value> | ||
object Target | ||
{ | ||
get; | ||
} | ||
|
||
#endregion Public Properties | ||
#endregion Public Properties | ||
|
||
#region Public Methods | ||
#region Public Methods | ||
|
||
/// <summary> | ||
/// Executes an action. | ||
/// </summary> | ||
/// <param name="parameter">A parameter passed as an object, | ||
/// to be casted to the appropriate type.</param> | ||
void ExecuteWithObject(object parameter); | ||
/// <summary> | ||
/// Executes an action. | ||
/// </summary> | ||
/// <param name="parameter">A parameter passed as an object, | ||
/// to be casted to the appropriate type.</param> | ||
void ExecuteWithObject(object parameter); | ||
|
||
/// <summary> | ||
/// Deletes all references, which notifies the cleanup method | ||
/// that this entry must be deleted. | ||
/// </summary> | ||
void MarkForDeletion(); | ||
/// <summary> | ||
/// Deletes all references, which notifies the cleanup method | ||
/// that this entry must be deleted. | ||
/// </summary> | ||
void MarkForDeletion(); | ||
|
||
#endregion Public Methods | ||
} | ||
#endregion Public Methods | ||
} | ||
} |
30 changes: 15 additions & 15 deletions
30
source/Components/AvalonDock/Commands/IExecuteWithObjectAndResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
namespace AvalonDock.Commands | ||
{ | ||
/// <summary> | ||
/// Interface IExecuteWithObjectAndResult | ||
/// </summary> | ||
internal interface IExecuteWithObjectAndResult | ||
{ | ||
#region Public Methods | ||
/// <summary> | ||
/// Interface IExecuteWithObjectAndResult | ||
/// </summary> | ||
internal interface IExecuteWithObjectAndResult | ||
{ | ||
#region Public Methods | ||
|
||
/// <summary> | ||
/// Executes a Func and returns the result. | ||
/// </summary> | ||
/// <param name="parameter">A parameter passed as an object, | ||
/// to be casted to the appropriate type.</param> | ||
/// <returns>The result of the operation.</returns> | ||
object ExecuteWithObject(object parameter); | ||
/// <summary> | ||
/// Executes a Func and returns the result. | ||
/// </summary> | ||
/// <param name="parameter">A parameter passed as an object, | ||
/// to be casted to the appropriate type.</param> | ||
/// <returns>The result of the operation.</returns> | ||
object ExecuteWithObject(object parameter); | ||
|
||
#endregion Public Methods | ||
} | ||
#endregion Public Methods | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ namespace AvalonDock.Commands | |
internal class NamespaceDoc | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.