All pastes #2068380 Raw Edit

Something

public java v1 · immutable
#2068380 ·published 2011-05-24 13:39 UTC
rendered paste body
public class TempMonitor {    float currentTemp;    public void setTemp(float newTemp) {        currentTemp = newTemp;    }}public class MyTempMonitor extends TempMonitor {    public void setTemp(float newTemp, MyLoggerClass logger) {        logger.log(currentTemp, newTemp); // Do something external with the temps        setTemp(newTemp) // Call the original method to set the temp    }}