New functionalities (addition, Thermostat view, change the strategy and temp ...), improved views and README ✅
parent
579071960f
commit
0a70c6691d
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 209 KiB After Width: | Height: | Size: 162 KiB |
@ -0,0 +1,10 @@
|
||||
<component name="libraryTable">
|
||||
<library name="lib">
|
||||
<CLASSES>
|
||||
<root url="file://$PROJECT_DIR$/../../../../javafx-sdk-19.0.2.1/lib" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
<jarDirectory url="file://$PROJECT_DIR$/../../../../javafx-sdk-19.0.2.1/lib" recursive="false" />
|
||||
</library>
|
||||
</component>
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_18" default="true" project-jdk-name="18" project-jdk-type="JavaSDK">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_19" project-jdk-name="openjdk-19" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,15 @@
|
||||
package model;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
public class StrategyStub {
|
||||
|
||||
public Map<String, GenStrategy> strategies =new HashMap<String,GenStrategy>();
|
||||
|
||||
public StrategyStub(){
|
||||
strategies.put("Cpu",new GenCPU());
|
||||
strategies.put("Random",new GenBoundedRandom(-30,40));
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue