FileDocCategorySizeDatePackage
UninterpretedAttributeFactory.javaAPI DocJ2ME CLDC 1.1653Wed Feb 05 15:56:02 GMT 2003components

UninterpretedAttributeFactory.java

/*
 *    UninterpretedAttributeFactory.java    1.2    03/01/14
 *
 * Copyright © 2003 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package components;
import java.io.DataInput;
import java.io.IOException;

class UninterpretedAttributeFactory extends AttributeFactory {
    public static AttributeFactory instance = new UninterpretedAttributeFactory();

    Attribute finishReadAttribute(
    DataInput in, UnicodeConstant name, ConstantObject locals[], ConstantObject globals[] )
    throws IOException{
        return UninterpretedAttribute.finishReadAttribute( in, name );
    }
}