Code Coverage Statistics for Source File
c:\Tools\SD3\src\Libraries\ICSharpCode.TextEditor\Project\Src\Document\BookmarkManager\BookmarkEventHandler.cs
|
Sequence Point Coverage
N/A
0 of 0
|
Branch Coverage
N/A
0 of 0
|
Lines
32
|
Highlight:
Uncovered Code
Covered Code
| L | V | Source |
|---|---|---|
1 |
// <file> |
|
2 |
// <copyright see="prj:///doc/copyright.txt"/> |
|
3 |
// <license see="prj:///doc/license.txt"/> |
|
4 |
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/> |
|
5 |
// <version>$Revision: 915 $</version> |
|
6 |
// </file> |
|
7 |
||
8 |
using System; |
|
9 |
||
10 |
namespace ICSharpCode.TextEditor.Document |
|
11 |
{ |
|
12 |
public delegate void BookmarkEventHandler(object sender, BookmarkEventArgs e); |
|
13 |
||
14 |
/// <summary> |
|
15 |
/// Description of BookmarkEventHandler. |
|
16 |
/// </summary> |
|
17 |
public class BookmarkEventArgs : EventArgs |
|
18 |
{ |
|
19 |
Bookmark bookmark; |
|
20 |
||
21 |
public Bookmark Bookmark { |
|
22 |
get { |
|
23 |
return bookmark; |
|
24 |
} |
|
25 |
} |
|
26 |
||
27 |
public BookmarkEventArgs(Bookmark bookmark) |
|
28 |
{ |
|
29 |
this.bookmark = bookmark; |
|
30 |
} |
|
31 |
} |
|
32 |
} |