Examples of EjbActivationConfigPropertyTag


Examples of org.xdoclet.plugin.ejb.qtags.EjbActivationConfigPropertyTag

        return value;
    }

    public boolean hasActivationConfig(JavaClass javaClass) {
        EjbBeanTag beanTag = (EjbBeanTag) javaClass.getTagByName(TagLibrary.EJB_BEAN);
        EjbActivationConfigPropertyTag actTag = (EjbActivationConfigPropertyTag) javaClass.getTagByName(
                TagLibrary.EJB_ACTIVATION_CONFIG_PROPERTY);
        boolean retVal = false;

        if (beanTag != null) {
            retVal |= (beanTag.getDestinationType() != null);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.