git://git.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
137cd08de0492b1a5959bb19d7bbba85a07ff57b
[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
}