blob: 01fae49df00a9fe4b70b3ce59f6c0be9b71c7db6 [file] [log] [blame]
/////////////////////////////////////////////////////////////////////
//
// This software is provided "AS IS". The JavaPOS working group (including
// each of the Corporate members, contributors and individuals) MAKES NO
// REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE SOFTWARE,
// EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
// WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NON-INFRINGEMENT. The JavaPOS working group shall not be liable for
// any damages suffered as a result of using, modifying or distributing this
// software or its derivatives.Permission to use, copy, modify, and distribute
// the software and its documentation for any purpose is hereby granted.
//
// ToneIndicatorControl12
//
// Interface definining all capabilities, properties and methods
// that are specific to Tone Indicator for release 1.2.
//
// Modification history
// ------------------------------------------------------------------
// 98-02-18 JavaPOS Release 1.2 BS
//
/////////////////////////////////////////////////////////////////////
package jpos;
import jpos.events.*;
public interface ToneIndicatorControl12 extends BaseControl
{
// Capabilities
public boolean getCapPitch() throws JposException;
public boolean getCapVolume() throws JposException;
// Properties
public boolean getAsyncMode() throws JposException;
public void setAsyncMode(boolean asyncMode) throws JposException;
public int getInterToneWait() throws JposException;
public void setInterToneWait(int interToneWait) throws JposException;
public int getOutputID() throws JposException;
public int getTone1Duration() throws JposException;
public void setTone1Duration(int tone1Duration) throws JposException;
public int getTone1Pitch() throws JposException;
public void setTone1Pitch(int tone1Pitch) throws JposException;
public int getTone1Volume() throws JposException;
public void setTone1Volume(int tone1Volume) throws JposException;
public int getTone2Duration() throws JposException;
public void setTone2Duration(int tone2Duration) throws JposException;
public int getTone2Pitch() throws JposException;
public void setTone2Pitch(int tone2Pitch) throws JposException;
public int getTone2Volume() throws JposException;
public void setTone2Volume(int tone2Volume) throws JposException;
// Methods
public void clearOutput() throws JposException;
public void sound(int numberOfCycles, int interSoundWait)
throws JposException;
public void soundImmediate() throws JposException;
// Event listener methods
public void addDirectIOListener(DirectIOListener l);
public void removeDirectIOListener(DirectIOListener l);
public void addErrorListener(ErrorListener l);
public void removeErrorListener(ErrorListener l);
public void addOutputCompleteListener(OutputCompleteListener l);
public void removeOutputCompleteListener(OutputCompleteListener l);
}