Skip to content

Commit

Permalink
ws
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@2958 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Jul 2, 2009
1 parent 8c7626f commit a9db3ab
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions api/src/main/java/javax/enterprise/inject/spi/ObserverMethod.java
Expand Up @@ -7,11 +7,17 @@
import javax.enterprise.event.Notify;
import javax.enterprise.event.TransactionPhase;

public interface ObserverMethod<X, T> {
public Bean<X> getBean();
public Type getObservedType();
public Set<Annotation> getObservedBindings();
public Notify getNotify();
public TransactionPhase getTransactionPhase();
public void notify(T event);
public interface ObserverMethod<X, T>
{
public Bean<X> getBean();

public Type getObservedType();

public Set<Annotation> getObservedBindings();

public Notify getNotify();

public TransactionPhase getTransactionPhase();

public void notify(T event);
}

0 comments on commit a9db3ab

Please sign in to comment.