Examples of DirectoryAppointment


Examples of clips.delegate.directory.simple.appointment.DirectoryAppointment

        getDetails().prof = prof.getID();
        fireContentStateEvent();
    }
   
    public DirectoryAppointmentItem getAppointment() throws ClipsException {
        DirectoryAppointment appointments = DirectoryLocator.getDirectory(DirectoryAppointment.class);
        try {
            return appointments.getItemFromID(getDetails().appoint);
        } catch (DirectoryItemReplacedException ex) {
            reload();
            return appointments.getItemFromID(getDetails().appoint);
        }
    }
View Full Code Here

Examples of clips.delegate.directory.simple.appointment.DirectoryAppointment

        directoryProf = DirectoryLocator.getDirectory(DirectoryProfession.class);
        directoryDanger = DirectoryLocator.getDirectory(DirectoryDanger.class);
        directoryAppointment = DirectoryLocator.getDirectory(DirectoryAppointment.class);

        //комбобокс должность
        DirectoryAppointment dirAppointment = DirectoryLocator.getDirectory(DirectoryAppointment.class);
        new DirectorySimpleFilteredComboBoxModel<JobLocal, DirectoryAppointmentItem> (cbAppointment, jobLocal, dirAppointment) {

            @Override
            public DirectoryAppointmentItem getSelectedDirectoryItem() throws ClipsException {
                return getObject().getAppointment();
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.