com.intellij.openapi.ui
Interface InputValidator


public interface InputValidator


Method Summary
 boolean canClose(java.lang.String inputString)
          This method is invoked just before message dialog is closed with OK code.
 boolean checkInput(java.lang.String inputString)
          Checks whether the inputString is valid.
 

Method Detail

checkInput

boolean checkInput(java.lang.String inputString)
Checks whether the inputString is valid. It is invoked each time input changes.


canClose

boolean canClose(java.lang.String inputString)
This method is invoked just before message dialog is closed with OK code. If false is returned then then the message dialog will not be closed.