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

13 lines
413 B
Java

package me.goudham.event;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.List;
import me.goudham.domain.OldClipboardContent;
public interface ClipboardEvent {
void onCopyString(OldClipboardContent oldContent, String newContent);
void onCopyImage(OldClipboardContent oldContent, BufferedImage newContent);
void onCopyFiles(OldClipboardContent oldContent, List<File> newContent);
}