public boolean setTextEditMenu(JPopupMenu popup) { if (isText()) { popup.add(CoordinateEdit.getTextEditAction(this, "EditText")); return true; } return false; }
/** Scale percentage return true if popup is set */ public boolean setScaleMenu(JPopupMenu popup) { if (isIcon() && _displayLevel > Editor.BKG) { popup.add(CoordinateEdit.getScaleEditAction(this)); return true; } return false; }