1 48 49 package org.jpublish.view; 50 51 import org.jpublish.SiteContext; 52 53 59 60 public abstract class AbstractViewRenderer implements ViewRenderer { 61 62 protected SiteContext siteContext; 63 64 68 69 public void init() { 70 } 72 73 78 79 public SiteContext getSiteContext() { 80 return siteContext; 81 } 82 83 88 89 public void setSiteContext(SiteContext siteContext) { 90 this.siteContext = siteContext; 91 } 92 93 } 94 | Popular Tags |