1 16 package org.apache.cocoon.portal.event.impl; 17 18 25 public class JXPathEvent 26 extends AbstractActionEvent { 27 28 protected String path; 29 30 protected Object value; 31 32 35 public String getPath() { 36 return path; 37 } 38 39 42 public Object getValue() { 43 return value; 44 } 45 46 public JXPathEvent(Object target, String path, Object value) { 47 super( target ); 48 this.path = path; 49 this.value = value; 50 } 51 52 } 53 | Popular Tags |