1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved. 2 * 3 * This program and the accompanying materials are made available under 4 * the terms of the Common Public License v1.0 which accompanies this distribution, 5 * and is available at http://www.eclipse.org/legal/cpl-v10.html 6 * 7 * $Id: AttributeElementFactory.java,v 1.1.1.1 2004/05/09 16:57:47 vlad_r Exp $ 8 */ 9 package com.vladium.jcd.cls.attribute; 10 11 // ---------------------------------------------------------------------------- 12 /** 13 * @author (C) 2001, Vlad Roubtsov 14 */ 15 public 16 abstract class AttributeElementFactory 17 { 18 // public: ................................................................ 19 newExceptionHandlerTable(final int capacity)20 public static IExceptionHandlerTable newExceptionHandlerTable (final int capacity) 21 { 22 return new ExceptionHandlerTable (capacity); 23 } 24 25 26 // protected: ............................................................. 27 28 // package: ............................................................... 29 30 // private: ............................................................... 31 32 AttributeElementFactory()33 private AttributeElementFactory () {} // prevent subclassing 34 35 } // end of class 36 // ---------------------------------------------------------------------------- 37