alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (JConstantValueAttribute.java)

This example Scala source code file (JConstantValueAttribute.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

constantvalue, datainputstream, io, ioexception, ioexception, jclass, jconstantpool, jconstantvalueattribute, jconstantvalueattribute, jfield, jfield, object, string, string, stringbuffer

The Scala JConstantValueAttribute.java source code

/* FJBG -- Fast Java Bytecode Generator
 * Copyright 2002-2011 LAMP/EPFL
 * @author  Michel Schinz
 */

package ch.epfl.lamp.fjbg;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;

/**
 * ConstantValue attribute representing the value of a constant field.
 *
 * There can be no more than one ConstantValue attribute in the attributes
 * table of a given field_info structure.. See section 4.8.2 of the JVM
 * specification.
 *
 * @author Stephane Micheloud
 * @version 1.0
 */

public class JConstantValueAttribute extends JAttribute {
    /** Constant pool of the current classfile. */
    private JConstantPool pool;

    protected int constantValueIndex;

    public JConstantValueAttribute(FJBGContext context,
                                  JClass clazz,
                                  JField field) {
        super(context, clazz);
        this.pool = clazz.pool;

        assert field.getOwner() == clazz;
    }

    public JConstantValueAttribute(FJBGContext context,
                                   JClass clazz,
                                   Object owner, // JField
                                   String name,
                                   int size,
                                   DataInputStream stream)
        throws IOException {
        super(context, clazz, name);
        this.pool = clazz.pool;

        this.constantValueIndex = stream.readShort();

        assert name.equals(getName());
    }

    public String getName() { return "ConstantValue"; }

    // Follows javap output format for ConstantValue attribute.
    /*@Override*/ public String toString() {
        StringBuffer buf = new StringBuffer("  Constant value: ");
        buf.append(pool.lookupEntry(constantValueIndex));
        return buf.toString();
    }

    protected int getSize() {
        return 2; // Short.SIZE
    }

    protected void writeContentsTo(DataOutputStream stream) throws IOException {
        stream.writeShort(constantValueIndex);
    }
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala JConstantValueAttribute.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.