001 /* 002 Renaud Pawlak, pawlak@cnam.fr, CEDRIC Laboratory, Paris, France. 003 Lionel Seinturier, Lionel.Seinturier@lip6.fr, LIP6, Paris, France. 004 005 JAC-Core is free software. You can redistribute it and/or modify it 006 under the terms of the GNU Library General Public License as 007 published by the Free Software Foundation. 008 009 JAC-Core is distributed in the hope that it will be useful, but 010 WITHOUT ANY WARRANTY; without even the implied warranty of 011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 012 013 This work uses the Javassist system - Copyright (c) 1999-2000 014 Shigeru Chiba, University of Tsukuba, Japan. All Rights Reserved. */ 015 016 017 package org.objectweb.jac.core.utils; 018 019 import java.util.Vector; 020 021 public class JacVector extends Vector { 022 023 public JacVector() { super(); } 024 public JacVector( int initialCapacity ) { super(initialCapacity); } 025 026 public JacVector( int initialCapacity, int capacityIncrement ) { 027 super( initialCapacity, capacityIncrement ); 028 } 029 030 public JacVector( Object obj ) { super(); } 031 }