- Timestamp:
- 03/31/11 10:42:06 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IApplicationManager.cs
r5850 r5903 65 65 /// <param name="types">The types to discover.</param> 66 66 /// <param name="onlyInstantiable">Return only types that are instantiable (instance, abstract... are not returned)</param> 67 /// <param name="a llTypes">Specifies if discovered types must implement or inherit all given <paramref name="types"/>.</param>67 /// <param name="assignableToAllTypes">Specifies if discovered types must implement or inherit all given <paramref name="types"/>.</param> 68 68 /// <returns>An enumerable of discovered types.</returns> 69 IEnumerable<Type> GetTypes(IEnumerable<Type> types, bool onlyInstantiable = true, bool a llTypes = true);69 IEnumerable<Type> GetTypes(IEnumerable<Type> types, bool onlyInstantiable = true, bool assignableToAllTypes = true); 70 70 71 71 /// <summary> … … 84 84 /// <param name="plugin">The declaring plugin.</param> 85 85 /// <param name="onlyInstantiable">Return only types that are instantiable (instance, abstract... are not returned)</param> 86 /// /// <param name="a llTypes">Specifies if discovered types must implement or inherit all given <paramref name="types"/>.</param>86 /// /// <param name="assignableToAllTypes">Specifies if discovered types must implement or inherit all given <paramref name="types"/>.</param> 87 87 /// <returns>An enumerable of discovered types.</returns> 88 IEnumerable<Type> GetTypes(IEnumerable<Type> types, IPluginDescription plugin, bool onlyInstantiable = true, bool a llTypes = true);88 IEnumerable<Type> GetTypes(IEnumerable<Type> types, IPluginDescription plugin, bool onlyInstantiable = true, bool assignableToAllTypes = true); 89 89 90 90 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.