summaryrefslogtreecommitdiff
path: root/src/asm/scala/tools/asm/CustomAttr.java
blob: 22b5d287b7c95acbd4fd5b2b40245b36f80ea111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* NSC -- new Scala compiler
 * Copyright 2005-2013 LAMP/EPFL
 */

package scala.tools.asm;

import scala.tools.asm.Attribute;

/**
 * A subclass of ASM's Attribute for the sole purpose of accessing a protected field there.
 *
 */
public class CustomAttr extends Attribute {

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

}