Package com.buschmais.cdo.api.bootstrap

Examples of com.buschmais.cdo.api.bootstrap.CdoUnitBuilder.description()


        String name = (String) properties.get(CdoUnitParameter.NAME.getKey());
        builder.name(name);

        // optional: description
        String description = (String) properties.get(CdoUnitParameter.DESCRIPTION.getKey());
        builder.description(description);

        // optional: listeners
        Collection<String> listenerNames = (Collection<String>) properties.get(CdoUnitParameter.INSTANCE_LISTENERS.getKey());
        if (listenerNames != null) {
            Collection<Class<?>> instanceListeners = ClassHelper.getTypes(listenerNames);
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.