Something went wrong on our end
-
Peter Joseph De Jonckheere CESM2014 authored
Initial commit - some designs from pre-Christmas in addition to newly created java files. See logbook 9/1/18
Peter Joseph De Jonckheere CESM2014 authoredInitial commit - some designs from pre-Christmas in addition to newly created java files. See logbook 9/1/18
LockScreenActivity.java 484 B
package com.example.stimulusStrategy;
import com.example.stimulus.Stimulus;
import java.util.Observable;
import java.util.Observer;
/**
* Created by pharmacy on 09/01/2018.
*/
public class LockScreenActivity extends Observable implements StimulusStrategy {
public void monitor() {
//Monitor a thing
setChanged();
notifyObservers();
clearChanged();
}
public void addObserver(Stimulus s) {
addObserver((Observer) s);
}
}