C# Class Monobjc.Tools.Generator.Parsers.BaseParser

Inheritance: IBaseParser
Mostra file Open project: Monobjc/monobjc-tools

Public Methods

Method Description
Parse ( BaseEntity entity, String file ) : void

Parses the specified entity.

Parse ( BaseEntity entity, TextReader reader ) : void

Parses the specified entity.

Protected Methods

Method Description
BaseParser ( NameValueCollection settings, TypeManager typeManager, TextWriter logger ) : System

Initializes a new instance of the BaseParser class.

Method Details

BaseParser() protected method

Initializes a new instance of the BaseParser class.
protected BaseParser ( NameValueCollection settings, TypeManager typeManager, TextWriter logger ) : System
settings System.Collections.Specialized.NameValueCollection The settings.
typeManager Monobjc.Tools.Generator.Utilities.TypeManager The type manager.
logger System.IO.TextWriter
return System

Parse() public method

Parses the specified entity.
public Parse ( BaseEntity entity, String file ) : void
entity BaseEntity The entity.
file String The file.
return void

Parse() public abstract method

Parses the specified entity.
public abstract Parse ( BaseEntity entity, TextReader reader ) : void
entity BaseEntity The entity.
reader System.IO.TextReader The reader.
return void