1 package org.columba.core.context; 2 3 import java.util.EventObject ; 4 5 import org.columba.core.context.api.IContextResultEvent; 6 7 @SuppressWarnings ("serial") 8 public class ContextResultEvent extends EventObject implements 9 IContextResultEvent { 10 11 12 private String providerName; 13 14 public ContextResultEvent(final Object theSource) { 15 super(theSource); 16 } 17 18 public ContextResultEvent(final Object theSource, final String theProviderName) { 19 super(theSource); 20 21 this.providerName = theProviderName; 22 } 23 24 public String getProviderName() { 25 return providerName; 26 } 27 28 } 29 | Popular Tags |