CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
CheckConstructorsAnalyzerConstants.cs
Go to the documentation of this file.
1namespace Csla.Analyzers
2{
3 public static class PublicNoArgumentConstructorIsMissingConstants
4 {
5 public const string HasNonPublicNoArgumentConstructor = "HasNonPublicNoArgumentConstructor";
6 public const string Title = "Find CSLA Business Objects That do not Have Public No-Arugment Constructors";
7 public const string IdentifierText = "PublicNoArgumentConstructorIsMissing";
8 public const string Message = "CSLA business objects must have a public constructor with no arguments";
9 }
10
11 public static class ConstructorHasParametersConstants
12 {
13 public const string Title = "Find CSLA Business Objects That Have Constructors With Parameters";
14 public const string IdentifierText = "ConstructorHasParameters";
15 public const string Message = "CSLA business objects should not have public constructors with parameters";
16 }
17
18 public static class FindBusinessObjectCreationConstants
19 {
20 public const string Title = "Find CSLA Business Objects That Are Created Outside of a ObjectFactory";
21 public const string IdentifierText = "BusinessObjectCreated";
22 public const string Message = "CSLA business objects should not be created outside of a ObjectFactory instance";
23 }
24
25 public static class CheckConstructorsAnalyzerPublicConstructorCodeFixConstants
26 {
27 public const string AddPublicConstructorDescription = "Add public constructor with no arguments";
28 public const string UpdateNonPublicConstructorToPublicDescription = "Update non-public constructor to public";
29 }
30}