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

js.lang.PropertyDescriptorMap Maven / Gradle / Ivy

package js.lang;

import org.teavm.jso.JSIndexer;


/**
 * The interface Property descriptor map.
 */
public interface PropertyDescriptorMap extends Any {
	/**
	 * Get property descriptor.
	 *
	 * @param s the s
	 *
	 * @return the property descriptor
	 */
	@JSIndexer
    PropertyDescriptor get(String s);

	/**
	 * Set.
	 *
	 * @param s     the s
	 * @param value the value
	 */
	@JSIndexer
    void set(String s, PropertyDescriptor value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy