All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclarion.clarion.memory.DumbAppender Maven / Gradle / Ivy

The newest version!
package org.jclarion.clarion.memory;

public class DumbAppender implements CMemAppender
{
	private char[] buffer;
	private int pos;
	
	public DumbAppender(int size)
	{
		buffer=new char[size];
	}

	@Override
	public void append(char c) {
		buffer[pos++]=c;
	}
	
	public char[] getCharArray()
	{
		return buffer;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy