/*
 * <copyright>
 *
 * Copyright (c) 2009 Marc Schlienger (http://www.innoq.com/blog/mrs) and others.
 * All rights reserved.  
 * This program and the accompanying materials are made available under the terms of 
 * the Eclipse Public License v1.0 available at http://www.eclipse.org/legal/epl-v10.html
 *
 * </copyright>
 */
package com.csg.cs.log.ifms.generator.oaw;

import org.openarchitectureware.xpand2.output.OutputImpl;

public class StringOutput extends OutputImpl {

	private StringBuffer bf = new StringBuffer();
	
	public void write(String bytes) {
		bf.append(bytes);
	}
	
	@Override
	public String toString() {
		return bf.toString();
	}
}

