// @@
// @@
/*
* Wi.Ser Framework
*
* Version: 1.8.1, 20-September-2007
* Copyright (C) 2005 Dirk von der Weiden <dvdw@imail.de>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library located in LGPL.txt in the
* license directory; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
* If this agreement does not cover your requirements, please contact us
* via email to get detailed information about the commercial license
* or our service offerings!
*
*/
// @@
package de.ug2t.channel.markup.html.renderer;
import de.ug2t.channel.markup.generic.*;
import de.ug2t.kernel.*;
public final class HtmlDrawPaneRenderer implements IKeView
{
private MuGenericCache pem_cache = new MuGenericCache();
public boolean pcmf_supportsCaching()
{
return (true);
}
public void pcmf_clearCache()
{
this.pem_cache.pcmf_clearCache();
}
public void pcmf_activateCache(boolean xAc)
{
this.pem_cache.pcmf_activateThisCache(xAc);
return;
}
public Object pcmf_output(KeTreeElement xTreeEl)
{
MuGenericDrawPane html_xTreeEl = (MuGenericDrawPane) xTreeEl;
// @@
KeStringTemplate l_string = html_xTreeEl.pcmf_getMarkupString("MAIN");
MuGenericApplication l_appl = (MuGenericApplication) html_xTreeEl.pcmf_getAppl();
l_string = html_xTreeEl.pcmf_insertToolTip(l_string);
l_string = html_xTreeEl.pcmf_insertColorandFontandBorder(l_string);
l_string = html_xTreeEl.pcmf_insertPosition(l_string);
l_string = html_xTreeEl.pcmf_insertChannelandMenu(l_string);
l_string.pcmf_beginTR();
l_string = KeTools.pcmf_stringSubst(l_string, "$URL", html_xTreeEl.pcmf_getImageNameURL());
l_string = KeTools.pcmf_stringSubst(l_string, "$PROT", l_appl.pcmf_getProtocol());
l_string = KeTools.pcmf_stringSubst(l_string, "$OID", html_xTreeEl.pcmf_getObjName());
l_string.pcmf_endTR(true);
// @@
return (l_string);
};
public Object pcmf_execView(KeTreeElement xTreeEl)
{
return (xTreeEl.pcmf_execView());
};
};
|