parent
dc23335a7a
commit
0728b70466
@ -0,0 +1,56 @@
|
||||
package de.tvo.workplace;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.eclnt.editor.annotations.CCGenClass;
|
||||
import org.eclnt.workplace.IWorkpageDispatcher;
|
||||
import org.eclnt.workplace.WorkpageDispatchedPageBean;
|
||||
|
||||
import org.eclnt.jsfserver.base.faces.event.ActionEvent;
|
||||
|
||||
@CCGenClass (expressionBase="#{d.DefaultWorkplaceBean}")
|
||||
|
||||
public class DefaultWorkplaceBean
|
||||
extends WorkpageDispatchedPageBean
|
||||
implements Serializable
|
||||
{
|
||||
// ------------------------------------------------------------------------
|
||||
// inner classes
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Listener to the user of the page bean. */
|
||||
public interface IListener extends Serializable
|
||||
{
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// members
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
private IListener m_listener;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// constructors & initialization
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
public DefaultWorkplaceBean(IWorkpageDispatcher workpageDispatcher)
|
||||
{
|
||||
super(workpageDispatcher);
|
||||
}
|
||||
|
||||
public String getPageName() { return "/workplace/defaultWorkplace.xml"; }
|
||||
public String getRootExpressionUsedInPage() { return "#{d.DefaultWorkplaceBean}"; }
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// public usage
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Initialization of the bean. Add any parameter that is required within your scenario. */
|
||||
public void prepare(IListener listener)
|
||||
{
|
||||
m_listener = listener;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// private usage
|
||||
// ------------------------------------------------------------------------
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
package de.tvo.workplace;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.eclnt.editor.annotations.CCGenClass;
|
||||
import org.eclnt.workplace.IWorkpageDispatcher;
|
||||
import org.eclnt.workplace.WorkpageDispatchedPageBean;
|
||||
|
||||
import org.eclnt.jsfserver.base.faces.event.ActionEvent;
|
||||
|
||||
@CCGenClass (expressionBase="#{d.DefaultWorkplaceFunctionsBean}")
|
||||
|
||||
public class DefaultWorkplaceFunctionsBean
|
||||
extends WorkpageDispatchedPageBean
|
||||
implements Serializable
|
||||
{
|
||||
// ------------------------------------------------------------------------
|
||||
// inner classes
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Listener to the user of the page bean. */
|
||||
public interface IListener extends Serializable
|
||||
{
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// members
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
private IListener m_listener;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// constructors & initialization
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
public DefaultWorkplaceFunctionsBean(IWorkpageDispatcher workpageDispatcher)
|
||||
{
|
||||
super(workpageDispatcher);
|
||||
}
|
||||
|
||||
public String getPageName() { return "/workplace/defaultWorkplaceFunctions.xml"; }
|
||||
public String getRootExpressionUsedInPage() { return "#{d.DefaultWorkplaceFunctionsBean}"; }
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// public usage
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Initialization of the bean. Add any parameter that is required within your scenario. */
|
||||
public void prepare(IListener listener)
|
||||
{
|
||||
m_listener = listener;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// private usage
|
||||
// ------------------------------------------------------------------------
|
||||
}
|
||||
@ -0,0 +1,54 @@
|
||||
package de.tvo.workplace;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.eclnt.editor.annotations.CCGenClass;
|
||||
import org.eclnt.jsfserver.pagebean.PageBean;
|
||||
|
||||
import org.eclnt.jsfserver.base.faces.event.ActionEvent;
|
||||
|
||||
@CCGenClass (expressionBase="#{d.TestPageBean}")
|
||||
|
||||
public class TestPageBean
|
||||
extends PageBean
|
||||
implements Serializable
|
||||
{
|
||||
// ------------------------------------------------------------------------
|
||||
// inner classes
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Listener to the user of the page bean. */
|
||||
public interface IListener extends Serializable
|
||||
{
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// members
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
private IListener m_listener;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// constructors & initialization
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
public TestPageBean()
|
||||
{
|
||||
}
|
||||
|
||||
public String getPageName() { return "/workplace/testPage.xml"; }
|
||||
public String getRootExpressionUsedInPage() { return "#{d.TestPageBean}"; }
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// public usage
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Initialization of the bean. Add any parameter that is required within your scenario. */
|
||||
public void prepare(IListener listener)
|
||||
{
|
||||
m_listener = listener;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// private usage
|
||||
// ------------------------------------------------------------------------
|
||||
}
|
||||
@ -0,0 +1,59 @@
|
||||
package managedbeans;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import org.eclnt.editor.annotations.CCGenClass;
|
||||
import org.eclnt.jsfserver.pagebean.IPageBean;
|
||||
import org.eclnt.jsfserver.pagebean.PageBean;
|
||||
|
||||
import de.tvo.workplace.TestPageBean;
|
||||
|
||||
@CCGenClass (expressionBase="#{d.MainPage}")
|
||||
|
||||
public class MainPage
|
||||
extends PageBean
|
||||
implements Serializable
|
||||
{
|
||||
IPageBean m_mainPage;
|
||||
public IPageBean getMainPage() { return m_mainPage; }
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// inner classes
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Listener to the user of the page bean. */
|
||||
public interface IListener extends Serializable
|
||||
{
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// members
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
private IListener m_listener;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// constructors & initialization
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
public MainPage() {
|
||||
m_mainPage = new TestPageBean();
|
||||
}
|
||||
|
||||
public String getPageName() { return "/main.xml"; }
|
||||
public String getRootExpressionUsedInPage() { return "#{d.MainPage}"; }
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// public usage
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Initialization of the bean. Add any parameter that is required within your scenario. */
|
||||
public void prepare(IListener listener)
|
||||
{
|
||||
m_listener = listener;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// private usage
|
||||
// ------------------------------------------------------------------------
|
||||
}
|
||||
@ -0,0 +1,54 @@
|
||||
package managedbeans;
|
||||
|
||||
import java.io.Serializable;
|
||||
import org.eclnt.editor.annotations.CCGenClass;
|
||||
import org.eclnt.jsfserver.pagebean.PageBean;
|
||||
|
||||
import org.eclnt.jsfserver.base.faces.event.ActionEvent;
|
||||
|
||||
@CCGenClass (expressionBase="#{d.ReloadBean}")
|
||||
|
||||
public class ReloadBean
|
||||
extends PageBean
|
||||
implements Serializable
|
||||
{
|
||||
// ------------------------------------------------------------------------
|
||||
// inner classes
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Listener to the user of the page bean. */
|
||||
public interface IListener extends Serializable
|
||||
{
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// members
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
private IListener m_listener;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// constructors & initialization
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
public ReloadBean()
|
||||
{
|
||||
}
|
||||
|
||||
public String getPageName() { return "/reload.xml"; }
|
||||
public String getRootExpressionUsedInPage() { return "#{d.ReloadBean}"; }
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// public usage
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/* Initialization of the bean. Add any parameter that is required within your scenario. */
|
||||
public void prepare(IListener listener)
|
||||
{
|
||||
m_listener = listener;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// private usage
|
||||
// ------------------------------------------------------------------------
|
||||
}
|
||||
@ -0,0 +1,34 @@
|
||||
<dispatcherinfo>
|
||||
|
||||
<managedpackage name="de.tvo.workplace"/>
|
||||
|
||||
|
||||
<!--
|
||||
<dispatcherinfoextension resource="de/geis/portal/workplace/padat/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/portal/workplace/tools/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/portal/workplace/ftptool/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/portal/workplace/tooltips/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/portal/workplace/literals/managedbeans.xml"/>
|
||||
<managedpackage name="de.geis.portal.workplace.crossreferenzen"/>
|
||||
<dispatcherinfoextension resource="de/geis/portal/workplace/gxpaloguebersicht/managedbeans.xml"/>
|
||||
|
||||
<dispatcherinfoextension resource="de/geis/module/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/tools/managedbeans.xml"/>
|
||||
|
||||
<dispatcherinfoextension resource="de/geis/spedition/managedbeans.xml"/>
|
||||
|
||||
<dispatcherinfoextension resource="de/geis/project/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/project/standard/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/project/standard/nummernkreise/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/project/standard/configmanager/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/project/standard/goodreceiptv8/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/project/standard/wareneingangv8/managedbeans.xml"/>
|
||||
|
||||
<dispatcherinfoextension resource="de/geis/datacapture/managedbeans.xml"/>
|
||||
|
||||
|
||||
<dispatcherinfoextension resource="de/geis/project/standard/grundig/managedbeans.xml"/>
|
||||
<dispatcherinfoextension resource="de/geis/toolbox/managedbeans.xml"/>
|
||||
|
||||
-->
|
||||
</dispatcherinfo>
|
||||
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<t:layoutdefinition xmlns:t="http://www.CaptainCasa.com/controllibrary/t" >
|
||||
|
||||
<t:beanprocessing id="g_1" beanbinding="#{d.MainPage}" />
|
||||
<t:rowpagebeaninclude id="g_8" pagebeanbinding="#{d.MainPage.mainPage}" shownullcontent="true" />
|
||||
<t:rowstatusbar id="g_4" />
|
||||
|
||||
</t:layoutdefinition>
|
||||
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<t:layoutdefinition xmlns:t="http://www.CaptainCasa.com/controllibrary/t" >
|
||||
|
||||
<t:beanprocessing id="g_1" beanbinding="#{d.ReloadBean}" />
|
||||
<t:rowtitlebar id="g_2" />
|
||||
<t:rowheader id="g_3" />
|
||||
<t:rowbodypane id="g_4" />
|
||||
|
||||
</t:layoutdefinition>
|
||||
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<t:layoutdefinition xmlns:t="http://www.CaptainCasa.com/controllibrary/t" >
|
||||
|
||||
<t:beanprocessing id="g_1" beanbinding="#{d.DefaultWorkplaceBean}" />
|
||||
<t:row id="g_3" >
|
||||
<t:pane id="g_4" height="100%" stylevariant="WP_OUTESTPANE" width="100%" >
|
||||
<t:row id="g_5" >
|
||||
<t:pane id="g_6" height="100%" padding="3" >
|
||||
<t:row id="g_2" >
|
||||
<t:foldableverticalpane id="g_15" height="30" />
|
||||
</t:row>
|
||||
<t:rowdistance id="g_7" height="100%" />
|
||||
<t:row id="g_8" >
|
||||
<t:labelvertical id="g_9" font="size:20;weight:bold" foreground="#FFFFFF30" text="My Workplace" />
|
||||
</t:row>
|
||||
<t:rowdistance id="g_10" height="100" />
|
||||
</t:pane>
|
||||
<t:pane id="g_11" height="100%" width="100%" >
|
||||
<t:rowworkplace id="g_12" objectbinding="#{d.workpageContainer}" />
|
||||
<t:rowstatusbar id="g_13" />
|
||||
</t:pane>
|
||||
</t:row>
|
||||
</t:pane>
|
||||
</t:row>
|
||||
|
||||
</t:layoutdefinition>
|
||||
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<t:layoutdefinition xmlns:t="http://www.CaptainCasa.com/controllibrary/t" >
|
||||
|
||||
<t:beanprocessing id="g_1" beanbinding="#{d.DefaultWorkplaceFunctionsBean}" />
|
||||
<t:row id="g_5" >
|
||||
<t:pane id="g_2" background="#00000010" height="100%" width="100%" >
|
||||
<t:rowworkplacefunctions id="g_3" objectbinding="#{d.workpageContainer}" />
|
||||
</t:pane>
|
||||
</t:row>
|
||||
|
||||
</t:layoutdefinition>
|
||||
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<t:layoutdefinition xmlns:t="http://www.CaptainCasa.com/controllibrary/t" >
|
||||
|
||||
<t:beanprocessing id="g_1" beanbinding="#{d.TestPageBean}" />
|
||||
<t:rowtitlebar id="g_2" text="Test" />
|
||||
<t:rowheader id="g_3" />
|
||||
<t:rowbodypane id="g_4" />
|
||||
|
||||
</t:layoutdefinition>
|
||||
Loading…
Reference in new issue