org.jclarion.clarion.memory.DumbAppender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarion-runtime Show documentation
Show all versions of clarion-runtime Show documentation
JClarion runtime environment
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