All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.bnd.classfile.SyntheticAttribute Maven / Gradle / Ivy

The newest version!
package aQute.bnd.classfile;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;

public class SyntheticAttribute implements Attribute {
	public static final String NAME = "Synthetic";

	public SyntheticAttribute() {}

	@Override
	public String name() {
		return NAME;
	}

	@Override
	public String toString() {
		return NAME;
	}

	public static SyntheticAttribute read(DataInput in, ConstantPool constant_pool) throws IOException {
		return new SyntheticAttribute();
	}

	@Override
	public void write(DataOutput out, ConstantPool constant_pool) throws IOException {
		int attribute_name_index = constant_pool.utf8Info(name());
		int attribute_length = attribute_length();
		out.writeShort(attribute_name_index);
		out.writeInt(attribute_length);
	}

	@Override
	public int attribute_length() {
		int attribute_length = 0;
		return attribute_length;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy