20 lines
375 B
Java
20 lines
375 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.sys.transfer;
|
|
|
|
public abstract class TransferResult {
|
|
private String[] insertNames;
|
|
|
|
public String[] getInsertNames() {
|
|
return this.insertNames;
|
|
}
|
|
|
|
public abstract void undo() throws Exception;
|
|
|
|
public TransferResult(String[] stringArray) {
|
|
this.insertNames = stringArray;
|
|
}
|
|
}
|
|
|