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