32 lines
579 B
Java
32 lines
579 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* javax.baja.spy.Spy
|
|
* javax.baja.spy.SpyWriter
|
|
*/
|
|
package com.tridium.fox.sys.spy;
|
|
|
|
import javax.baja.spy.Spy;
|
|
import javax.baja.spy.SpyWriter;
|
|
|
|
public class FoxSpy
|
|
extends Spy {
|
|
String title;
|
|
String content;
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public void write(SpyWriter spyWriter) {
|
|
spyWriter.write(this.content);
|
|
}
|
|
|
|
public FoxSpy(String string, String string2) {
|
|
this.title = string;
|
|
this.content = string2;
|
|
}
|
|
}
|
|
|