1 /* 2 * joey-rt and its relative products are published under the terms 3 * of the Apache Software License. 4 * 5 * Created on 2004/12/13 4:45:36 6 */ 7 package org.asyrinx.joey.tapestry.components.entity; 8 9 import org.asyrinx.joey.tapestry.page.EntityPageDictionary; 10 import org.seasar.framework.container.S2Container; 11 12 /*** 13 * @author takeshi 14 */ 15 public interface EntityPagingAction { 16 17 S2Container getS2Container(); 18 19 EntityPageDictionary getDetailPageDictionary(); 20 21 String getDetailPageDictionaryName(); 22 23 String getDetailPageName(); 24 25 }