/* ================================================================== * Created [2009-4-27 下午11:32:55] by Jon.King * ================================================================== * TSS * ================================================================== * mailTo:jinpujun@hotmail.com * Copyright (c) Jon.King, 2009-2012 * ================================================================== */ package com.jinhe.tss.portal.engine.model; /** * <p> * 可配置修饰器参数的节点接口。 * 包括页面、版面、portlet实例 * </p> */ public interface DecoratorConfigable { /** * 获取修饰器node。 * @return */ DecoratorNode getDecoratorNode(); void setDecoratorNode(DecoratorNode decoratorNode); /** * 获取修饰器修饰的内容。 * 页面: LayoutNode * 版面: LayoutNode * portlet实例: PortletNode * @return */ AbstractElementNode getDecoratorContent(); }