1 13 package org.jahia.views.engines; 14 15 import java.util.ArrayList ; 16 17 import org.jahia.taglibs.button.TabButton; 18 19 28 public class JahiaEngineTabButtonsHelper { 29 30 private static final String CLASS_NAME = JahiaEngineTabButtonsHelper.class.getName(); 31 public static final String JAHIA_ENGINE_BUTTONS_HELPER = "jahiaEngineTabButtonsHelper"; 32 33 private ArrayList buttons = new ArrayList (); 34 35 38 public JahiaEngineTabButtonsHelper(){ 39 } 41 42 public void addButton(TabButton button){ 43 buttons.add(button); 44 } 45 46 public ArrayList getButtons(){ 47 return this.buttons; 48 } 49 } 50 51 | Popular Tags |