com.skype.CallAdapter Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2006-2007 Koji Hisano - UBION Inc. Developer
* Copyright (c) 2006-2007 UBION Inc.
*
* Copyright (c) 2006-2007 Skype Technologies S.A.
*
* Skype4Java is licensed under either the Apache License, Version 2.0 or
* the Eclipse Public License v1.0.
* You may use it freely in commercial and non-commercial products.
* You may obtain a copy of the licenses at
*
* the Apache License - http://www.apache.org/licenses/LICENSE-2.0
* the Eclipse Public License - http://www.eclipse.org/legal/epl-v10.html
*
* If it is possible to cooperate with the publicity of Skype4Java, please add
* links to the Skype4Java web site
* in your web site or documents.
*
* Contributors:
* Koji Hisano - initial API and implementation
* Bart Lamot - good javadocs
******************************************************************************/
package com.skype;
/**
* Empty implementation of CallListener to overide and use as a listener.
* @author Koji Hisano
*/
public class CallAdapter implements CallListener {
/**
* This method will be triggered when a CALL is received.
* @param receivedCall the CALL received.
* @throws SkypeException when connection is gone bad.
*/
public void callReceived(Call receivedCall) throws SkypeException {
}
/**
* This method is called when a new CALL is started.
* @param makedCall the new CALL made.
* @throws SkypeException when the connection is goen bad.
*/
public void callMaked(Call makedCall) throws SkypeException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy