/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as; /** * Implementors of this interface can be configured by a map of options (or * parameters). */ public interface IAsConfigurable { /** * Passes the options given by the map to the configurable object. */ public void setOptions(java.util.Map<?,?> options); }