Build a tool to mine the logs of a weather balloon for important information.
There is a weather balloon traversing the globe, periodically taking observations. At each observation, the balloon records the temperature
| import org.junit.Before; | |
| import org.junit.Test; | |
| import sun.misc.Unsafe; | |
| import sun.reflect.ReflectionFactory; | |
| import java.lang.reflect.Constructor; | |
| import java.lang.reflect.Field; | |
| import java.lang.reflect.Modifier; | |
| import static org.junit.Assert.assertEquals; |
| import java.io.*; | |
| public class PrevaylerJr { | |
| public static interface Command extends Serializable { | |
| Object executeOn(Object system); | |
| } | |