1 16 package org.apache.cocoon.portal.event.impl; 17 18 import org.apache.cocoon.portal.coplet.CopletData; 19 import org.apache.cocoon.portal.event.CopletDataEvent; 20 21 28 public class ChangeCopletsJXPathEvent 29 extends AbstractActionEvent 30 implements CopletDataEvent { 31 32 protected String path; 33 protected Object value; 34 35 41 public ChangeCopletsJXPathEvent(CopletData target, String path, Object value) { 42 super( target ); 43 this.path = path; 44 this.value = value; 45 } 46 47 50 public String getPath() { 51 return this.path; 52 } 53 54 57 public Object getValue() { 58 return this.value; 59 } 60 61 } 62 | Popular Tags |