コード例 #1
0
    public override int countIdentifierReferences(string id)
    {
        int count = 0;

        count += actionsListDataControl.countIdentifierReferences(id);
        count += conditionsController.countIdentifierReferences(id);
        //1.4
        count += descriptionsController.countIdentifierReferences(id);
        return(count);
    }
コード例 #2
0
    public override int countIdentifierReferences(string id)
    {
        int count = 0;

        // Iterate through the resources
        foreach (ResourcesDataControl resourcesDataControl in resourcesDataControlList)
        {
            resourcesDataControl.countIdentifierReferences(id);
        }

        count += actionsListDataControl.countIdentifierReferences(id);
        //1.4
        count += descriptionController.countIdentifierReferences(id);
        return(count);
    }
コード例 #3
0
 public override int countIdentifierReferences(string id)
 {
     return(actionsListDataControl.countIdentifierReferences(id) + this.descriptionController.countIdentifierReferences(id));
 }