Package cli_fmw.delegate.directory.simple.surname

Examples of cli_fmw.delegate.directory.simple.surname.DirectorySurnameAbstract


        }
    }

    @SuppressWarnings({"unchecked", "unchecked"})
    public SURNAME getSurname() throws ClipsException {
        DirectorySurnameAbstract surnameList = DirectoryLocator.getDirectory(DirectorySurnameAbstract.class, false);
        try {
            return (SURNAME) surnameList.getItemFromID(getDetails().surnameId);
        } catch (DirectoryItemReplacedException ex) {
            reload();
            return (SURNAME) surnameList.getItemFromID(getDetails().surnameId);
        }
    }
View Full Code Here

TOP

Related Classes of cli_fmw.delegate.directory.simple.surname.DirectorySurnameAbstract

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.