blob: 085db621c966aadb4262675de0127e8de6732e1f [file] [log] [blame]
//##header J2SE15
//#if defined(FOUNDATION10) || defined(J2SE13) || defined(ECLIPSE_FRAGMENT)
//##/*
//## * *****************************************************************************
//## * Copyright (C) 2006-2007, International Business Machines
//## * Corporation and others. All Rights Reserved.
//## * *****************************************************************************
//## */
//##// dlf13 internal 1.3 compatibility only
//##
//##package com.ibm.icu.impl;
//##
//##/**
//## * @internal
//## */
//##public final class ByteBuffer {
//## private byte[] data;
//##
//## private int pos;
//##
//## private int limit;
//##
//## private ByteBuffer() {
//## }
//##
//## public byte[] array() {
//## byte[] result = new byte[limit];
//## for (int i = 0; i < limit; ++i) {
//## result[i] = data[i];
//## }
//## return result;
//## }
//##
//## public static ByteBuffer wrap(byte[] data) {
//## if (data == null)
//## throw new NullPointerException();
//## ByteBuffer result = new ByteBuffer();
//## result.data = data;
//## result.pos = 0;
//## result.limit = data.length;
//## return result;
//## }
//##
//## public int limit() {
//## return limit;
//## }
//##
//## public int remaining() {
//## return limit - pos;
//## }
//##
//## public byte get() {
//## if (pos < limit)
//## return data[pos++];
//## throw new IndexOutOfBoundsException();
//## }
//##
//## public void get(byte[] dst, int offset, int length) {
//## if (offset < 0 || offset + length > dst.length || pos + length > limit) {
//## throw new IndexOutOfBoundsException();
//## }
//## for (int i = 0; i < length; ++i) {
//## dst[offset++] = data[pos++];
//## }
//## }
//## public static final ByteBuffer allocate(int size){
//## ByteBuffer ret = new ByteBuffer();
//## ret.data = new byte[size];
//## return ret;
//## }
//##}
//#endif