Examples of DsfCastToTypeSupport


Examples of org.eclipse.cdt.dsf.debug.internal.ui.viewmodel.DsfCastToTypeSupport

        addChildNodes(variableNode, new IExpressionVMNode[] {variableNode});
       
        /* Wire up the casting support. IExpressions2 service is always available
     * for gdb. No need to call hookUpCastingSupport */
    ((VariableVMNode) variableNode).setCastToTypeSupport(
        new DsfCastToTypeSupport(getSession(), this, syncvarDataAccess));
   
        /*
         *  Tell the expression node which sub-nodes it will directly support.  It is very important
         *  that the variables node be the last in this chain.  The model assumes that there is some
         *  form of metalanguage expression syntax which each  of the nodes evaluates and decides if
View Full Code Here

Examples of org.eclipse.cdt.dsf.debug.internal.ui.viewmodel.DsfCastToTypeSupport

        GdbVariableVMNode subExpressioNode = createGdbVariableVMNode(varAccess);
        addChildNodes(rootNode, new IVMNode[] { subExpressioNode });

    /* Wire up the casting support. IExpressions2 service is always available
     * for gdb. No need to call hookUpCastingSupport */
    subExpressioNode.setCastToTypeSupport(new DsfCastToTypeSupport(getSession(), this, varAccess));
       
        // Configure the sub-expression node to be a child of itself.  This way the content
        // provider will recursively drill-down the variable hierarchy.
        addChildNodes(subExpressioNode, new IVMNode[] { subExpressioNode });
    }
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.