01: package org.andromda.cartridges.jsf.metafacades;
02:
03: /**
04: * MetafacadeLogic implementation for org.andromda.cartridges.jsf.metafacades.JSFSessionObject.
05: *
06: * @see org.andromda.cartridges.jsf.metafacades.JSFSessionObject
07: */
08: public class JSFSessionObjectLogicImpl extends JSFSessionObjectLogic {
09:
10: public JSFSessionObjectLogicImpl(Object metaObject, String context) {
11: super (metaObject, context);
12: }
13:
14: /**
15: * @see org.andromda.cartridges.jsf.metafacades.JSFSessionObject#getFullPath()
16: */
17: protected java.lang.String handleGetFullPath() {
18: return '/' + this .getFullyQualifiedName().replace('.', '/');
19: }
20: }
|