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
295 B
Java

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