package org.reuseware.air.language.cmsl.resource.cmsl; /** * This is the printer class used by EMFText. * Users may implement own behavior by overriding printing methods in the printer base. * The baseclass contains a pretty printer implementation generated by EMFText which * is not granted to work in all cases, but should work in most cases. */ public class CmslPrinter extends CmslPrinterBase { public CmslPrinter(java.io.OutputStream o, org.emftext.runtime.resource.ITextResource resource) { super(o, resource); } }