1 package org.columba.core.context.semantic; 2 3 import java.util.EventObject ; 4 5 import org.columba.core.context.base.api.IStructureValue; 6 import org.columba.core.context.semantic.api.IContextEvent; 7 8 public class ContextEvent extends EventObject implements IContextEvent { 9 10 private Object source; 11 12 private IStructureValue value; 13 14 public ContextEvent(Object source, IStructureValue value) { 15 super(source); 16 17 this.value = value; 18 } 19 20 public IStructureValue getValue() { 21 return value; 22 } 23 24 } 25 | Popular Tags |