01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.console.base.context;
09:
10: //base classes
11:
12: //project specific classes
13: import org.jfolder.console.base.BaseSubConsolePageContext;
14: import org.jfolder.console.base.ConsolePageContext;
15:
16: //other classes
17:
18: public abstract class BaseSubPaneContentConsolePageContext extends
19: BaseSubConsolePageContext {
20:
21: //
22: protected BaseSubPaneContentConsolePageContext(
23: ConsolePageContext inCpc, String inName) {
24:
25: super (inCpc, inName);
26: }
27:
28: public abstract String getSectionId();
29:
30: public abstract String getDownShiftToHighlightHandle();
31: }
|