Package atg.naming

Examples of atg.naming.NameContext


        // Fool this new repository into thinking that it has been
        // bound to the same name context as the original repository
        // This changes will make sure that getAbsoluteName() returns
        // a correct value.
        NameContext nc = this.getNameContext();
        NameContextBindingEvent bindingEvent = new NameContextBindingEvent(
                this.getName(), newRepository, this.getNameContext()
        );
        newRepository.nameContextElementBound(bindingEvent);
View Full Code Here


    NameContext nc = ((GenericService) pRepository).getNameContext();
    NameContextBindingEvent bindingEvent = new NameContextBindingEvent(pRepository
        .getName()+"-Shadow", newRepository, pRepository.getNameContext());
    newRepository.nameContextElementBound(bindingEvent);
    */
        NameContext nc = pRepository.getNameContext();
        nc.putElement(pRepository.getName() + "-Shadow", newRepository);

        if (pStart) {
            startRepository(pRepository, c, n, newRepository);
        }
        return newRepository;
View Full Code Here

TOP

Related Classes of atg.naming.NameContext

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.