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

sf.accelerator.asm.commons.AttributeDef Maven / Gradle / Ivy

The newest version!
package sf.accelerator.asm.commons;

import sf.spring.asm.Attribute;

public class AttributeDef extends Attribute {

    public AttributeDef(String type) {
        super(type);
    }

    public AttributeDef(final String type, byte[] value) {
        super(type);
        this.content = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy