Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.90 KB | None | 0 0
  1. package iups_datatypesversion9;
  2.  
  3. import org.bn.*;
  4. import org.bn.annotations.*;
  5. import org.bn.annotations.constraints.*;
  6. import org.bn.coders.*;
  7. import org.bn.types.*;
  8.  
  9. @ASN1PreparedElement
  10. @ASN1BoxedType(name = "IuPSRecordType")
  11. public class IuPSRecordType implements IASN1PreparedElement {
  12.  
  13.     @ASN1Integer(name = "IuPSRecordType")
  14.     private Long value;
  15.  
  16.     public IuPSRecordType() {
  17.     }
  18.  
  19.     public IuPSRecordType(Long value) {
  20.         this.value = value;
  21.     }
  22.  
  23.     public void setValue(Long value) {
  24.         this.value = value;
  25.     }
  26.  
  27.     public Long getValue() {
  28.         return this.value;
  29.     }
  30.  
  31.     public void initWithDefaults() {
  32.     }
  33.  
  34.     private static IASN1PreparedElementData preparedData = CoderFactory.getInstance().newPreparedElementData(IuPSRecordType.class);
  35.  
  36.     public IASN1PreparedElementData getPreparedData() {
  37.         return preparedData;
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement