fix "stack trace" from this post: http://phpeclipse.de/tiki-view_forum_thread.php ?
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / dialogs / ISelectionValidator.java
1 package net.sourceforge.phpdt.internal.ui.dialogs;
2
3 import org.eclipse.core.runtime.IStatus;
4
5 public interface ISelectionValidator {
6
7         IStatus validate(Object[] selection);
8
9 }