Package com.saperion.rmi
Class SaNavigationImpl
- java.lang.Object
-
- com.saperion.rmi.SaNavigationImpl
-
- All Implemented Interfaces:
SaNavigation
,SaUserSettingType
,java.io.Serializable
public class SaNavigationImpl extends java.lang.Object implements SaNavigation, java.io.Serializable
The JNI implementation of theSaNavigation
interface.
The object is instantiated and filled by the JNI layer.- Author:
- rbo
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.saperion.intf.SaUserSettingType
SaUserSettingType.TYPE
-
-
Constructor Summary
Constructors Constructor Description SaNavigationImpl(java.lang.String elementTitle)
Constructor.SaNavigationImpl(java.lang.String elementTitel, java.lang.String queryName, java.lang.String indexName)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addChild(SaNavigation child)
java.util.List<SaNavigation>
getChildren()
java.lang.String
getIndexForm()
java.lang.String
getQueryForm()
java.lang.String
getTitle()
boolean
isPane()
-
-
-
Constructor Detail
-
SaNavigationImpl
public SaNavigationImpl(java.lang.String elementTitel, java.lang.String queryName, java.lang.String indexName)
Constructor.- Parameters:
elementTitel
- TitlequeryName
- QueryformindexName
- Indexform
-
SaNavigationImpl
public SaNavigationImpl(java.lang.String elementTitle)
Constructor.- Parameters:
elementTitle
- Title
-
-
Method Detail
-
isPane
public final boolean isPane()
- Returns:
- Is pane
-
addChild
public final void addChild(SaNavigation child)
- Parameters:
child
- New child
-
getChildren
public final java.util.List<SaNavigation> getChildren()
- Specified by:
getChildren
in interfaceSaNavigation
- Returns:
- Children
- See Also:
SaNavigation.getChildren()
-
getIndexForm
public final java.lang.String getIndexForm()
- Specified by:
getIndexForm
in interfaceSaNavigation
- Returns:
- Index form name
- See Also:
SaNavigation.getIndexForm()
-
getQueryForm
public final java.lang.String getQueryForm()
- Specified by:
getQueryForm
in interfaceSaNavigation
- Returns:
- Query form name
- See Also:
SaNavigation.getQueryForm()
-
getTitle
public final java.lang.String getTitle()
- Specified by:
getTitle
in interfaceSaNavigation
- Returns:
- Title
- See Also:
SaNavigation.getTitle()
-
-