1 22 package org.jboss.verifier.factory; 23 24 45 46 48 49 import org.gjt.lindfors.pattern.AbstractFactory; 51 52 import org.jboss.verifier.Section; 53 import org.jboss.verifier.event.VerificationEventGenerator; 54 import org.jboss.verifier.event.VerificationEvent; 55 56 57 69 public interface VerificationEventFactory extends AbstractFactory { 70 71 VerificationEvent createSpecViolationEvent( 72 VerificationEventGenerator source, 73 Section section); 74 75 VerificationEvent createBeanVerifiedEvent( 76 VerificationEventGenerator source); 77 78 79 } 80 | Popular Tags |