summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/uic/barcode/asn1/test/GenAlphabet.java
blob: a08392e50ae7d18b8993c9d9ad06bd219d2664a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.uic.barcode.asn1.test;

import org.uic.barcode.asn1.datatypes.Alphabet;

public class GenAlphabet extends Alphabet {

	public GenAlphabet() {
		super("ACGT");
	}
	
}