/*
 * @(#)GraphTagBaseTEI.java
 *
 * Copyright 2000-2002 by Oracle Corporation,
 * 500 Oracle Parkway, Redwood Shores, California, 94065, U.S.A.
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Oracle Corporation.
 */

package oracle.jbo.html.jsp.graph;

import javax.servlet.jsp.tagext.TagData;
import javax.servlet.jsp.tagext.TagExtraInfo;
import javax.servlet.jsp.tagext.VariableInfo;

public class GraphTagBaseTEI extends TagExtraInfo
{
   public GraphTagBaseTEI()
   {
   }

   /**
      * 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("graph", "oracle.dss.graph.Graph", 
				true, VariableInfo.NESTED)
      };
   }

}
