001 package railo.runtime.ext.tag; 002 003 004 /** 005 * Interface for Dynmaic Attributes for tags (in j2ee at version 1.4.x) 006 */ 007 public interface DynamicAttributes { 008 009 /** 010 * @param uri the namespace of the attribute, or null if in the default namespace. 011 * @param localName the name of the attribute being set. 012 * @param value the value of the attribute 013 */ 014 public void setDynamicAttribute(String uri, String localName, Object value); 015 016 }