001    /*
002    @license.text@
003     */
004    package biz.hammurapi.util;
005    
006    
007    /**
008     * Accepts element for being included to model or for generation.
009     * @author Pavel Vlasov 
010     * @version $Revision: 1.1 $
011     */
012    public interface Acceptor {
013            boolean accept(Object element);
014    }