This commit is contained in:
lod 2025-06-28 12:44:20 +02:00
parent f38388896d
commit 2f62a1a123
67 changed files with 4545 additions and 0 deletions

View file

@ -0,0 +1,26 @@
package de.spacecontrol.sc.dllwrapper;
import java.io.Serializable;
public class ScDevInfo implements Cloneable, Serializable {
public int mId;
public String mSerialNo;
public String mDescrptn;
public ScDevInfo clone() {
try {
return (ScDevInfo)super.clone();
} catch (CloneNotSupportedException cloneNotSupportedException) {
cloneNotSupportedException.printStackTrace();
return null;
}
}
}
/* Location: /opt/SpaceControl/lib/SC_DLL_Wrapper.jar!/de/spacecontrol/sc/dllwrapper/ScDevInfo.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.2.1
*/