/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package ifc.io;
import java.util.List;
import lib.MultiMethodTest;
import lib.Status;
import lib.StatusException;
import com.sun.star.io.XDataInputStream;
import com.sun.star.io.XDataOutputStream;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
/**
* Testing com.sun.star.io.XDataInputStream
* interface methods:
*
*
readBoolean()
*
readByte()
*
readChar()
*
readShort()
*
readLong()
*
readHyper()
*
readFloat()
*
readDouble()
*
readUTF()
*
* This test needs the following object relations :
*
*
'StreamData' (of type Vector):
* vector of data for comparing with data that obtained from stream
*
'StreamWriter' (of type XDataOutputStream):
* a possibility to write values to the stream.
*
* After test completion object environment has to be recreated.
* @see com.sun.star.io.XDataInputStream
* @see java.util.Vector
*/
public class _XDataInputStream extends MultiMethodTest {
public XDataInputStream oObj = null;
public XDataOutputStream oStream = null;
// values that are written
private boolean writeBoolean;
private byte writeByte;
private char writeChar;
private double writeDouble;
private float writeFloat;
private long writeHyper;
private int writeLong;
private short writeShort;
private String writeUTF;
/**
* Retrieves relations. From relation 'StreamData' extracts
* data of different types and fills the appropriate variables.
* @throws StatusException If one of relations not found.
*/
@Override
public void before(){
XInterface x = (XInterface)tEnv.getObjRelation("StreamWriter") ;
oStream = UnoRuntime.queryInterface(
XDataOutputStream.class, x);
List