// Near Infinity - An Infinity Engine Browser and Editor // Copyright (C) 2001 - 2005 Jon Olav Hauglid // See LICENSE.txt for license information package org.infinity.resource.vef; import java.nio.ByteBuffer; import org.infinity.resource.AbstractStruct; public final class SecondaryComponent extends AbstractComponent { // VEF/Component2-specific field labels public static final String VEF_COMP_SEC = "Secondary component"; SecondaryComponent() throws Exception { super(VEF_COMP_SEC); } SecondaryComponent(AbstractStruct superStruct, ByteBuffer buffer, int offset, int nr) throws Exception { super(superStruct, buffer, offset, VEF_COMP_SEC + " " + nr); } }