All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.htmlunit.corejs.javascript.ExternalArrayData Maven / Gradle / Ivy

/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.htmlunit.corejs.javascript;

/**
 * Implement this interface in order to allow external data to be attached to a ScriptableObject.
 */
public interface ExternalArrayData {
    /**
     * Return the element at the specified index. The result must be a type that is valid in
     * JavaScript: Number, String, or Scriptable. This method will not be called unless "index" is
     * in range.
     */
    Object getArrayElement(int index);

    /**
     * Set the element at the specified index. This method will not be called unless "index" is in
     * range. The method must check that "value" is a valid type, and convert it if necessary.
     */
    void setArrayElement(int index, Object value);

    /** Return the length of the array. */
    int getArrayLength();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy