licensing update to APSL 2.0
[org.ibex.util.git] / src / org / ibex / util / AccessibleCharArrayWriter.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.util;
6
7 import java.io.*;
8
9 public class AccessibleCharArrayWriter extends CharArrayWriter {
10     public char[] getBuf() { return buf; }
11     public AccessibleCharArrayWriter(int i) { super(i); }
12 }
13