private void createVariable(VariableElement variableNode)
        {
            object name  = variableNode.getAttribute(AttributeConstants.NAME).getValue();
            object value = variableNode.getAttribute(AttributeConstants.VALUE).getValue();

            this._stateProvider.getVariables().Add(name, value);
        }