1 //2 // ____.3 // __/\ ______| |__/\. _______4 // __ .____| | \ | +----+ \5 // _______| /--| | | - \ _ | : - \_________6 // \\______: :---| : : | : | \________>7 // |__\---\_____________:______: :____|____:_____\8 // /_____|9 //10 // . . . i n j a h i a w e t r u s t . . .11 //12 13 package org.jahia.views.engines;14 15 16 17 /**18 *19 * <p>Title: Interface for Jahia Engine Helper</p>20 * <p>Description: </p>21 * <p>Copyright: Copyright (c) 2002</p>22 * <p>Company: </p>23 * @author Khue Nguyen24 * @version 1.025 */26 public interface JahiaEngineViewHelperInterface {27 28 public abstract JahiaEngineCommonDataInterface getEngineCommonData();29 30 public abstract void setEngineCommonData(JahiaEngineCommonDataInterface engineCommonData);31 32 }33 34