It was specified in my Assignment that :
�Architecturally, the non-networked mode must use the database and GUI from the networked form, but must not use the network server code at all.�
In my implementation (I am using RMI), in the non-networked form, the client uses the Data class; the Data class has the same source for both server and standalone mode. In the standalone mode, the client does not get the Data object from the RMI registry, it gets it locally (from the same virtual machine), the locking system is implemented within the Data class, even if I run the application in the standalone mode it will still using the locking system (which does not change the results: the client gets the lock ownership of the source and releases the ownership, in other
word there is only one
thread using the locking system).
Does this fit with this assignment spec?
Best Regards