Changeset 11454
- Timestamp:
- 10/13/14 03:33:49 (10 years ago)
- Location:
- branches/OptimizationNetworks
- Files:
-
- 18 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/HeuristicLab.Optimization.Networks.Views-3.3.csproj
r11452 r11454 109 109 <DependentUpon>InputOutputPortView.cs</DependentUpon> 110 110 </Compile> 111 <Compile Include="ClientServicePortView.cs"> 112 <SubType>UserControl</SubType> 113 </Compile> 114 <Compile Include="ClientServicePortView.Designer.cs"> 115 <DependentUpon>ClientServicePortView.cs</DependentUpon> 116 </Compile> 117 <Compile Include="ClientPortView.cs"> 118 <SubType>UserControl</SubType> 119 </Compile> 120 <Compile Include="ClientPortView.Designer.cs"> 121 <DependentUpon>ClientPortView.cs</DependentUpon> 122 </Compile> 123 <Compile Include="ServiceParameterCollectionView.cs"> 124 <SubType>UserControl</SubType> 125 </Compile> 126 <Compile Include="ServiceParameterCollectionView.Designer.cs"> 127 <DependentUpon>ServiceParameterCollectionView.cs</DependentUpon> 128 </Compile> 111 129 <Compile Include="PortView.cs"> 112 130 <SubType>UserControl</SubType> … … 114 132 <Compile Include="PortView.Designer.cs"> 115 133 <DependentUpon>PortView.cs</DependentUpon> 134 </Compile> 135 <Compile Include="ServiceParameterView.cs"> 136 <SubType>UserControl</SubType> 137 </Compile> 138 <Compile Include="ServiceParameterView.Designer.cs"> 139 <DependentUpon>ServiceParameterView.cs</DependentUpon> 116 140 </Compile> 117 141 <Compile Include="VariablesNodeView.cs"> -
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/HeuristicLab.Optimization.Networks-3.3.csproj
r11452 r11454 85 85 <ItemGroup> 86 86 <Compile Include="IEntity.cs" /> 87 <Compile Include="IClientPort.cs" /> 88 <Compile Include="IClientServicePort.cs" /> 89 <Compile Include="ServiceParameterType.cs" /> 90 <Compile Include="IServiceParameter.cs" /> 91 <Compile Include="IServicePort.cs" /> 87 92 <Compile Include="IPort.cs" /> 88 93 <Compile Include="IVariablesNode.cs" /> 89 94 <Compile Include="Entity.cs" /> 95 <Compile Include="ServiceParameterCollection.cs" /> 96 <Compile Include="ServiceParameter.cs" /> 97 <Compile Include="ClientServicePort.cs" /> 98 <Compile Include="ClientPort.cs" /> 99 <Compile Include="ServicePort.cs" /> 90 100 <Compile Include="Port.cs" /> 91 101 <Compile Include="MultiplierNode.cs" /> -
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/IOutputInputPort.cs
r11421 r11454 25 25 namespace HeuristicLab.Optimization.Networks { 26 26 public interface IOutputInputPort : IValuePort { 27 object SendValue(objectvalue);27 IItem SendValue(IItem value); 28 28 } 29 29 -
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/IOutputPort.cs
r11421 r11454 24 24 namespace HeuristicLab.Optimization.Networks { 25 25 public interface IOutputPort : IValuePort { 26 new objectValue { get; set; }26 new IItem Value { get; set; } 27 27 } 28 28 -
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/IValuePort.cs
r11452 r11454 25 25 namespace HeuristicLab.Optimization.Networks { 26 26 public interface IValuePort : IPort { 27 objectValue { get; }27 IItem Value { get; } 28 28 29 29 event EventHandler ValueChanged; -
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/OutputInputPort.cs
r11421 r11454 47 47 return OnValueSent(value); 48 48 } 49 public object SendValue(objectvalue) {49 public IItem SendValue(IItem value) { 50 50 TOut val = value as TOut; 51 51 if ((value != null) && (val == null)) -
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/OutputPort.cs
r11421 r11454 38 38 set { base.Value = value; } 39 39 } 40 objectIOutputPort.Value {40 IItem IOutputPort.Value { 41 41 get { return Value; } 42 42 set { -
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/ValuePort.cs
r11421 r11454 40 40 } 41 41 } 42 objectIValuePort.Value {42 IItem IValuePort.Value { 43 43 get { return Value; } 44 44 }
Note: See TracChangeset
for help on using the changeset viewer.