Package xdoclet.modules.ejb.entity

Examples of xdoclet.modules.ejb.entity.EntityFacadeSubTask


    }


    protected static String getEntityFacadeClassPattern()
    {
        EntityFacadeSubTask entityFacadeSubtask = ((EntityFacadeSubTask) DocletContext.getInstance().getSubTaskBy(DocletTask.getSubTaskName(EntityFacadeSubTask.class)));

        if (entityFacadeSubtask != null) {
            return entityFacadeSubtask.getEntityFacadeClassPattern();
        }
        else {
            return EntityFacadeSubTask.DEFAULT_ENTITY_FACADE_CLASS_PATTERN;
        }
    }
View Full Code Here


     *
     * @return   The EntityFacadeEjbNamePattern value
     */
    protected static String getEntityFacadeEjbNamePattern()
    {
        EntityFacadeSubTask entityFacadeSubtask = ((EntityFacadeSubTask) DocletContext.getInstance().getSubTaskBy(DocletTask.getSubTaskName(EntityFacadeSubTask.class)));

        if (entityFacadeSubtask != null) {
            return entityFacadeSubtask.getEntityFacadeEjbNamePattern();
        }
        else {
            return EntityFacadeSubTask.DEFAULT_FACADE_EJB_NAME_PATTERN;
        }
    }
View Full Code Here

TOP

Related Classes of xdoclet.modules.ejb.entity.EntityFacadeSubTask

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.