コード例 #1
0
        public PluginPrerequisiteViewModel(PluginPrerequisite pluginPrerequisite, bool uninstall, ICoreService coreService, IDialogService dialogService)
        {
            _uninstall     = uninstall;
            _coreService   = coreService;
            _dialogService = dialogService;

            PluginPrerequisite = pluginPrerequisite;
        }
コード例 #2
0
        /// <summary>
        ///     Removes the provided prerequisite from the feature of type <typeparamref name="T"/>.
        /// </summary>
        /// <param name="prerequisite">The prerequisite to remove</param>
        /// <returns>
        ///     <see langword="true" /> is successfully removed; otherwise <see langword="false" />. This method also returns
        ///     <see langword="false" /> if the prerequisite was not found.
        /// </returns>
        public bool RemoveFeaturePrerequisite <T>(PluginPrerequisite prerequisite) where T : PluginFeature
        {
            if (_plugin == null)
            {
                throw new ArtemisPluginException("Cannot add feature prerequisites before the plugin is loaded");
            }

            return(_plugin.GetFeatureInfo <T>().Prerequisites.Remove(prerequisite));
        }
コード例 #3
0
        /// <summary>
        ///     Removes the provided prerequisite from the plugin.
        /// </summary>
        /// <param name="prerequisite">The prerequisite to remove</param>
        /// <returns>
        ///     <see langword="true" /> is successfully removed; otherwise <see langword="false" />. This method also returns
        ///     <see langword="false" /> if the prerequisite was not found.
        /// </returns>
        public bool RemovePluginPrerequisite(PluginPrerequisite prerequisite)
        {
            if (_plugin == null)
            {
                throw new ArtemisPluginException("Cannot add plugin prerequisites before the plugin is loaded");
            }

            return(_plugin.Info.Prerequisites.Remove(prerequisite));
        }
コード例 #4
0
        /// <summary>
        ///     Adds the provided prerequisite to the plugin.
        /// </summary>
        /// <param name="prerequisite">The prerequisite to add</param>
        public void AddPluginPrerequisite(PluginPrerequisite prerequisite)
        {
            // TODO: We can keep track of them and add them after load, same goes for the others
            if (_plugin == null)
            {
                throw new ArtemisPluginException("Cannot add plugin prerequisites before the plugin is loaded");
            }

            if (!_plugin.Info.Prerequisites.Contains(prerequisite))
            {
                _plugin.Info.Prerequisites.Add(prerequisite);
            }
        }
コード例 #5
0
        /// <summary>
        ///     Adds the provided prerequisite to the feature of type <typeparamref name="T"/>.
        /// </summary>
        /// <param name="prerequisite">The prerequisite to add</param>
        public void AddFeaturePrerequisite <T>(PluginPrerequisite prerequisite) where T : PluginFeature
        {
            if (_plugin == null)
            {
                throw new ArtemisPluginException("Cannot add feature prerequisites before the plugin is loaded");
            }

            PluginFeatureInfo info = _plugin.GetFeatureInfo <T>();

            if (!info.Prerequisites.Contains(prerequisite))
            {
                info.Prerequisites.Add(prerequisite);
            }
        }