Package net.infonode.docking.util
Interface ViewFactory
-
public interface ViewFactory
A factory that creates a view.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description View
createView()
Creates a view.javax.swing.Icon
getIcon()
Returns the icon for this factory.java.lang.String
getTitle()
Returns the title of this factory.
-
-
-
Method Detail
-
getIcon
javax.swing.Icon getIcon()
Returns the icon for this factory.- Returns:
- the icon for this factory
-
getTitle
java.lang.String getTitle()
Returns the title of this factory.- Returns:
- the title of this factory
-
createView
View createView()
Creates a view.- Returns:
- the view
-
-