package com.drawbridge.jsengine.jsobjects; public class JSValueProperty implements JSType { public final String mProperty; public final JSType mValue; public JSValueProperty(String property, JSType jsType){ mProperty = property; mValue = jsType; } }