You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MyClipboard/src/main/java/me/goudham/event/ClipboardEvent.java

10 lines
318 B
Java

package me.goudham.event;
import java.awt.image.BufferedImage;
import me.goudham.domain.OldClipboardContent;
public interface ClipboardEvent {
void onCopyString(OldClipboardContent oldClipboardContent, String stringContent);
void onCopyImage(OldClipboardContent oldClipboardContent, BufferedImage imageContent);
}