All Downloads are FREE. Search and download functionalities are using the official Maven repository.

skype.SkypeChatMessage Maven / Gradle / Ivy

The newest version!
package skype;

import java.util.Date;

public interface SkypeChatMessage {
	public static final SkypeChatDateFormat chatDateFormat = new SkypeChatDateFormatImpl();
	public static final SkypeMessageDateFormat chatMessageDateFormat = new SkypeMessageDateFormatImpl();
	
	String getSenderId();

	String getSenderDisplayname();

	String getMessageBody();

	String getSignature();

	Date getTime();

	String messageText(boolean printUser);
	
	boolean isMatchingSignature(String signature);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy