Package org.apache.tapestry.ioc.annotations

Examples of org.apache.tapestry.ioc.annotations.Id


        return _moduleId;
    }

    private String extractModuleId()
    {
        Id id = getAnnotation(_builderClass, Id.class);

        if (id != null)
            return id.value();

        String className = _builderClass.getName();

        // Don't try to do this with classes in the default package. Then again, you should
        // never put classes in the default package!
View Full Code Here


        return _moduleId;
    }

    private String extractModuleId()
    {
        Id id = getAnnotation(_builderClass, Id.class);

        if (id != null)
            return id.value();

        String className = _builderClass.getName();

        // Don't try to do this with classes in the default package. Then again, you should
        // never put classes in the default package!
View Full Code Here

TOP

Related Classes of org.apache.tapestry.ioc.annotations.Id

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.