Send Old Clipboard Content to consumers
parent
6699906053
commit
96f54330e5
@ -1,8 +1,9 @@
|
|||||||
package me.goudham.event;
|
package me.goudham.event;
|
||||||
|
|
||||||
import java.awt.image.BufferedImage;
|
import java.awt.image.BufferedImage;
|
||||||
|
import me.goudham.domain.OldClipboardContent;
|
||||||
|
|
||||||
public interface ClipboardEvent {
|
public interface ClipboardEvent {
|
||||||
void onCopyString(String stringContent);
|
void onCopyString(OldClipboardContent oldClipboardContent, String stringContent);
|
||||||
void onCopyImage(BufferedImage imageContent);
|
void onCopyImage(OldClipboardContent oldClipboardContent, BufferedImage imageContent);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue