/**
  * Serializa el bean en formato JSON
  *
  * @param json objeto donde se escribirá el bean en formato JSON
  * @throws es.tid.serial.json.JSONException Cuando se produce un error en la serialización del
  *     bean
  */
 public void toJSON(JSONObject json) throws JSONException {
   JSONObject jObject;
   json.put("propertyUri", this.getPropertyUri());
   json.put("value", this.getValue());
   JSONArray jArray;
   JSONArray jObjectArray;
 }
 /**
  * Serializa el bean en formato JSON
  *
  * @param json objeto donde se escribirá el bean en formato JSON
  * @throws es.tid.serial.json.JSONException Cuando se produce un error en la serialización del
  *     bean
  */
 public void toJSON(JSONObject json) throws JSONException {
   JSONObject jObject;
   JSONArray jArray;
   JSONArray jObjectArray;
   jObjectArray = new JSONArray();
   for (int i = 0; i < literalProperties_size(); i++) {
     JSONObject jObj_i = new JSONObject();
     this.getLiteralProperties(i).toJSON(jObj_i);
     jObjectArray.put(jObj_i);
   }
   json.put("literalProperties", jObjectArray);
   jObjectArray = new JSONArray();
   for (int i = 0; i < objectProperties_size(); i++) {
     JSONObject jObj_i = new JSONObject();
     this.getObjectProperties(i).toJSON(jObj_i);
     jObjectArray.put(jObj_i);
   }
   json.put("objectProperties", jObjectArray);
 }
 /**
  * Serializa el bean en formato JSON
  *
  * @param json objeto donde se escribirá el bean en formato JSON
  * @throws es.tid.serial.json.JSONException Cuando se produce un error en la serialización del
  *     bean
  */
 public void toJSON(JSONObject json) throws JSONException {
   JSONObject jObject;
   json.put("resourceUri", this.getResourceUri());
   JSONArray jArray;
   JSONArray jObjectArray;
 }
 /**
  * Serializa el bean en formato JSON
  *
  * @param json objeto donde se escribirá el bean en formato JSON
  * @throws es.tid.serial.json.JSONException Cuando se produce un error en la serialización del
  *     bean
  */
 public void toJSON(JSONObject json) throws JSONException {
   JSONObject jObject;
   json.put("contents", this.getContents());
   JSONArray jArray;
   JSONArray jObjectArray;
 }