Package org.xdoclet.plugin.hibernate.qtags

Examples of org.xdoclet.plugin.hibernate.qtags.HibernateTypedefParamTag


        Collection typedefTags = new ArrayList();
        typedefTags.addAll(Arrays.asList(clazz.getTagsByName("hibernate.typedef-param")));
        CollectionUtils.filter(typedefTags,
            new Predicate() {
                public boolean evaluate(Object object) {
                    HibernateTypedefParamTag tag = (HibernateTypedefParamTag) object;
                    return typedefName.equals(tag.getTypedefName());
                }
            });
        return typedefTags;
    }
View Full Code Here

TOP

Related Classes of org.xdoclet.plugin.hibernate.qtags.HibernateTypedefParamTag

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.