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

9 lines
190 B
Java

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