X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FEditMenuUser.java;h=52dc33e4db97a806ccc059ec94ec9483f5f1a152;hb=HEAD;hp=b6e7845065c482f27322f8d2a1973fa695499654;hpb=cf8b15bcb6f7fa2b2c114563115d47b34bfc7436;p=fanfix.git diff --git a/src/jexer/EditMenuUser.java b/src/jexer/EditMenuUser.java index b6e7845..52dc33e 100644 --- a/src/jexer/EditMenuUser.java +++ b/src/jexer/EditMenuUser.java @@ -36,30 +36,30 @@ package jexer; public interface EditMenuUser { /** - * Check if cut to clipboard is supported. + * Check if the cut menu item should be enabled. * - * @return true if cut to clipboard is supported + * @return true if the cut menu item should be enabled */ public boolean isEditMenuCut(); /** - * Check if copy to clipboard is supported. + * Check if the copy menu item should be enabled. * - * @return true if copy to clipboard is supported + * @return true if the copy menu item should be enabled */ public boolean isEditMenuCopy(); /** - * Check if paste from clipboard is supported. + * Check if the paste menu item should be enabled. * - * @return true if paste from clipboard is supported + * @return true if the paste menu item should be enabled */ public boolean isEditMenuPaste(); /** - * Check if clear selection is supported. + * Check if the clear menu item should be enabled. * - * @return true if clear selection is supported + * @return true if the clear menu item should be enabled */ public boolean isEditMenuClear();