C# Class Castle.MonoRail.Framework.Internal.JSElementGeneratorBase

Operations related to an element
Show file Open project: nats/castle-1.0.3-mono

Protected Properties

Property Type Description
generator IJSElementGenerator
parentGenerator IJSGenerator

Public Methods

Method Description
JSElementGeneratorBase ( IJSElementGenerator generator ) : Castle.MonoRail.Framework.Helpers

Initializes a new instance of the JSElementGeneratorBase class.

Protected Methods

Method Description
InternalGet ( string propName ) : void

Generates a get statement

InternalInvoke ( string method, object args ) : object

Dispatches the invocation (late bound)

Method Details

InternalGet() protected method

Generates a get statement
protected InternalGet ( string propName ) : void
propName string Name of the prop.
return void

InternalInvoke() protected method

Dispatches the invocation (late bound)
protected InternalInvoke ( string method, object args ) : object
method string The method.
args object The args.
return object

JSElementGeneratorBase() public method

Initializes a new instance of the JSElementGeneratorBase class.
public JSElementGeneratorBase ( IJSElementGenerator generator ) : Castle.MonoRail.Framework.Helpers
generator IJSElementGenerator The generator.
return Castle.MonoRail.Framework.Helpers

Property Details

generator protected property

Element generator instance
protected IJSElementGenerator generator
return IJSElementGenerator

parentGenerator protected property

Parent Generator instance
protected IJSGenerator parentGenerator
return IJSGenerator