summaryrefslogtreecommitdiffstats
path: root/src/org/uic/header/DataType.java
diff options
context:
space:
mode:
authorCGantert345 <57003061+CGantert345@users.noreply.github.com>2020-07-28 17:57:25 +0200
committerCGantert345 <57003061+CGantert345@users.noreply.github.com>2020-07-28 17:57:25 +0200
commitb17ce13cc31abd088088bf8ab26cc924a6a36585 (patch)
tree5588e1ccc212213097500f4cb43fa0e3e68e323b /src/org/uic/header/DataType.java
parentDraft of the new DOSIPAS included (diff)
downloadUIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.gz
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.bz2
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.lz
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.xz
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.zst
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.zip
Diffstat (limited to 'src/org/uic/header/DataType.java')
-rw-r--r--src/org/uic/header/DataType.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/org/uic/header/DataType.java b/src/org/uic/header/DataType.java
deleted file mode 100644
index d4e15f7..0000000
--- a/src/org/uic/header/DataType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-package org.uic.header;
-
-import net.gcdc.asn1.datatypes.Asn1Default;
-import net.gcdc.asn1.datatypes.Sequence;
-import net.gcdc.asn1.datatypesimpl.OctetString;
-
-/**
- * The Class DataType.
- */
-@Sequence
-public class DataType {
-
- /*
- * -- format:
- -- FCB1 FCB version 1
- -- RICS company code + addon
- */
-
- /** The data format.
- *
- * -- FCB1 FCB version 1
- * -- FCB2 FCB version 2
- * -- RICS company code + ...
- **/
- @Asn1Default("FCB1")
- public String format;
-
- /** The data. */
- public OctetString data;
-
- /**
- * Gets the data format.
- *
- * @return the data format
- */
- public String getFormat() {
- return format;
- }
-
- /**
- * Sets the data format.
- *
- * @param dataFormat the new data format
- */
- public void setFormat(String format) {
- this.format = format;
- }
-
- /**
- * Gets the data.
- *
- * @return the data
- */
- public OctetString getData() {
- return data;
- }
-
- /**
- * Sets the data.
- *
- * @param data the new data
- */
- public void setData(OctetString data) {
- this.data = data;
- }
-
-}