Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/sonoma/XSLParamVector.java


1   package com.sonoma;
2   import java.util.*;
3   /** XSLParamVector holds paramaters that match those
4           in an XSL style sheet.  It is 0 based
5           */
6   public class XSLParamVector extends Vector {
7   private int iCount = -1;
8           public XSLParamVector(){
9                   
10                  }
11          /** returns the index of the added parameter */
12          public int add(XSLParam Param) {
13                  iCount++;
14                  insertElementAt(Param, iCount);
15      return iCount;
16          } 
17  }