Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2198 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
8 changed files with 111 additions and 33 deletions
@ -0,0 +1,28 @@ |
|||||||
|
// <file>
|
||||||
|
// <copyright see="prj:///doc/copyright.txt"/>
|
||||||
|
// <license see="prj:///doc/license.txt"/>
|
||||||
|
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
|
||||||
|
// <version>$Revision$</version>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
using System; |
||||||
|
|
||||||
|
namespace ICSharpCode.SharpDevelop.Dom.Refactoring |
||||||
|
{ |
||||||
|
public class CodeGeneratorOptions |
||||||
|
{ |
||||||
|
public bool BracesOnSameLine = true; |
||||||
|
public bool EmptyLinesBetweenMembers = true; |
||||||
|
string indentString; |
||||||
|
|
||||||
|
public string IndentString { |
||||||
|
get { return indentString; } |
||||||
|
set { |
||||||
|
if (string.IsNullOrEmpty(value)) { |
||||||
|
throw new ArgumentNullException("value"); |
||||||
|
} |
||||||
|
indentString = value; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue