X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/viewsupport/IViewPartInputProvider.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/viewsupport/IViewPartInputProvider.java new file mode 100644 index 0000000..137cd08 --- /dev/null +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/viewsupport/IViewPartInputProvider.java @@ -0,0 +1,15 @@ +package net.sourceforge.phpdt.internal.ui.viewsupport; + +/** + * Interface common to all view parts that provide an input. + */ +public interface IViewPartInputProvider { + + /** + * Returns the input. + * + * @return the input object + */ + public Object getViewPartInput(); + +}