/* * Created on Oct 17, 2005 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package org.apache.bcel.classfile; import java.io.DataInputStream; import java.io.IOException; import org.apache.bcel.Constants; /** * @author dorina * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class GlobalLinkAttribute extends LinkAttribute { /** * */ private static final long serialVersionUID = -4202915343214418868L; public GlobalLinkAttribute(int name_index, int length, byte[] links, ConstantPool cp) { super(Constants.ATTR_GLOBAL_LINK_MAP, name_index, length, links, cp); // TODO Auto-generated constructor stub } public GlobalLinkAttribute(int name_index, int length, DataInputStream str, ConstantPool cp) throws IOException { super(Constants.ATTR_GLOBAL_LINK_MAP, name_index, length, str, cp); } public final String toString() { return super.toString("GlobalLinkAttribute"); } }