public String getter_value() {
    Log.d(TAG, "get value", Log.DEBUG_MODE);
    AttrProxy proxy = (AttrProxy) getProxy();
    Scriptable thisObj = this;
    java.lang.String javaResult = proxy.getValue();

    String rhinoResult = (String) javaResult;
    return rhinoResult;
  }
  // Methods
  public Object getValue(Context context, Scriptable thisObj, Object[] args) {
    Log.d(TAG, "getValue()", Log.DEBUG_MODE);

    try {
      AttrProxy proxy = (AttrProxy) ((Proxy) thisObj).getProxy();

      java.lang.String javaResult = proxy.getValue();

      String rhinoResult = (String) javaResult;

      return rhinoResult;

    } catch (Throwable throwable) {
      Context.throwAsScriptRuntimeEx(throwable);
      return Undefined.instance;
    }
  }