A sample program was created using the Eclipse Runtime Plugin and a couple lines of code was added for opening a local shapefile:
LocalArcGISFeatureLayer localLayer = new LocalArcGISFeatureLayer("C:\\shapefile.shp", 0);
_map.addLayer(localLayer);
The following error was found:
-------------------------------------------------------------------------
Starting server
Exe dir: C:\workspace\NewProject
Failed to find local server in the following locations:
C:\workspace\NewProject\Runtime400
Environment: ArcGISRuntime400
Stopping server
Local server exited, code: 0
-------------------------------------------------------------------------
It appears that a server needs to be started. Need some instructions on that.