Fix bug with bad conversion of java strings to C strings for object names.  Update test app to test object defines.
diff --git a/rsObjectBase.h b/rsObjectBase.h
index 4c52e9c..b2c3338 100644
--- a/rsObjectBase.h
+++ b/rsObjectBase.h
@@ -37,6 +37,7 @@
         return mName;
     }
     void setName(const char *);
+    void setName(const char *, uint32_t len);
 
 private:
     char * mName;