1 16 package org.apache.cocoon.portal.coplets.basket.events; 17 18 import org.apache.cocoon.portal.coplets.basket.ContentStore; 19 import org.apache.cocoon.portal.layout.Layout; 20 21 26 public class ShowItemEvent extends ContentStoreEvent { 27 28 29 protected final Object item; 30 31 32 protected final Layout layout; 33 34 35 protected final String copletData; 36 37 44 public ShowItemEvent(ContentStore store, Object item, Layout layout, String copletData) { 45 super(store); 46 this.item = item; 47 this.layout = layout; 48 this.copletData = copletData; 49 } 50 51 54 public Object getItem() { 55 return this.item; 56 } 57 58 61 public Layout getLayout() { 62 return this.layout; 63 } 64 65 68 public String getCopletDataId() { 69 return this.copletData; 70 } 71 } 72 | Popular Tags |