Configure() public static method

public static Configure ( RubyContext context, GeneratorState self, Hash configuration ) : void
context RubyContext
self GeneratorState
configuration Hash
return void
コード例 #1
0
 public static GeneratorState Reinitialize(RubyContext context, GeneratorState self, Hash configuration)
 {
     if (configuration != null)
     {
         GeneratorState.Configure(context, self, configuration);
     }
     return(self);
 }
コード例 #2
0
 public static GeneratorState Reconfigure(RubyContext context, GeneratorState /*!*/ self, Hash /*!*/ configuration)
 {
     GeneratorState.Configure(context, self, configuration);
     return(self);
 }