From 2a1608a2999ba619295bd324069a68bcbac8466c Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 20 Feb 2015 03:04:40 +0000 Subject: [PATCH] Modify some JavaDoc to Xml. --- plist-cil/ASCIIPropertyListParser.cs | 24 ++++++++++++++---------- plist-cil/ChangeLog | 6 ++++++ plist-cil/NSObject.cs | 18 ++++++++---------- 3 files changed, 28 insertions(+), 20 deletions(-) diff --git a/plist-cil/ASCIIPropertyListParser.cs b/plist-cil/ASCIIPropertyListParser.cs index 30ea4c8..063752f 100644 --- a/plist-cil/ASCIIPropertyListParser.cs +++ b/plist-cil/ASCIIPropertyListParser.cs @@ -32,22 +32,26 @@ using System.Runtime.CompilerServices; namespace Claunia.PropertyList { /// - ///

+ /// /// Parser for ASCII property lists. Supports Apple OS X/iOS and GnuStep/NeXTSTEP format. /// This parser is based on the recursive descent paradigm, but the underlying grammar /// is not explicitely defined. - ///

- ///

+ /// + /// /// Resources on ASCII property list format: - ///

- /// + /// ///
/// @author Daniel Dreibrodt /// @author Natalia Portillo diff --git a/plist-cil/ChangeLog b/plist-cil/ChangeLog index 60fd51d..b0e8067 100644 --- a/plist-cil/ChangeLog +++ b/plist-cil/ChangeLog @@ -1,3 +1,9 @@ +2015-02-20 Natalia Portillo + + * NSObject.cs: + * ASCIIPropertyListParser.cs: + Modify some JavaDoc to Xml. + 2015-02-20 Natalia Portillo * NSDictionary.cs: diff --git a/plist-cil/NSObject.cs b/plist-cil/NSObject.cs index 3ef2e52..401e012 100644 --- a/plist-cil/NSObject.cs +++ b/plist-cil/NSObject.cs @@ -375,16 +375,14 @@ namespace Claunia.PropertyList /// /// Converts this NSObject into an equivalent object /// of the .NET Runtime Environment. - ///
    - ///
  • objects are converted to arrays.
  • - ///
  • objects are converted to objects extending the class.
  • - ///
  • objects are converted to objects extending the class.
  • - ///
  • objects are converted to primitive number values (, , or ).
  • - ///
  • objects are converted to objects.
  • - ///
  • objects are converted to arrays.
  • - ///
  • objects are converted to objects.
  • - ///
  • objects are converted to arrays.
  • - ///
+ /// objects are converted to arrays. + /// objects are converted to objects extending the class. + /// objects are converted to objects extending the class. + /// objects are converted to primitive number values (, , or ). + /// objects are converted to objects. + /// objects are converted to arrays. + /// objects are converted to objects. + /// objects are converted to arrays. ///
/// A native .NET object representing this NSObject's value. public Object ToObject()