Package org.apache.ofbiz.webapp.view
Class AbstractViewHandler
- java.lang.Object
-
- org.apache.ofbiz.webapp.view.AbstractViewHandler
-
- All Implemented Interfaces:
ViewHandler
- Direct Known Subclasses:
FreeMarkerViewHandler
,HttpViewHandler
,JspViewHandler
,JspViewHandler
,MacroScreenViewHandler
,ScreenFopViewHandler
,SimpleContentViewHandler
public abstract class AbstractViewHandler extends java.lang.Object implements ViewHandler
ViewHandler - View Handler Interface
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
name
-
Constructor Summary
Constructors Constructor Description AbstractViewHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Gets the name of the view handler as declared in the controller configuration file.void
setName(java.lang.String name)
Sets the name of the view handler as declared in the controller configuration file.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.ofbiz.webapp.view.ViewHandler
init, render
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:ViewHandler
Gets the name of the view handler as declared in the controller configuration file.- Specified by:
getName
in interfaceViewHandler
- Returns:
- name String The name of the view handler as declared in the controller configuration file.
-
setName
public void setName(java.lang.String name)
Description copied from interface:ViewHandler
Sets the name of the view handler as declared in the controller configuration file.- Specified by:
setName
in interfaceViewHandler
- Parameters:
name
- String The name of the view handler as declared in the controller configuration file.
-
-