
sf.accelerator.asm.commons.AttributeDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
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