A minor change in classes
authoramiraj <amiraj.95@uci.edu>
Wed, 22 Jan 2020 19:57:28 +0000 (11:57 -0800)
committeramiraj <amiraj.95@uci.edu>
Wed, 22 Jan 2020 19:57:28 +0000 (11:57 -0800)
Location/LocationVar.groovy
StepSensor/StepSensor.groovy
StepSensor/StepSensors.groovy
SwitchLevel/SwitchLevel.groovy
SwitchLevel/SwitchLevels.groovy
Thermostat/Thermostat.groovy
Thermostat/Thermostats.groovy

index 9257012226d114f1efc8602371bf46f7b877eb4c..986cf78702dadf78052a295b3685b47acd1ce76f 100755 (executable)
@@ -2,6 +2,9 @@
 package Location
 import SmartThing.SmartThing
 
+//Importing mutable integer class
+import MutableInteger.MutableInteger
+
 public class LocationVar extends SmartThing {
        // Features with numberical values
        MutableInteger contactBookEnabled = new MutableInteger()
index 7dcdb83f8d283d345257101d1263280a75fcdf09..538fca576c92602e5ff63a660832a9f767049515 100644 (file)
@@ -2,6 +2,9 @@
 package StepSensor
 import SmartThing.SmartThing
 
+//Importing mutable integer class
+import MutableInteger.MutableInteger
+
 public class StepSensor extends SmartThing {
        // id, label, and display name of the device
        StringBuilder id = new StringBuilder()
index 3986a69bebbdd6b864e2cdeced2b3748c5992dec..bbe8fd89257ce2775a040eed8854b32e70a0b278 100644 (file)
@@ -2,6 +2,9 @@
 package StepSensor
 import SmartThing.SmartThings
 
+//Importing mutable integer class
+import MutableInteger.MutableInteger
+
 public class StepSensors extends SmartThings {
        List stepSensors = new ArrayList()
                
index 5d3d5c1de75e2d57c6abbb3e4ce3d628b653c42b..364a886059d58e6d4f6b42f863994fe1fea2843a 100644 (file)
@@ -2,6 +2,9 @@
 package SwitchLevel
 import SmartThing.SmartThing
 
+//Importing mutable integer class
+import MutableInteger.MutableInteger
+
 public class SwitchLevel extends SmartThing {
        // id, label, and display name of the device
        StringBuilder id = new StringBuilder()
index 8e06b66bb2be89592ca51aa3a93f66adae179034..c48e1cf4bd64a1ce261555cdef53a8a8b7738f55 100644 (file)
@@ -2,6 +2,9 @@
 package SwitchLevel
 import SmartThing.SmartThings
 
+//Importing mutable integer class
+import MutableInteger.MutableInteger
+
 public class SwitchLevels extends SmartThings {
        List switchLevels = new ArrayList()
 
index 40eea8d19b59bba0bdcf96ffadc8e32a1c4796f2..4fa2c789ada95e7a6a85c0cc68769ced2e599aed 100644 (file)
@@ -2,6 +2,9 @@
 package Thermostat
 import SmartThing.SmartThing
 
+//Importing mutable integer class
+import MutableInteger.MutableInteger
+
 class Thermostat extends SmartThing {
        // id, label, and display name of the device
        StringBuilder id = new StringBuilder()
index 7d7bc27099b86e542cea90e9a66edcdf0db77113..693ba939f6c2096bf165af1e4981ef042e1c41eb 100644 (file)
@@ -2,6 +2,9 @@
 package Thermostat
 import SmartThing.SmartThings
 
+//Importing mutable integer class
+import MutableInteger.MutableInteger
+
 class Thermostats extends SmartThings {
        List thermostats = new ArrayList()