refactory: added UI removed from core plugin.
[phpeclipse.git] / net.sourceforge.phpeclipse.ui / src / net / sourceforge / phpdt / internal / ui / viewsupport / IViewPartInputProvider.java
1 package net.sourceforge.phpdt.internal.ui.viewsupport;
2
3 /**
4  * Interface common to all view parts that provide an input.
5  */
6 public interface IViewPartInputProvider {
7
8         /**
9          * Returns the input.
10          * 
11          * @return the input object
12          */
13         public Object getViewPartInput();
14
15 }