Package io.guise.framework.model
Interface NavigationModel
-
- All Superinterfaces:
Model
,com.globalmentor.beans.PropertyBindable
,com.globalmentor.beans.PropertyConstrainable
- All Known Implementing Classes:
ComponentNavigationModel
,DefaultNavigationModel
,LikeButton
public interface NavigationModel extends Model
A model for identifying a navigation path.- Author:
- Garret Wilson
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
NAVIGATION_PATH_PROPERTY
The navigation path bound property, of typeURIPath
.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.globalmentor.net.URIPath
getNavigationPath()
void
setNavigationPath(com.globalmentor.net.URIPath newNavigationPath)
Sets the navigation path This is a bound property.
-
-
-
Method Detail
-
getNavigationPath
com.globalmentor.net.URIPath getNavigationPath()
- Returns:
- The navigation path, or
null
if the navigation path is not available.
-
setNavigationPath
void setNavigationPath(com.globalmentor.net.URIPath newNavigationPath)
Sets the navigation path This is a bound property.- Parameters:
newNavigationPath
- The new navigation path, ornull
if the navigation path is not available.- See Also:
NAVIGATION_PATH_PROPERTY
-
-