This package contains code for reading texts written in the Manuel de Codage format.

Most of the time, you will use the MDCParserModelGenerator class, which can be used to build an in-memory model of the manuel de codage text.

	MDCParserModelGenerator m= new MDCParserModelGenerator();
	Reader r= new StringReader("p*t:pt");
	TopItemList l= m.parse(r);

All classes used in the model generated by this method are part of the package jsesh.mdc.model.

Yet, if you want to have more control on your parsing process, you can use the class MDCParserFacade. You should supply a jsesh.mdc.interfaces.MDCBuilder to indicate exactly what you want to do when you meet some Manuel de Codage construct.