Files
openide/source/com/intellij/codeInsight/template/InvokeActionResult.java
Maxim Shafirov 7460e5adae initial
2005-01-13 23:44:30 +03:00

24 lines
479 B
Java

package com.intellij.codeInsight.template;
import com.intellij.psi.PsiElement;
public class InvokeActionResult implements Result{
private final Runnable myAction;
public InvokeActionResult(Runnable action) {
myAction = action;
}
public Runnable getAction() {
return myAction;
}
public boolean equalsToText(String text, PsiElement context) {
return true; //no text result will be provided anyway
}
public String toString() {
return "";
}
}