Package atg.nucleus.naming

Examples of atg.nucleus.naming.ComponentName


    public static void addComponent(Nucleus nucleus, String componentPath, Object component) {
        // make sure it's not already there
        if (nucleus.resolveName(componentPath) != null) {
            return;
        }
        ComponentName name = ComponentName.getComponentName(componentPath);
        ComponentName[] subNames = name.getSubNames();
        GenericContext[] contexts = new GenericContext[subNames.length - 1];
        contexts[0] = nucleus;
        for (int i = 1; i < subNames.length - 1; i++) {
            contexts[i] = new GenericContext();
            // Make sure it's not there
View Full Code Here

TOP

Related Classes of atg.nucleus.naming.ComponentName

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.