Package org.openquark.cal.compiler.CALDocComment

Examples of org.openquark.cal.compiler.CALDocComment.ModuleReference


         * @param arg additional argument for the traversal.
         * @return null.
         */
        @Override
        public Void visitModuleLinkSegment(final ModuleLinkSegment segment, final VisitationArg arg) {
            final ModuleReference reference = segment.getReference();
           
            final String moduleNameInSource = reference.getModuleNameInSource();
            if (moduleNameInSource.length() == 0) {
                buffer.append(reference.getName());
            } else {
                buffer.append(moduleNameInSource);
            }
           
            return super.visitModuleLinkSegment(segment, arg);
View Full Code Here

TOP

Related Classes of org.openquark.cal.compiler.CALDocComment.ModuleReference

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.