From 819e3db0b841f919f6a0cf30cbfe9bc6877d43df Mon Sep 17 00:00:00 2001 From: alcexhim Date: Mon, 1 Dec 2014 15:44:37 -0500 Subject: [PATCH] Added comments --- CSharp/Libraries/UniversalEditor.Core/Document.cs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/CSharp/Libraries/UniversalEditor.Core/Document.cs b/CSharp/Libraries/UniversalEditor.Core/Document.cs index 31e2db9c..8776f320 100644 --- a/CSharp/Libraries/UniversalEditor.Core/Document.cs +++ b/CSharp/Libraries/UniversalEditor.Core/Document.cs @@ -143,6 +143,9 @@ namespace UniversalEditor private LastUsedAccessor mvarLastUsedAccessor = LastUsedAccessor.Input; private String mvarTitle = String.Empty; + /// + /// The title of this . + /// public string Title { get @@ -159,8 +162,13 @@ namespace UniversalEditor } } + /// + /// Determines whether the content of this has changed. + /// public bool IsChanged { get; set; } - + /// + /// The last-used associated with this . + /// public Accessor Accessor { get @@ -179,7 +187,9 @@ namespace UniversalEditor return null; } } - + /// + /// The associated with this . + /// public DataFormat DataFormat { get