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.
9 lines
190 B
Java
9 lines
190 B
Java
3 years ago
|
package me.goudham.event;
|
||
3 years ago
|
|
||
|
import java.awt.image.BufferedImage;
|
||
|
|
||
3 years ago
|
public interface ClipboardEvent {
|
||
3 years ago
|
void onCopyString(String stringContent);
|
||
|
void onCopyImage(BufferedImage imageContent);
|
||
|
}
|