Index: Core/Common/src/Core.Common.Base/Data/Project.cs
===================================================================
diff -u -r5d0590c1dde44d6dc5397a3a9ffad15163f1e463 -rd10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0
--- Core/Common/src/Core.Common.Base/Data/Project.cs (.../Project.cs) (revision 5d0590c1dde44d6dc5397a3a9ffad15163f1e463)
+++ Core/Common/src/Core.Common.Base/Data/Project.cs (.../Project.cs) (revision d10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0)
@@ -1,3 +1,4 @@
+using Core.Common.Base.Properties;
using Core.Common.Utils.Collections.Generic;
namespace Core.Common.Base.Data
@@ -10,7 +11,7 @@
///
/// Constructs a new .
///
- public Project() : this("Project") {}
+ public Project() : this(Resources.Project_Constructor_Default_name) {}
///
/// Constructs a new .
Index: Core/Common/src/Core.Common.Base/IO/IFileExporter.cs
===================================================================
diff -u -r55ad1d69b06d380c225f26750cf93631f5851ada -rd10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0
--- Core/Common/src/Core.Common.Base/IO/IFileExporter.cs (.../IFileExporter.cs) (revision 55ad1d69b06d380c225f26750cf93631f5851ada)
+++ Core/Common/src/Core.Common.Base/IO/IFileExporter.cs (.../IFileExporter.cs) (revision d10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0)
@@ -25,7 +25,7 @@
Bitmap Image { get; }
///
- /// Gets the of the items supported by the .
+ /// Gets the of the item supported by the .
///
Type SupportedItemType { get; }
@@ -38,12 +38,12 @@
string FileFilter { get; }
///
- /// Performs the export of to a file with path
- /// and returns a which reflects whether or not the export was successful.
+ /// This method exports the data of an item to a file at the given location.
///
/// The item to export the data from.
/// The path of the file to export the data to.
/// true if the export was successful. false otherwise.
+ /// Implementations of this export method are allowed to throw exceptions of any kind.
bool Export(object sourceItem, string filePath);
///
Index: Core/Common/src/Core.Common.Base/IO/IFileImporter.cs
===================================================================
diff -u -ra5b6ad37f1dff6447a17f0f8ea3fc47a5517c2e1 -rd10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0
--- Core/Common/src/Core.Common.Base/IO/IFileImporter.cs (.../IFileImporter.cs) (revision a5b6ad37f1dff6447a17f0f8ea3fc47a5517c2e1)
+++ Core/Common/src/Core.Common.Base/IO/IFileImporter.cs (.../IFileImporter.cs) (revision d10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0)
@@ -25,7 +25,7 @@
Bitmap Image { get; }
///
- /// Gets the of the items supported by the .
+ /// Gets the of the item supported by the .
///
Type SupportedItemType { get; }
@@ -43,12 +43,12 @@
ProgressChangedDelegate ProgressChanged { set; }
///
- /// Performs an import on from a file with path
- /// and returns a which reflects whether or not the import was successful.
+ /// This method imports the data to an item from a file at the given location.
///
/// The item to perform the import on.
/// The path of the file to import the data from.
/// true if the import was successful. false otherwise.
+ /// Implementations of this import method are allowed to throw exceptions of any kind.
bool Import(object targetItem, string filePath);
///
Index: Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs
===================================================================
diff -u -r5914abad7fec8a4bf5634acaf15571b7c195f677 -rd10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0
--- Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 5914abad7fec8a4bf5634acaf15571b7c195f677)
+++ Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0)
@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
-// Runtime Version:4.0.30319.18063
+// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -96,5 +96,14 @@
"rogressText_2", resourceCulture);
}
}
+
+ ///
+ /// Looks up a localized string similar to Project.
+ ///
+ internal static string Project_Constructor_Default_name {
+ get {
+ return ResourceManager.GetString("Project_Constructor_Default_name", resourceCulture);
+ }
+ }
}
}
Index: Core/Common/src/Core.Common.Base/Properties/Resources.resx
===================================================================
diff -u -r5914abad7fec8a4bf5634acaf15571b7c195f677 -rd10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0
--- Core/Common/src/Core.Common.Base/Properties/Resources.resx (.../Resources.resx) (revision 5914abad7fec8a4bf5634acaf15571b7c195f677)
+++ Core/Common/src/Core.Common.Base/Properties/Resources.resx (.../Resources.resx) (revision d10ce32a6631b4b73ca5d87f51cf16fa2ee5f1c0)
@@ -129,4 +129,7 @@
Stap {0} van {1} | {2}
+
+ Project
+
\ No newline at end of file