예제 #1
0
파일: Bookmark.cs 프로젝트: x2f/logexpert
 public Bookmark(int lineNum)
 {
     LineNum = lineNum;
     Text    = "";
     Overlay = new BookmarkOverlay();
 }
예제 #2
0
		public Bookmark(int lineNum)
		{
			LineNum = lineNum;
			Text = "";
			Overlay = new BookmarkOverlay();
		}
예제 #3
0
파일: Bookmark.cs 프로젝트: x2f/logexpert
 public Bookmark(int lineNum, string comment)
 {
     LineNum = lineNum;
     Text    = comment;
     Overlay = new BookmarkOverlay();
 }
예제 #4
0
		public Bookmark(int lineNum, string comment)
		{
			LineNum = lineNum;
			Text = comment;
			Overlay = new BookmarkOverlay();
		}