Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/16/10 14:49:34 (14 years ago)
Author:
cneumuel
Message:

Changes to PluginInfrastructure for Hive compatibility (#1191)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginInfrastructureEventArgs.cs

    r4068 r4414  
    2424namespace HeuristicLab.PluginInfrastructure.Manager {
    2525  [Serializable]
    26   internal sealed class PluginInfrastructureEventArgs : EventArgs {
    27     internal object Entity { get; private set; }
    28     internal PluginInfrastructureEventArgs(object entity) {
     26  public sealed class PluginInfrastructureEventArgs : EventArgs {
     27    public object Entity { get; private set; }
     28    public PluginInfrastructureEventArgs(object entity) {
    2929      this.Entity = entity;
    3030    }
    3131
    3232    private static PluginInfrastructureEventArgs emptyArgs = new PluginInfrastructureEventArgs(string.Empty);
    33     internal new static PluginInfrastructureEventArgs Empty {
     33    public new static PluginInfrastructureEventArgs Empty {
    3434      get { return emptyArgs; }
    3535    }
Note: See TracChangeset for help on using the changeset viewer.