Examples of ExtraDataManager


Examples of cli_fmw.delegate.cache.ExtraDataManager

        this.initializedID = initializedID;
        if(initializedID == 0) {
            setDetails(getNewDetails());
        }
        boolean initNew = (initializedID == 0);
        edm = new ExtraDataManager(bean, this, initNew);
        ecm = new SecondaryCacheManager(initNew);
        addAuditListener(al);
    }
View Full Code Here

Examples of cli_fmw.delegate.cache.ExtraDataManager

    public DelegateLine2(DETAILSTYPE d, AuditListener al) {
        this.initializedID = d.getId();
         setDetails(d);
        boolean initNew = (initializedID == 0);
        edm = new ExtraDataManager(bean, this, initNew);
        ecm = new SecondaryCacheManager(initNew);
        addAuditListener(al);
    }
View Full Code Here

Examples of cli_fmw.delegate.cache.ExtraDataManager

     */
    public SheduleProrumbleLocal(DirectoryCollaboratorItem collaborator) throws ClipsException {
        super(SheduleProrumbleBean.class.getSimpleName());
        initBean();
        this.collaborator = collaborator;
        ecm = new ExtraDataManager(getBean(), this, false);
    }
View Full Code Here

Examples of cli_fmw.delegate.cache.ExtraDataManager

     * Создает новый делегат.
     * @throws cli_fmw.delegate.exception.ClipsException
     */
    private SheduleHolidayLocal() throws ClipsException {
        super(SheduleHolidayBean.class.getSimpleName());
        ecm = new ExtraDataManager(getBean(), this, false);
        daysList = new DayList(ecm);
    }
View Full Code Here

Examples of cli_fmw.delegate.cache.ExtraDataManager

     */
    public SheduleReceptionLocal(Day day, DirectoryCollaboratorItem collaborator)
            throws ClipsException {
        super(SheduleReceptionBean.class.getSimpleName());
        initBean();
        ecm = new ExtraDataManager(getBean(), this, false);
       
        Calendar cal = day.getCalendar();
        Date begin = cal.getTime();
        cal.add(Calendar.DAY_OF_MONTH, 1);
        Date end = cal.getTime();
View Full Code Here

Examples of cli_fmw.delegate.cache.ExtraDataManager

     * Creates a new instance of SheduleExceptionLocal
     */
    private SheduleExceptionLocal() throws ClipsException {
        super(SheduleExceptionBean.class.getSimpleName());
        initBean();
        ecm = new ExtraDataManager(getBean(), this, false);
    }
View Full Code Here

Examples of cli_fmw.delegate.cache.ExtraDataManager

     */
    public SheduleIndividualLocal(DirectoryCollaboratorItem coll) throws  ClipsException {
        super(SheduleIndividualBean.class.getSimpleName());
        collaborator = coll;
        initBean();
        ecm = new ExtraDataManager(getBean(), this, false);
       
        try {
            weekCount.set(bean().getCollaboratorWeekPeriod(coll.getID()));
        } catch (Exception ex) {
            clearBean();
View Full Code Here

Examples of cli_fmw.delegate.cache.ExtraDataManager

    private ExtraDataManager ecm;
   
    public ExpenditureLocal() throws ClipsException {
        super(ExpenditureBean.class.getSimpleName());
        initBean();
        ecm = new ExtraDataManager(getBean(), this, false);
    }
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.