1 16 package org.apache.cocoon.portal.coplets.basket.events; 17 18 import org.apache.cocoon.portal.coplets.basket.ContentStore; 19 20 25 public class MoveItemEvent extends ContentStoreEvent { 26 27 28 protected Object item; 29 30 31 protected final ContentStore target; 32 33 39 public MoveItemEvent(ContentStore store, Object item, ContentStore target) { 40 super(store); 41 this.item = item; 42 this.target = target; 43 } 44 45 48 public Object getItem() { 49 return this.item; 50 } 51 52 55 public ContentStore getTarget() { 56 return this.target; 57 } 58 } 59 | Popular Tags |