blob: f7bec1d26ffda477d245c7adf3df8cd079ca503d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package serialize;
/**
* The Interface VSNotSerializable, this interface has no methods given and is
* being used to distinguish if the simulator should not serialize an object
* of the implementing class.
*
* @author Paul C. Buetow
*/
public interface VSNotSerializable {
}
|