Example #1
0
 public ProxyGenerator(StringWriter output, TypeFormatter formatter, IntendProvider intendProvider)
     : base(output, formatter, intendProvider)
 {
     Suffix = "Proxy";
     Modifier = "public";
 }
Example #2
0
 public Disposable(IntendProvider provider, int oldIntend)
 {
     _provider = provider;
     _oldIntend = oldIntend;
 }
Example #3
0
 public DocumentGenerator(StringWriter output, TypeFormatter formatter, IntendProvider intendProvider)
     : base(output, formatter, intendProvider)
 {
 }
Example #4
0
 public InterfaceGenerator(StringWriter output, TypeFormatter formatter, IntendProvider provider)
     : base(output, formatter, provider)
 {
 }