This plug-in enhances the functionality of code templates:
${clipboard} template variable - replaced by the contents of the clipboard.
${prompt(input|file|directory|enumeration, value [, value]*)}
This plug-in also supports extension-point promptProviders. Here is an example:
: :
Here is the implementation:
```
package templatetools;
import java.util.List;
import org.eclipse.jface.dialogs.InputDialog;
import org.eclipse.ui.PlatformUI;
public class InputPrompt implements IPrompt {
@SuppressWarnings("unchecked")
public String getValue(String name, List params) {
InputDialog inputDialog = new InputD