Open lyriccoder opened 1 year ago
public DeleteDialogBot openDeleteDialog() { if ( <mask0>.getTree().selectionCount() == 1 ) { ContextMenuHelper.clickContextMenu( <mask1>.getTree(), \"Delete Entry\" ); return new DeleteDialogBot( DeleteDialogBot.DELETE_ENTRY_TITLE ); } }
using <mask1>, <mask2>,...,<maskn>
Hi guys.
Thank you for yor work.
I see that unixcoder can predict token.
1) How can I predict several tokens located in a different place?
Suppose, I have the code:
Wll be the following input correct if I need predict the same variable ,but located in different place?
2) How can I predict several different tokens located in a different place? Suppose, I have the code:
I need to predict 2 tokens (
browserBot
, located in 2 places) and alsoDeleteDialogBot
, but I need to put into a single input? How can I do it?