Changeset 61 for trunk/sources/HeuristicLab.Core/Interfaces
- Timestamp:
- 03/13/08 23:20:02 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/Interfaces/IScope.cs
r2 r61 30 30 31 31 ICollection<IVariable> Variables { get; } 32 ICollection<string> Aliases { get; } 32 33 IList<IScope> SubScopes { get; } 33 34 … … 42 43 IItem GetVariableValue(string name, bool recursiveLookup, bool throwOnError); 43 44 45 string TranslateName(string name); 46 void AddAlias(string alias, string name); 47 void RemoveAlias(string alias); 48 44 49 void AddSubScope(IScope scope); 45 50 void RemoveSubScope(IScope scope); … … 52 57 event EventHandler<VariableEventArgs> VariableAdded; 53 58 event EventHandler<VariableEventArgs> VariableRemoved; 59 event EventHandler<AliasEventArgs> AliasAdded; 60 event EventHandler<AliasEventArgs> AliasRemoved; 54 61 event EventHandler<ScopeIndexEventArgs> SubScopeAdded; 55 62 event EventHandler<ScopeIndexEventArgs> SubScopeRemoved;
Note: See TracChangeset
for help on using the changeset viewer.