/**
|
* This class file was automatically generated by jASN1 v1.9.0 (http://www.openmuc.org)
|
*/
|
|
package org.openmuc.openiec61850.internal.mms.asn1;
|
|
import java.math.BigInteger;
|
|
import org.openmuc.jasn1.ber.types.BerInteger;
|
|
public class Integer32 extends BerInteger {
|
|
private static final long serialVersionUID = 1L;
|
|
public Integer32() {
|
}
|
|
public Integer32(byte[] code) {
|
super(code);
|
}
|
|
public Integer32(BigInteger value) {
|
super(value);
|
}
|
|
public Integer32(long value) {
|
super(value);
|
}
|
|
}
|