Examples of IASDocComment


Examples of org.apache.flex.compiler.asdoc.IASDocComment

        documentNode.setClassDefinition(fileDef);
        documentNode.initializeFromTag(builder, rootTag);
       
        if (asDoc != null)
        {
            IASDocComment asDocComment = builder.getWorkspace().getASDocDelegate().createASDocComment(asDoc, tagDefinition);
            documentNode.setASDocComment(asDocComment);
        }

        fileDef.setNode(documentNode);
        // TODO setNode() sets the nameStart and nameEnd to -1
View Full Code Here

Examples of org.apache.flex.compiler.asdoc.IASDocComment

        }
        //set the namespace
        if (namespace != null)
            decoratedNode.setNamespace(namespace);

        final IASDocComment asDocComment = asDocDelegate.afterDefinition(decoratedNode);
        if (asDocComment != null)
            decoratedNode.setASDocComment(asDocComment);

        currentAttributes = null;
    }
View Full Code Here

Examples of org.apache.flex.compiler.asdoc.IASDocComment

     *
     * @param node the metadata to bind the comment to
     */
    void applyComment(BaseDefinitionMetaTagNode node)
    {
        IASDocComment asDoc = asDocDelegate.afterDefinition(node);
        if (asDoc != null)
            node.setASDocComment(asDoc);
    }
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.