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

import javax.servlet.jsp.tagext.*;

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

  /**
   * Constructor
   */
  public ViewObjectTEI() {
  }

  /**
     * 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)
    };
  }
}

 