
// Copyright (c) 1999, 2000 Oracle Corporation
package oracle.jbo.html.jsp.datatags;

import javax.servlet.jsp.tagext.*;

/**
 * A Class class.
 * <P>
 * @author Juan Oropeza
 */
public class DynamicViewObjectTEI extends TagExtraInfo {

   /**
    * Constructor
    */
   public DynamicViewObjectTEI() {
   }
   /**
     * information on scripting variables defined by this tag
     *
     * @param data The translation-time TagData instance.
     */
  public VariableInfo[] getVariableInfo(TagData data)
  {
    return new VariableInfo[]
    {
      new VariableInfo(data.getAttributeString("id"), "oracle.jdeveloper.html.DataWebBeanImpl", true, VariableInfo.AT_BEGIN)
    };
  }
}

 