实例介绍
Android,IOS调用斑马打印机DEMO,含源码,可以通过ZPL或者封装好的方法直接调用
【实例截图】
【核心代码】
16359647251050553580.zip
└── Zebra Technologies
└── link_os_sdk
├── android
│ └── v2.11.2800
│ ├── demos
│ │ ├── eclipse
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── ant.properties
│ │ │ ├── gen
│ │ │ │ ├── com
│ │ │ │ │ └── zebra
│ │ │ │ │ └── android
│ │ │ │ │ └── devdemo
│ │ │ │ │ ├── BuildConfig.java
│ │ │ │ │ └── R.java
│ │ │ │ └── R.java.d
│ │ │ ├── libs
│ │ │ │ ├── commons-io-2.2.jar
│ │ │ │ ├── commons-lang3-3.4.jar
│ │ │ │ ├── commons-net-3.1.jar
│ │ │ │ ├── commons-validator-1.4.0.jar
│ │ │ │ ├── core-1.53.0.0.jar
│ │ │ │ ├── httpcore-4.3.1.jar
│ │ │ │ ├── httpmime-4.3.2.jar
│ │ │ │ ├── jackson-annotations-2.2.3.jar
│ │ │ │ ├── jackson-core-2.2.3.jar
│ │ │ │ ├── jackson-databind-2.2.3.jar
│ │ │ │ ├── opencsv-2.2.jar
│ │ │ │ ├── pkix-1.53.0.0.jar
│ │ │ │ ├── prov-1.53.0.0.jar
│ │ │ │ ├── snmp6_1.jar
│ │ │ │ └── ZSDK_ANDROID_API.jar
│ │ │ ├── proguard-project.txt
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── layout
│ │ │ │ │ ├── connection_builder.xml
│ │ │ │ │ ├── connection_screen_with_status.xml
│ │ │ │ │ ├── connection_screen.xml
│ │ │ │ │ ├── direct_broadcast_discovery_parameters.xml
│ │ │ │ │ ├── discovery_methods.xml
│ │ │ │ │ ├── discovery_results.xml
│ │ │ │ │ ├── formats_list_activity.xml
│ │ │ │ │ ├── image_print_demo.xml
│ │ │ │ │ ├── mag_card_demo.xml
│ │ │ │ │ ├── main.xml
│ │ │ │ │ ├── multicast_discovery_parameters.xml
│ │ │ │ │ ├── print_status_activity.xml
│ │ │ │ │ ├── sig_capture_demo.xml
│ │ │ │ │ ├── status_channel_activity.xml
│ │ │ │ │ ├── stored_format_demo.xml
│ │ │ │ │ ├── stored_format_variables.xml
│ │ │ │ │ └── subnet_search_discovery_parameters.xml
│ │ │ │ └── values
│ │ │ │ ├── array.xml
│ │ │ │ ├── dimens.xml
│ │ │ │ └── strings.xml
│ │ │ ├── src
│ │ │ │ └── com
│ │ │ │ └── zebra
│ │ │ │ └── android
│ │ │ │ └── devdemo
│ │ │ │ ├── connectionbuilder
│ │ │ │ │ └── ConnectionBuilderDemo.java
│ │ │ │ ├── ConnectionScreen.java
│ │ │ │ ├── connectivity
│ │ │ │ │ └── ConnectivityDemo.java
│ │ │ │ ├── discovery
│ │ │ │ │ ├── BluetoothDiscovery.java
│ │ │ │ │ ├── DirectedBroadcastParameters.java
│ │ │ │ │ ├── DirectedBroadcastResultList.java
│ │ │ │ │ ├── DiscoveryDemo.java
│ │ │ │ │ ├── DiscoveryResultList.java
│ │ │ │ │ ├── FindPrintersDiscoveryResultList.java
│ │ │ │ │ ├── LocalBroadcastDiscoveryResultList.java
│ │ │ │ │ ├── MulticastDiscoveryParameters.java
│ │ │ │ │ ├── MulticastDiscoveryResultList.java
│ │ │ │ │ ├── SubnetSearchParameters.java
│ │ │ │ │ └── SubnetSearchResultList.java
│ │ │ │ ├── imageprint
│ │ │ │ │ └── ImagePrintDemo.java
│ │ │ │ ├── listformats
│ │ │ │ │ ├── ListFormatsDemo.java
│ │ │ │ │ └── ListFormatsScreen.java
│ │ │ │ ├── LoadDevDemo.java
│ │ │ │ ├── magcard
│ │ │ │ │ └── MagCardDemo.java
│ │ │ │ ├── multichannel
│ │ │ │ │ ├── MultiChannelDemo.java
│ │ │ │ │ └── MultiChannelScreen.java
│ │ │ │ ├── receipt
│ │ │ │ │ └── ReceiptDemo.java
│ │ │ │ ├── sendfile
│ │ │ │ │ └── SendFileDemo.java
│ │ │ │ ├── sigcapture
│ │ │ │ │ ├── SigCaptureDemo.java
│ │ │ │ │ └── SignatureArea.java
│ │ │ │ ├── smartcard
│ │ │ │ │ └── SmartCardDemo.java
│ │ │ │ ├── status
│ │ │ │ │ ├── PrinterStatusScreen.java
│ │ │ │ │ └── PrintStatusDemo.java
│ │ │ │ ├── statuschannel
│ │ │ │ │ ├── StatusChannelDemo.java
│ │ │ │ │ └── StatusChannelScreen.java
│ │ │ │ ├── storedformat
│ │ │ │ │ ├── StoredFormatDemo.java
│ │ │ │ │ ├── StoredFormatScreen.java
│ │ │ │ │ └── VariablesScreen.java
│ │ │ │ └── util
│ │ │ │ ├── DemoSleeper.java
│ │ │ │ ├── SettingsHelper.java
│ │ │ │ └── UIHelper.java
│ │ │ └── ZSDK_DemosAndroid.zip
│ │ ├── release
│ │ │ └── DeveloperDemo_Android-debug.apk
│ │ └── src
│ │ └── com
│ │ └── zebra
│ │ └── android
│ │ └── devdemo
│ │ ├── connectionbuilder
│ │ │ └── ConnectionBuilderDemo.java
│ │ ├── ConnectionScreen.java
│ │ ├── connectivity
│ │ │ └── ConnectivityDemo.java
│ │ ├── discovery
│ │ │ ├── BluetoothDiscovery.java
│ │ │ ├── DirectedBroadcastParameters.java
│ │ │ ├── DirectedBroadcastResultList.java
│ │ │ ├── DiscoveryDemo.java
│ │ │ ├── DiscoveryResultList.java
│ │ │ ├── FindPrintersDiscoveryResultList.java
│ │ │ ├── LocalBroadcastDiscoveryResultList.java
│ │ │ ├── MulticastDiscoveryParameters.java
│ │ │ ├── MulticastDiscoveryResultList.java
│ │ │ ├── SubnetSearchParameters.java
│ │ │ └── SubnetSearchResultList.java
│ │ ├── imageprint
│ │ │ └── ImagePrintDemo.java
│ │ ├── listformats
│ │ │ ├── ListFormatsDemo.java
│ │ │ └── ListFormatsScreen.java
│ │ ├── LoadDevDemo.java
│ │ ├── magcard
│ │ │ └── MagCardDemo.java
│ │ ├── multichannel
│ │ │ ├── MultiChannelDemo.java
│ │ │ └── MultiChannelScreen.java
│ │ ├── receipt
│ │ │ └── ReceiptDemo.java
│ │ ├── sendfile
│ │ │ └── SendFileDemo.java
│ │ ├── sigcapture
│ │ │ ├── SigCaptureDemo.java
│ │ │ └── SignatureArea.java
│ │ ├── smartcard
│ │ │ └── SmartCardDemo.java
│ │ ├── status
│ │ │ ├── PrinterStatusScreen.java
│ │ │ └── PrintStatusDemo.java
│ │ ├── statuschannel
│ │ │ ├── StatusChannelDemo.java
│ │ │ └── StatusChannelScreen.java
│ │ ├── storedformat
│ │ │ ├── StoredFormatDemo.java
│ │ │ ├── StoredFormatScreen.java
│ │ │ └── VariablesScreen.java
│ │ └── util
│ │ ├── DemoSleeper.java
│ │ ├── SettingsHelper.java
│ │ └── UIHelper.java
│ ├── documentation
│ │ ├── add_library.html
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com
│ │ │ └── zebra
│ │ │ └── sdk
│ │ │ ├── certificate
│ │ │ │ ├── CertificateParser.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── CertificateParser.html
│ │ │ │ │ ├── ZebraCertificateException.html
│ │ │ │ │ ├── ZebraCertificateInfo.html
│ │ │ │ │ └── ZebraP12Info.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ZebraCertificateException.html
│ │ │ │ ├── ZebraCertificateInfo.html
│ │ │ │ └── ZebraP12Info.html
│ │ │ ├── comm
│ │ │ │ ├── BluetoothConnection.html
│ │ │ │ ├── BluetoothConnectionInsecure.html
│ │ │ │ ├── BluetoothStatusConnection.html
│ │ │ │ ├── BluetoothStatusConnectionInsecure.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── BluetoothConnection.html
│ │ │ │ │ ├── BluetoothConnectionInsecure.html
│ │ │ │ │ ├── BluetoothStatusConnection.html
│ │ │ │ │ ├── BluetoothStatusConnectionInsecure.html
│ │ │ │ │ ├── ConnectionA.html
│ │ │ │ │ ├── ConnectionBuilder.html
│ │ │ │ │ ├── ConnectionChannel.html
│ │ │ │ │ ├── ConnectionException.html
│ │ │ │ │ ├── Connection.html
│ │ │ │ │ ├── ConnectionReestablisher.html
│ │ │ │ │ ├── ConnectionStatusA.html
│ │ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ │ ├── IpAddressable.html
│ │ │ │ │ ├── LogStreamException.html
│ │ │ │ │ ├── MultichannelBluetoothConnection.html
│ │ │ │ │ ├── MultichannelConnection.html
│ │ │ │ │ ├── MultichannelTcpConnection.html
│ │ │ │ │ ├── ResponseValidator.html
│ │ │ │ │ ├── StatusConnection.html
│ │ │ │ │ ├── StatusConnectionWithWriteLogging.html
│ │ │ │ │ ├── TcpConnection.html
│ │ │ │ │ ├── TcpStatusConnection.html
│ │ │ │ │ ├── UsbConnection.html
│ │ │ │ │ ├── UsbNativeCodeConnectionException.html
│ │ │ │ │ └── UsbPermissionRequestor.html
│ │ │ │ ├── ConnectionA.html
│ │ │ │ ├── ConnectionBuilder.html
│ │ │ │ ├── ConnectionChannel.html
│ │ │ │ ├── ConnectionException.html
│ │ │ │ ├── Connection.html
│ │ │ │ ├── ConnectionReestablisher.html
│ │ │ │ ├── ConnectionStatusA.html
│ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ ├── IpAddressable.html
│ │ │ │ ├── LogStreamException.html
│ │ │ │ ├── MultichannelBluetoothConnection.html
│ │ │ │ ├── MultichannelConnection.html
│ │ │ │ ├── MultichannelTcpConnection.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ResponseValidator.html
│ │ │ │ ├── StatusConnection.html
│ │ │ │ ├── StatusConnectionWithWriteLogging.html
│ │ │ │ ├── TcpConnection.html
│ │ │ │ ├── TcpStatusConnection.html
│ │ │ │ ├── UsbConnection.html
│ │ │ │ ├── UsbNativeCodeConnectionException.html
│ │ │ │ └── UsbPermissionRequestor.html
│ │ │ ├── device
│ │ │ │ ├── class-use
│ │ │ │ │ ├── Device.html
│ │ │ │ │ ├── FileUtil.html
│ │ │ │ │ ├── FileUtilLinkOs.html
│ │ │ │ │ ├── MagCardReaderFactory.html
│ │ │ │ │ ├── MagCardReader.html
│ │ │ │ │ ├── Profile.html
│ │ │ │ │ ├── ProfileToMirrorServer.html
│ │ │ │ │ ├── ProgressMonitor.html
│ │ │ │ │ ├── SmartcardReaderFactory.html
│ │ │ │ │ ├── SmartcardReader.html
│ │ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ │ ├── Device.html
│ │ │ │ ├── FileUtil.html
│ │ │ │ ├── FileUtilLinkOs.html
│ │ │ │ ├── MagCardReaderFactory.html
│ │ │ │ ├── MagCardReader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Profile.html
│ │ │ │ ├── ProfileToMirrorServer.html
│ │ │ │ ├── ProgressMonitor.html
│ │ │ │ ├── SmartcardReaderFactory.html
│ │ │ │ ├── SmartcardReader.html
│ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ ├── graphics
│ │ │ │ ├── class-use
│ │ │ │ │ ├── ZebraImageFactory.html
│ │ │ │ │ └── ZebraImageI.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ZebraImageFactory.html
│ │ │ │ └── ZebraImageI.html
│ │ │ ├── printer
│ │ │ │ ├── AlertProvider.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AlertProvider.html
│ │ │ │ │ ├── CsvPrinter.html
│ │ │ │ │ ├── DriveType.html
│ │ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ │ ├── FileDeletionOption.html
│ │ │ │ │ ├── FirmwareUpdateHandlerBase.html
│ │ │ │ │ ├── FirmwareUpdateHandler.html
│ │ │ │ │ ├── FirmwareUpdaterLinkOs.html
│ │ │ │ │ ├── FontConverterZpl.html
│ │ │ │ │ ├── FontUtil.html
│ │ │ │ │ ├── FormatUtil.html
│ │ │ │ │ ├── FormatUtilLinkOs.html
│ │ │ │ │ ├── GraphicsUtil.html
│ │ │ │ │ ├── LinkOsInformation.html
│ │ │ │ │ ├── NotALinkOsPrinterException.html
│ │ │ │ │ ├── PrinterAlert.html
│ │ │ │ │ ├── PrinterLanguage.html
│ │ │ │ │ ├── PrinterObjectProperties.html
│ │ │ │ │ ├── PrinterReconnectionHandler.html
│ │ │ │ │ ├── PrinterStatus.html
│ │ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ │ ├── PrinterUtil.html
│ │ │ │ │ ├── ProfileUtil.html
│ │ │ │ │ ├── SettingsSetter.html
│ │ │ │ │ ├── SGD.html
│ │ │ │ │ ├── SnmpException.html
│ │ │ │ │ ├── SnmpPrinter.html
│ │ │ │ │ ├── StorageInfo.html
│ │ │ │ │ ├── TcpPortStatus.html
│ │ │ │ │ ├── ToolsUtil.html
│ │ │ │ │ ├── ToolsUtilLinkOs.html
│ │ │ │ │ ├── XmlPrinter.html
│ │ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ │ ├── ZebraPrinter.html
│ │ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ │ ├── ZebraPrinterLinkOs.html
│ │ │ │ │ └── ZplPrintMode.html
│ │ │ │ ├── CsvPrinter.html
│ │ │ │ ├── discovery
│ │ │ │ │ ├── BluetoothDiscoverer.html
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── BluetoothDiscoverer.html
│ │ │ │ │ │ ├── DeviceFilter.html
│ │ │ │ │ │ ├── DiscoveredPrinterBluetooth.html
│ │ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ │ ├── DiscoveredPrinterUsb.html
│ │ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ │ ├── DiscoveryHandlerLinkOsOnly.html
│ │ │ │ │ │ ├── DiscoveryPacketDecodeException.html
│ │ │ │ │ │ ├── DiscoveryUtil.html
│ │ │ │ │ │ ├── NetworkDiscoverer.html
│ │ │ │ │ │ ├── ServiceDiscoveryHandler.html
│ │ │ │ │ │ ├── UrlPrinterDiscoverer.html
│ │ │ │ │ │ └── UsbDiscoverer.html
│ │ │ │ │ ├── DeviceFilter.html
│ │ │ │ │ ├── DiscoveredPrinterBluetooth.html
│ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ ├── DiscoveredPrinterUsb.html
│ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ ├── DiscoveryHandlerLinkOsOnly.html
│ │ │ │ │ ├── DiscoveryPacketDecodeException.html
│ │ │ │ │ ├── DiscoveryUtil.html
│ │ │ │ │ ├── NetworkDiscoverer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ ├── ServiceDiscoveryHandler.html
│ │ │ │ │ ├── UrlPrinterDiscoverer.html
│ │ │ │ │ └── UsbDiscoverer.html
│ │ │ │ ├── DriveType.html
│ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ ├── FileDeletionOption.html
│ │ │ │ ├── FirmwareUpdateHandlerBase.html
│ │ │ │ ├── FirmwareUpdateHandler.html
│ │ │ │ ├── FirmwareUpdaterLinkOs.html
│ │ │ │ ├── FontConverterZpl.html
│ │ │ │ ├── FontUtil.html
│ │ │ │ ├── FormatUtil.html
│ │ │ │ ├── FormatUtilLinkOs.html
│ │ │ │ ├── GraphicsUtil.html
│ │ │ │ ├── LinkOsInformation.html
│ │ │ │ ├── NotALinkOsPrinterException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── PrinterAlert.html
│ │ │ │ ├── PrinterLanguage.html
│ │ │ │ ├── PrinterObjectProperties.html
│ │ │ │ ├── PrinterReconnectionHandler.html
│ │ │ │ ├── PrinterStatus.html
│ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ ├── PrinterUtil.html
│ │ │ │ ├── ProfileUtil.html
│ │ │ │ ├── SettingsSetter.html
│ │ │ │ ├── SGD.html
│ │ │ │ ├── SnmpException.html
│ │ │ │ ├── SnmpPrinter.html
│ │ │ │ ├── StorageInfo.html
│ │ │ │ ├── TcpPortStatus.html
│ │ │ │ ├── ToolsUtil.html
│ │ │ │ ├── ToolsUtilLinkOs.html
│ │ │ │ ├── XmlPrinter.html
│ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ ├── ZebraPrinter.html
│ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ ├── ZebraPrinterLinkOs.html
│ │ │ │ └── ZplPrintMode.html
│ │ │ ├── settings
│ │ │ │ ├── AlertCondition.html
│ │ │ │ ├── AlertDestination.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AlertCondition.html
│ │ │ │ │ ├── AlertDestination.html
│ │ │ │ │ ├── Setting.html
│ │ │ │ │ ├── SettingsException.html
│ │ │ │ │ ├── SettingsProvider.html
│ │ │ │ │ ├── SettingsRanges.html
│ │ │ │ │ └── SettingsValues.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Setting.html
│ │ │ │ ├── SettingsException.html
│ │ │ │ ├── SettingsProvider.html
│ │ │ │ ├── SettingsRanges.html
│ │ │ │ └── SettingsValues.html
│ │ │ └── weblink
│ │ │ ├── class-use
│ │ │ │ ├── ConfigurationStatus.html
│ │ │ │ ├── WeblinkAddressStrategy.html
│ │ │ │ ├── WeblinkConfigurationState.html
│ │ │ │ ├── WeblinkConfigurationStateUpdater.html
│ │ │ │ ├── WeblinkConfigurator.html
│ │ │ │ └── ZebraWeblinkException.html
│ │ │ ├── ConfigurationStatus.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── WeblinkAddressStrategy.html
│ │ │ ├── WeblinkConfigurationState.html
│ │ │ ├── WeblinkConfigurationStateUpdater.html
│ │ │ ├── WeblinkConfigurator.html
│ │ │ └── ZebraWeblinkException.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── import_demos.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── migrate_SDK.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── readme.html
│ │ ├── resources
│ │ │ ├── background.gif
│ │ │ ├── tab.gif
│ │ │ ├── titlebar_end.gif
│ │ │ └── titlebar.gif
│ │ ├── serialized-form.html
│ │ ├── style.css
│ │ ├── zebra.png
│ │ └── Zebra_SDK_EULA.pdf
│ ├── lib
│ │ ├── commons-io-2.2.jar
│ │ ├── commons-lang3-3.4.jar
│ │ ├── commons-net-3.1.jar
│ │ ├── commons-validator-1.4.0.jar
│ │ ├── core-1.53.0.0.jar
│ │ ├── httpcore-4.3.1.jar
│ │ ├── httpmime-4.3.2.jar
│ │ ├── jackson-annotations-2.2.3.jar
│ │ ├── jackson-core-2.2.3.jar
│ │ ├── jackson-databind-2.2.3.jar
│ │ ├── opencsv-2.2.jar
│ │ ├── pkix-1.53.0.0.jar
│ │ ├── prov-1.53.0.0.jar
│ │ ├── snmp6_1.jar
│ │ └── ZSDK_ANDROID_API.jar
│ ├── PrintConnect
│ │ └── PrintConnect.apk
│ ├── print_station
│ │ ├── eclipse
│ │ │ └── Android_PrintStation.zip
│ │ ├── release
│ │ │ └── PrintStation-debug.apk
│ │ └── src
│ │ └── com
│ │ └── zebra
│ │ └── kdu
│ │ ├── ChooseFormatScreen.java
│ │ ├── chooseprinter
│ │ │ └── DiscoveredPrinterListAdapter.java
│ │ ├── SplashScreen.java
│ │ ├── util
│ │ │ ├── ApplicationPreferences.java
│ │ │ ├── FileLoader.java
│ │ │ ├── FinishInfo.java
│ │ │ ├── FormatRefresher.java
│ │ │ ├── SavedFormat.java
│ │ │ ├── SavedFormatProvider.java
│ │ │ ├── SelectedPrinterManager.java
│ │ │ ├── UIHelper.java
│ │ │ └── UsbHelper.java
│ │ └── VariablesScreen.java
│ ├── sdk_welcome.html
│ ├── TestConnect
│ │ ├── TestConnect.apk
│ │ └── TestConnect-source.zip
│ └── zebra_utilities
│ └── release
│ └── ZebraUtilities.apk
├── android_btle
│ └── v2.11.2800
│ ├── demos
│ │ ├── eclipse
│ │ │ └── ZSDK_DemosAndroid_BTLE.zip
│ │ └── src
│ │ └── com
│ │ └── zebra
│ │ └── android
│ │ └── devdemo
│ │ ├── ConnectionScreen.java
│ │ ├── connectivity
│ │ │ └── ConnectivityDemo.java
│ │ ├── discovery
│ │ │ ├── BluetoothLeDiscovery.java
│ │ │ └── DiscoveryResultList.java
│ │ ├── imageprint
│ │ │ └── ImagePrintDemo.java
│ │ ├── listformats
│ │ │ ├── ListFormatsDemo.java
│ │ │ └── ListFormatsScreen.java
│ │ ├── LoadDevDemo.java
│ │ ├── multichannel
│ │ │ ├── MultiChannelDemo.java
│ │ │ └── MultiChannelScreen.java
│ │ ├── receipt
│ │ │ └── ReceiptDemo.java
│ │ ├── sendfile
│ │ │ └── SendFileDemo.java
│ │ ├── status
│ │ │ ├── PrinterStatusScreen.java
│ │ │ └── PrintStatusDemo.java
│ │ ├── statuschannel
│ │ │ ├── StatusChannelDemo.java
│ │ │ └── StatusChannelScreen.java
│ │ ├── storedformat
│ │ │ ├── StoredFormatDemo.java
│ │ │ ├── StoredFormatScreen.java
│ │ │ └── VariablesScreen.java
│ │ └── util
│ │ ├── DemoSleeper.java
│ │ ├── SettingsHelper.java
│ │ └── UIHelper.java
│ ├── documentation
│ │ ├── add_library.html
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com
│ │ │ └── zebra
│ │ │ └── sdk
│ │ │ ├── btleComm
│ │ │ │ ├── BluetoothLeConnection.html
│ │ │ │ ├── BluetoothLeDiscoverer.html
│ │ │ │ ├── BluetoothLeStatusConnection.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── BluetoothLeConnection.html
│ │ │ │ │ ├── BluetoothLeDiscoverer.html
│ │ │ │ │ ├── BluetoothLeStatusConnection.html
│ │ │ │ │ ├── DiscoveredPrinterBluetoothLe.html
│ │ │ │ │ └── MultichannelBluetoothLeConnection.html
│ │ │ │ ├── DiscoveredPrinterBluetoothLe.html
│ │ │ │ ├── MultichannelBluetoothLeConnection.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── certificate
│ │ │ │ ├── CertificateParser.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── CertificateParser.html
│ │ │ │ │ ├── ZebraCertificateException.html
│ │ │ │ │ ├── ZebraCertificateInfo.html
│ │ │ │ │ └── ZebraP12Info.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ZebraCertificateException.html
│ │ │ │ ├── ZebraCertificateInfo.html
│ │ │ │ └── ZebraP12Info.html
│ │ │ ├── comm
│ │ │ │ ├── class-use
│ │ │ │ │ ├── ConnectionA.html
│ │ │ │ │ ├── ConnectionException.html
│ │ │ │ │ ├── Connection.html
│ │ │ │ │ ├── ConnectionReestablisher.html
│ │ │ │ │ ├── ConnectionStatusA.html
│ │ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ │ ├── IpAddressable.html
│ │ │ │ │ ├── LogStreamException.html
│ │ │ │ │ ├── MultichannelConnection.html
│ │ │ │ │ ├── MultichannelTcpConnection.html
│ │ │ │ │ ├── ResponseValidator.html
│ │ │ │ │ ├── StatusConnection.html
│ │ │ │ │ ├── StatusConnectionWithWriteLogging.html
│ │ │ │ │ ├── TcpConnection.html
│ │ │ │ │ ├── TcpStatusConnection.html
│ │ │ │ │ └── UsbNativeCodeConnectionException.html
│ │ │ │ ├── ConnectionA.html
│ │ │ │ ├── ConnectionException.html
│ │ │ │ ├── Connection.html
│ │ │ │ ├── ConnectionReestablisher.html
│ │ │ │ ├── ConnectionStatusA.html
│ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ ├── IpAddressable.html
│ │ │ │ ├── LogStreamException.html
│ │ │ │ ├── MultichannelConnection.html
│ │ │ │ ├── MultichannelTcpConnection.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ResponseValidator.html
│ │ │ │ ├── StatusConnection.html
│ │ │ │ ├── StatusConnectionWithWriteLogging.html
│ │ │ │ ├── TcpConnection.html
│ │ │ │ ├── TcpStatusConnection.html
│ │ │ │ └── UsbNativeCodeConnectionException.html
│ │ │ ├── device
│ │ │ │ ├── class-use
│ │ │ │ │ ├── Device.html
│ │ │ │ │ ├── FileUtil.html
│ │ │ │ │ ├── FileUtilLinkOs.html
│ │ │ │ │ ├── MagCardReaderFactory.html
│ │ │ │ │ ├── MagCardReader.html
│ │ │ │ │ ├── Profile.html
│ │ │ │ │ ├── ProfileToMirrorServer.html
│ │ │ │ │ ├── ProgressMonitor.html
│ │ │ │ │ ├── SmartcardReaderFactory.html
│ │ │ │ │ ├── SmartcardReader.html
│ │ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ │ ├── Device.html
│ │ │ │ ├── FileUtil.html
│ │ │ │ ├── FileUtilLinkOs.html
│ │ │ │ ├── MagCardReaderFactory.html
│ │ │ │ ├── MagCardReader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Profile.html
│ │ │ │ ├── ProfileToMirrorServer.html
│ │ │ │ ├── ProgressMonitor.html
│ │ │ │ ├── SmartcardReaderFactory.html
│ │ │ │ ├── SmartcardReader.html
│ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ ├── graphics
│ │ │ │ ├── class-use
│ │ │ │ │ └── ZebraImageI.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── ZebraImageI.html
│ │ │ ├── printer
│ │ │ │ ├── AlertProvider.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AlertProvider.html
│ │ │ │ │ ├── CsvPrinter.html
│ │ │ │ │ ├── DriveType.html
│ │ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ │ ├── FileDeletionOption.html
│ │ │ │ │ ├── FirmwareUpdateHandlerBase.html
│ │ │ │ │ ├── FirmwareUpdateHandler.html
│ │ │ │ │ ├── FirmwareUpdaterLinkOs.html
│ │ │ │ │ ├── FontConverterZpl.html
│ │ │ │ │ ├── FontUtil.html
│ │ │ │ │ ├── FormatUtil.html
│ │ │ │ │ ├── FormatUtilLinkOs.html
│ │ │ │ │ ├── GraphicsUtil.html
│ │ │ │ │ ├── LinkOsInformation.html
│ │ │ │ │ ├── NotALinkOsPrinterException.html
│ │ │ │ │ ├── PrinterAlert.html
│ │ │ │ │ ├── PrinterLanguage.html
│ │ │ │ │ ├── PrinterObjectProperties.html
│ │ │ │ │ ├── PrinterReconnectionHandler.html
│ │ │ │ │ ├── PrinterStatus.html
│ │ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ │ ├── PrinterUtil.html
│ │ │ │ │ ├── ProfileUtil.html
│ │ │ │ │ ├── SettingsSetter.html
│ │ │ │ │ ├── SGD.html
│ │ │ │ │ ├── SnmpException.html
│ │ │ │ │ ├── SnmpPrinter.html
│ │ │ │ │ ├── StorageInfo.html
│ │ │ │ │ ├── TcpPortStatus.html
│ │ │ │ │ ├── ToolsUtil.html
│ │ │ │ │ ├── ToolsUtilLinkOs.html
│ │ │ │ │ ├── XmlPrinter.html
│ │ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ │ ├── ZebraPrinter.html
│ │ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ │ ├── ZebraPrinterLinkOs.html
│ │ │ │ │ └── ZplPrintMode.html
│ │ │ │ ├── CsvPrinter.html
│ │ │ │ ├── discovery
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ │ ├── DiscoveryHandlerLinkOsOnly.html
│ │ │ │ │ │ ├── DiscoveryPacketDecodeException.html
│ │ │ │ │ │ ├── DiscoveryUtil.html
│ │ │ │ │ │ └── NetworkDiscoverer.html
│ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ ├── DiscoveryHandlerLinkOsOnly.html
│ │ │ │ │ ├── DiscoveryPacketDecodeException.html
│ │ │ │ │ ├── DiscoveryUtil.html
│ │ │ │ │ ├── NetworkDiscoverer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── DriveType.html
│ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ ├── FileDeletionOption.html
│ │ │ │ ├── FirmwareUpdateHandlerBase.html
│ │ │ │ ├── FirmwareUpdateHandler.html
│ │ │ │ ├── FirmwareUpdaterLinkOs.html
│ │ │ │ ├── FontConverterZpl.html
│ │ │ │ ├── FontUtil.html
│ │ │ │ ├── FormatUtil.html
│ │ │ │ ├── FormatUtilLinkOs.html
│ │ │ │ ├── GraphicsUtil.html
│ │ │ │ ├── LinkOsInformation.html
│ │ │ │ ├── NotALinkOsPrinterException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── PrinterAlert.html
│ │ │ │ ├── PrinterLanguage.html
│ │ │ │ ├── PrinterObjectProperties.html
│ │ │ │ ├── PrinterReconnectionHandler.html
│ │ │ │ ├── PrinterStatus.html
│ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ ├── PrinterUtil.html
│ │ │ │ ├── ProfileUtil.html
│ │ │ │ ├── SettingsSetter.html
│ │ │ │ ├── SGD.html
│ │ │ │ ├── SnmpException.html
│ │ │ │ ├── SnmpPrinter.html
│ │ │ │ ├── StorageInfo.html
│ │ │ │ ├── TcpPortStatus.html
│ │ │ │ ├── ToolsUtil.html
│ │ │ │ ├── ToolsUtilLinkOs.html
│ │ │ │ ├── XmlPrinter.html
│ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ ├── ZebraPrinter.html
│ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ ├── ZebraPrinterLinkOs.html
│ │ │ │ └── ZplPrintMode.html
│ │ │ ├── settings
│ │ │ │ ├── AlertCondition.html
│ │ │ │ ├── AlertDestination.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AlertCondition.html
│ │ │ │ │ ├── AlertDestination.html
│ │ │ │ │ ├── Setting.html
│ │ │ │ │ ├── SettingsException.html
│ │ │ │ │ ├── SettingsProvider.html
│ │ │ │ │ ├── SettingsRanges.html
│ │ │ │ │ └── SettingsValues.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Setting.html
│ │ │ │ ├── SettingsException.html
│ │ │ │ ├── SettingsProvider.html
│ │ │ │ ├── SettingsRanges.html
│ │ │ │ └── SettingsValues.html
│ │ │ └── weblink
│ │ │ ├── class-use
│ │ │ │ ├── ConfigurationStatus.html
│ │ │ │ ├── WeblinkAddressStrategy.html
│ │ │ │ ├── WeblinkConfigurationState.html
│ │ │ │ ├── WeblinkConfigurationStateUpdater.html
│ │ │ │ ├── WeblinkConfigurator.html
│ │ │ │ └── ZebraWeblinkException.html
│ │ │ ├── ConfigurationStatus.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── WeblinkAddressStrategy.html
│ │ │ ├── WeblinkConfigurationState.html
│ │ │ ├── WeblinkConfigurationStateUpdater.html
│ │ │ ├── WeblinkConfigurator.html
│ │ │ └── ZebraWeblinkException.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── import_demos.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── readme.html
│ │ ├── resources
│ │ │ ├── background.gif
│ │ │ ├── tab.gif
│ │ │ ├── titlebar_end.gif
│ │ │ └── titlebar.gif
│ │ ├── serialized-form.html
│ │ ├── style.css
│ │ ├── zebra.png
│ │ └── Zebra_SDK_EULA.pdf
│ └── lib
│ └── ZSDK_ANDROID_BTLE.jar
├── blackberry
│ └── v1.0.37
│ ├── demos
│ │ ├── eclipse
│ │ │ └── ZSDK_Demos.zip
│ │ ├── release
│ │ │ ├── desktop_deployment
│ │ │ │ ├── zebraDeveloperDemos.alx
│ │ │ │ └── ZSDK_Demos.cod
│ │ │ └── web_deployment
│ │ │ ├── ZSDK_Demos.cod
│ │ │ └── ZSDK_Demos.jad
│ │ └── src
│ │ └── com
│ │ └── zebra
│ │ └── blackberry
│ │ └── demo
│ │ ├── Application.java
│ │ ├── ColorfulLabelField.java
│ │ ├── ConnectionScreen.java
│ │ ├── connectivity
│ │ │ └── ConnectivityDemo.java
│ │ ├── CustomObjectListField.java
│ │ ├── DemoMainScreen.java
│ │ ├── discovery
│ │ │ └── DiscoveryDemo.java
│ │ ├── EnablableBasicEditField.java
│ │ ├── formatlist
│ │ │ └── FormatListDemo.java
│ │ ├── imageprint
│ │ │ └── ImagePrintDemo.java
│ │ ├── magcard
│ │ │ └── MagCardDemo.java
│ │ ├── readytoprint
│ │ │ └── ReadyToPrintDemo.java
│ │ ├── sendfile
│ │ │ └── SendFileDemo.java
│ │ ├── storedformat
│ │ │ └── StoredFormatDemo.java
│ │ └── util
│ │ └── DemoSleeper.java
│ ├── documentation
│ │ ├── add_library.html
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com
│ │ │ └── zebra
│ │ │ └── blackberry
│ │ │ ├── comm
│ │ │ │ ├── BluetoothPrinterConnection.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── BluetoothPrinterConnection.html
│ │ │ │ │ ├── TcpPrinterConnection.html
│ │ │ │ │ ├── ZebraPrinterConnectionA.html
│ │ │ │ │ ├── ZebraPrinterConnectionException.html
│ │ │ │ │ └── ZebraPrinterConnection.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── TcpPrinterConnection.html
│ │ │ │ ├── ZebraPrinterConnectionA.html
│ │ │ │ ├── ZebraPrinterConnectionException.html
│ │ │ │ └── ZebraPrinterConnection.html
│ │ │ ├── discovery
│ │ │ │ ├── BluetoothDiscoverer.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── BluetoothDiscoverer.html
│ │ │ │ │ ├── DiscoveredPrinterBluetooth.html
│ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ └── NetworkDiscoverer.html
│ │ │ │ ├── DiscoveredPrinterBluetooth.html
│ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ ├── NetworkDiscoverer.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── printer
│ │ │ │ ├── class-use
│ │ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ │ ├── FileUtil.html
│ │ │ │ │ ├── FormatUtil.html
│ │ │ │ │ ├── GraphicsUtil.html
│ │ │ │ │ ├── MagCardReader.html
│ │ │ │ │ ├── PrinterLanguage.html
│ │ │ │ │ ├── PrinterStatus.html
│ │ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ │ ├── ToolsUtil.html
│ │ │ │ │ ├── ZebraIllegalArgumentException.html
│ │ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ │ ├── ZebraPrinter.html
│ │ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ │ └── ZplPrintMode.html
│ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ ├── FileUtil.html
│ │ │ │ ├── FormatUtil.html
│ │ │ │ ├── GraphicsUtil.html
│ │ │ │ ├── MagCardReader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── PrinterLanguage.html
│ │ │ │ ├── PrinterStatus.html
│ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ ├── ToolsUtil.html
│ │ │ │ ├── ZebraIllegalArgumentException.html
│ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ ├── ZebraPrinter.html
│ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ └── ZplPrintMode.html
│ │ │ ├── sgd
│ │ │ │ ├── class-use
│ │ │ │ │ └── SGD.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── SGD.html
│ │ │ └── util
│ │ │ ├── class-use
│ │ │ │ ├── CollectionProvider.html
│ │ │ │ ├── List.html
│ │ │ │ └── LongMap.html
│ │ │ ├── CollectionProvider.html
│ │ │ ├── List.html
│ │ │ ├── LongMap.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── dd_perms.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── import_demos.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── resources
│ │ │ └── inherit.gif
│ │ ├── serialized-form.html
│ │ ├── stylesheet.css
│ │ └── utilities_perms.html
│ ├── lib
│ │ └── ZSDK_API.jar
│ ├── readme.html
│ ├── Zebra_SDK_EULA.pdf
│ └── zebra_utilities
│ └── release
│ ├── desktop_deployment
│ │ ├── zebraUtilities.alx
│ │ └── ZebraUtilities.cod
│ └── web_deployment
│ ├── ZebraUtilities-1.cod
│ ├── ZebraUtilities-2.cod
│ ├── ZebraUtilities-3.cod
│ ├── ZebraUtilities-4.cod
│ ├── ZebraUtilities.cod
│ └── ZebraUtilities.jad
├── iOS
│ └── v1.4.957
│ ├── demos
│ │ └── src
│ │ └── xcode_project
│ │ └── developer_demos
│ │ ├── Classes
│ │ │ ├── BluetoothPrintersViewController.h
│ │ │ ├── BluetoothPrintersViewController.m
│ │ │ ├── BluetoothPrintersView.xib
│ │ │ ├── ConnectionSetupController.h
│ │ │ ├── ConnectionSetupController.m
│ │ │ ├── ConnectivityDemoController.h
│ │ │ ├── ConnectivityDemoController.m
│ │ │ ├── CreateReceiptViewController.h
│ │ │ ├── CreateReceiptViewController.m
│ │ │ ├── CreateReceiptView.xib
│ │ │ ├── DirectedBroadcastViewController.h
│ │ │ ├── DirectedBroadcastViewController.m
│ │ │ ├── DiscoveredPrintersViewController.h
│ │ │ ├── DiscoveredPrintersViewController.m
│ │ │ ├── DiscoveryControllerBase.h
│ │ │ ├── DiscoveryControllerBase.m
│ │ │ ├── DiscoveryViewController.h
│ │ │ ├── DiscoveryViewController.m
│ │ │ ├── DrawingArea.h
│ │ │ ├── DrawingArea.m
│ │ │ ├── ImagePrintDemoViewController.h
│ │ │ ├── ImagePrintDemoViewController.m
│ │ │ ├── LineModeViewController.h
│ │ │ ├── LineModeViewController.m
│ │ │ ├── ListFormatsDemoViewController.h
│ │ │ ├── ListFormatsDemoViewController.m
│ │ │ ├── ListFormatsViewController.h
│ │ │ ├── ListFormatsViewController.m
│ │ │ ├── MagCardDemoViewController.h
│ │ │ ├── MagCardDemoViewController.m
│ │ │ ├── MulticastViewController.h
│ │ │ ├── MulticastViewController.m
│ │ │ ├── PrintPreviewController.h
│ │ │ ├── PrintPreviewController.m
│ │ │ ├── ReceiptPrintingViewController.h
│ │ │ ├── ReceiptPrintingViewController.m
│ │ │ ├── RootViewController.h
│ │ │ ├── RootViewController.m
│ │ │ ├── SendFileDemoViewController.h
│ │ │ ├── SendFileDemoViewController.m
│ │ │ ├── SignatureCaptureDemoViewController.h
│ │ │ ├── SignatureCaptureDemoViewController.m
│ │ │ ├── SmartCardDemoViewController.h
│ │ │ ├── SmartCardDemoViewController.m
│ │ │ ├── StatusViewController.h
│ │ │ ├── StatusViewController.m
│ │ │ ├── StoredFormatViewController.h
│ │ │ ├── StoredFormatViewController.m
│ │ │ ├── StoredPrinterFormatsViewController.h
│ │ │ ├── StoredPrinterFormatsViewController.m
│ │ │ ├── SubnetSearchViewController.h
│ │ │ ├── SubnetSearchViewController.m
│ │ │ ├── VariableFieldEditViewController.h
│ │ │ ├── VariableFieldEditViewController.m
│ │ │ ├── VariableModifier.h
│ │ │ ├── VariablesViewController.h
│ │ │ ├── VariablesViewController.m
│ │ │ ├── XmlReceiptPrintingViewController.h
│ │ │ ├── XmlReceiptPrintingViewController.m
│ │ │ ├── XmlReceiptPrintingView.xib
│ │ │ ├── ZSDKDeveloperDemosAppDelegate.h
│ │ │ └── ZSDKDeveloperDemosAppDelegate.m
│ │ ├── Formats
│ │ │ ├── test_cpcl.lbl
│ │ │ └── test_zpl.zpl
│ │ ├── Images
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── formatFromPhone.png
│ │ │ ├── formatFromPrinter.png
│ │ │ ├── ql.jpg
│ │ │ └── rw420.jpg
│ │ ├── main.m
│ │ ├── PDFs
│ │ │ └── PDFDemo2.pdf
│ │ ├── Xibs
│ │ │ ├── ConnectionSetupView.xib
│ │ │ ├── ConnectivityView.xib
│ │ │ ├── DirectedBroadcastView.xib
│ │ │ ├── DiscoveredPrintersView.xib
│ │ │ ├── DiscoveryView.xib
│ │ │ ├── ImagePrintView.xib
│ │ │ ├── LineModeView.xib
│ │ │ ├── ListFormatsDemoView.xib
│ │ │ ├── ListFormatsView.xib
│ │ │ ├── MagCardView.xib
│ │ │ ├── MainWindow.xib
│ │ │ ├── MulticastView.xib
│ │ │ ├── PrintPreview.xib
│ │ │ ├── ReceiptPrintingView.xib
│ │ │ ├── RootViewController.xib
│ │ │ ├── SendFileView.xib
│ │ │ ├── SignatureView.xib
│ │ │ ├── SmartCardView.xib
│ │ │ ├── StatusView.xib
│ │ │ ├── StoredFormatView.xib
│ │ │ ├── StoredPrinterFormatsView.xib
│ │ │ ├── SubnetSearchView.xib
│ │ │ ├── VariableFieldEditView.xib
│ │ │ └── VariablesView.xib
│ │ ├── ZSDKDeveloperDemos-Info.plist
│ │ ├── ZSDKDeveloperDemos_Prefix.pch
│ │ └── ZSDKDeveloperDemos.xcodeproj
│ │ ├── project.pbxproj
│ │ ├── swgroup.mode1v3
│ │ └── swgroup.pbxuser
│ ├── doc
│ │ └── html
│ │ ├── annotated.html
│ │ ├── annotated.js
│ │ ├── bc_s.png
│ │ ├── bdwn.png
│ │ ├── class_discovered_printer-members.html
│ │ ├── class_discovered_printer_network-members.html
│ │ ├── classes.html
│ │ ├── class_field_description_data-members.html
│ │ ├── class_mfi_bt_printer_connection-members.html
│ │ ├── class_network_discoverer-members.html
│ │ ├── class_printer_status-members.html
│ │ ├── class_printer_status_messages-members.html
│ │ ├── class_s_g_d-members.html
│ │ ├── class_tcp_printer_connection-members.html
│ │ ├── class_zebra_error_code_i-members.html
│ │ ├── class_zebra_printer_factory-members.html
│ │ ├── class_zpl_print_mode_i-members.html
│ │ ├── closed.png
│ │ ├── dir_08003f2c3687289e58899d9b5f14a1ae.html
│ │ ├── dir_3f851f636b3d9a7958efc6d290f83561.html
│ │ ├── dir_85c8f982048325d429c964124a439133.html
│ │ ├── dir_b94f9f0c034b39d5d6d39e3a6fbfd3e1.html
│ │ ├── dir_ffe13ea11bb20f001dda08bf2924355a.html
│ │ ├── doxygen.css
│ │ ├── doxygen.png
│ │ ├── dynsections.js
│ │ ├── ftv2blank.png
│ │ ├── ftv2cl.png
│ │ ├── ftv2doc.png
│ │ ├── ftv2folderclosed.png
│ │ ├── ftv2folderopen.png
│ │ ├── ftv2lastnode.png
│ │ ├── ftv2link.png
│ │ ├── ftv2mlastnode.png
│ │ ├── ftv2mnode.png
│ │ ├── ftv2mo.png
│ │ ├── ftv2node.png
│ │ ├── ftv2ns.png
│ │ ├── ftv2plastnode.png
│ │ ├── ftv2pnode.png
│ │ ├── ftv2splitbar.png
│ │ ├── ftv2vertline.png
│ │ ├── functions_enum.html
│ │ ├── functions_eval.html
│ │ ├── functions_func.html
│ │ ├── functions.html
│ │ ├── functions_prop.html
│ │ ├── hierarchy.html
│ │ ├── hierarchy.js
│ │ ├── index.html
│ │ ├── interface_discovered_printer.html
│ │ ├── interface_discovered_printer.js
│ │ ├── interface_discovered_printer_network.html
│ │ ├── interface_discovered_printer_network.js
│ │ ├── interface_discovered_printer_network.png
│ │ ├── interface_discovered_printer.png
│ │ ├── interface_field_description_data.html
│ │ ├── interface_field_description_data.js
│ │ ├── interface_field_description_data.png
│ │ ├── interface_mfi_bt_printer_connection.html
│ │ ├── interface_mfi_bt_printer_connection.js
│ │ ├── interface_mfi_bt_printer_connection.png
│ │ ├── interface_network_discoverer.html
│ │ ├── interface_network_discoverer.js
│ │ ├── interface_network_discoverer.png
│ │ ├── interface_printer_status.html
│ │ ├── interface_printer_status.js
│ │ ├── interface_printer_status_messages.html
│ │ ├── interface_printer_status_messages.js
│ │ ├── interface_printer_status_messages.png
│ │ ├── interface_printer_status.png
│ │ ├── interface_s_g_d.html
│ │ ├── interface_s_g_d.js
│ │ ├── interface_s_g_d.png
│ │ ├── interface_tcp_printer_connection.html
│ │ ├── interface_tcp_printer_connection.js
│ │ ├── interface_tcp_printer_connection.png
│ │ ├── interface_zebra_error_code_i.html
│ │ ├── interface_zebra_error_code_i.js
│ │ ├── interface_zebra_error_code_i.png
│ │ ├── interface_zebra_printer_factory.html
│ │ ├── interface_zebra_printer_factory.js
│ │ ├── interface_zebra_printer_factory.png
│ │ ├── interface_zpl_print_mode_i.html
│ │ ├── interface_zpl_print_mode_i.js
│ │ ├── interface_zpl_print_mode_i.png
│ │ ├── jquery.js
│ │ ├── libToProj.html
│ │ ├── nav_f.png
│ │ ├── nav_g.png
│ │ ├── nav_h.png
│ │ ├── navtree.css
│ │ ├── navtreeindex0.js
│ │ ├── navtree.js
│ │ ├── open.png
│ │ ├── protocol_file_util-p.html
│ │ ├── protocol_file_util-p.js
│ │ ├── protocol_file_util-p-members.html
│ │ ├── protocol_format_util-p.html
│ │ ├── protocol_format_util-p.js
│ │ ├── protocol_format_util-p-members.html
│ │ ├── protocol_graphics_util-p.html
│ │ ├── protocol_graphics_util-p.js
│ │ ├── protocol_graphics_util-p-members.html
│ │ ├── protocol_mag_card_reader-p.html
│ │ ├── protocol_mag_card_reader-p.js
│ │ ├── protocol_mag_card_reader-p-members.html
│ │ ├── protocol_smart_card_reader-p.html
│ │ ├── protocol_smart_card_reader-p.js
│ │ ├── protocol_smart_card_reader-p-members.html
│ │ ├── protocol_tools_util-p.html
│ │ ├── protocol_tools_util-p.js
│ │ ├── protocol_tools_util-p-members.html
│ │ ├── protocol_zebra_printer_connection-p.html
│ │ ├── protocol_zebra_printer_connection-p.js
│ │ ├── protocol_zebra_printer_connection-p-members.html
│ │ ├── protocol_zebra_printer_connection-p.png
│ │ ├── protocol_zebra_printer-p.html
│ │ ├── protocol_zebra_printer-p.js
│ │ ├── protocol_zebra_printer-p-members.html
│ │ ├── resize.js
│ │ ├── search
│ │ │ ├── all_61.html
│ │ │ ├── all_61.js
│ │ │ ├── all_63.html
│ │ │ ├── all_63.js
│ │ │ ├── all_64.html
│ │ │ ├── all_64.js
│ │ │ ├── all_66.html
│ │ │ ├── all_66.js
│ │ │ ├── all_67.html
│ │ │ ├── all_67.js
│ │ │ ├── all_68.html
│ │ │ ├── all_68.js
│ │ │ ├── all_69.html
│ │ │ ├── all_69.js
│ │ │ ├── all_6c.html
│ │ │ ├── all_6c.js
│ │ │ ├── all_6d.html
│ │ │ ├── all_6d.js
│ │ │ ├── all_6e.html
│ │ │ ├── all_6e.js
│ │ │ ├── all_6f.html
│ │ │ ├── all_6f.js
│ │ │ ├── all_70.html
│ │ │ ├── all_70.js
│ │ │ ├── all_72.html
│ │ │ ├── all_72.js
│ │ │ ├── all_73.html
│ │ │ ├── all_73.js
│ │ │ ├── all_74.html
│ │ │ ├── all_74.js
│ │ │ ├── all_77.html
│ │ │ ├── all_77.js
│ │ │ ├── all_7a.html
│ │ │ ├── all_7a.js
│ │ │ ├── classes_64.html
│ │ │ ├── classes_64.js
│ │ │ ├── classes_66.html
│ │ │ ├── classes_66.js
│ │ │ ├── classes_67.html
│ │ │ ├── classes_67.js
│ │ │ ├── classes_6d.html
│ │ │ ├── classes_6d.js
│ │ │ ├── classes_6e.html
│ │ │ ├── classes_6e.js
│ │ │ ├── classes_70.html
│ │ │ ├── classes_70.js
│ │ │ ├── classes_73.html
│ │ │ ├── classes_73.js
│ │ │ ├── classes_74.html
│ │ │ ├── classes_74.js
│ │ │ ├── classes_7a.html
│ │ │ ├── classes_7a.js
│ │ │ ├── close.png
│ │ │ ├── enums_70.html
│ │ │ ├── enums_70.js
│ │ │ ├── enums_7a.html
│ │ │ ├── enums_7a.js
│ │ │ ├── enumvalues_70.html
│ │ │ ├── enumvalues_70.js
│ │ │ ├── enumvalues_7a.html
│ │ │ ├── enumvalues_7a.js
│ │ │ ├── functions_63.html
│ │ │ ├── functions_63.js
│ │ │ ├── functions_64.html
│ │ │ ├── functions_64.js
│ │ │ ├── functions_67.html
│ │ │ ├── functions_67.js
│ │ │ ├── functions_68.html
│ │ │ ├── functions_68.js
│ │ │ ├── functions_69.html
│ │ │ ├── functions_69.js
│ │ │ ├── functions_6c.html
│ │ │ ├── functions_6c.js
│ │ │ ├── functions_6d.html
│ │ │ ├── functions_6d.js
│ │ │ ├── functions_6f.html
│ │ │ ├── functions_6f.js
│ │ │ ├── functions_70.html
│ │ │ ├── functions_70.js
│ │ │ ├── functions_72.html
│ │ │ ├── functions_72.js
│ │ │ ├── functions_73.html
│ │ │ ├── functions_73.js
│ │ │ ├── functions_74.html
│ │ │ ├── functions_74.js
│ │ │ ├── functions_77.html
│ │ │ ├── functions_77.js
│ │ │ ├── mag_sel.png
│ │ │ ├── nomatches.html
│ │ │ ├── pages_7a.html
│ │ │ ├── pages_7a.js
│ │ │ ├── properties_61.html
│ │ │ ├── properties_61.js
│ │ │ ├── properties_64.html
│ │ │ ├── properties_64.js
│ │ │ ├── properties_66.html
│ │ │ ├── properties_66.js
│ │ │ ├── properties_69.html
│ │ │ ├── properties_69.js
│ │ │ ├── properties_6c.html
│ │ │ ├── properties_6c.js
│ │ │ ├── properties_6e.html
│ │ │ ├── properties_6e.js
│ │ │ ├── properties_70.html
│ │ │ ├── properties_70.js
│ │ │ ├── search.css
│ │ │ ├── search.js
│ │ │ ├── search_l.png
│ │ │ ├── search_m.png
│ │ │ └── search_r.png
│ │ ├── sync_off.png
│ │ ├── sync_on.png
│ │ ├── tab_a.png
│ │ ├── tab_b.png
│ │ ├── tab_h.png
│ │ ├── tabs.css
│ │ └── tab_s.png
│ ├── lib
│ │ ├── include
│ │ │ ├── DiscoveredPrinter.h
│ │ │ ├── DiscoveredPrinterNetwork.h
│ │ │ ├── FieldDescriptionData.h
│ │ │ ├── FileUtil.h
│ │ │ ├── FormatUtil.h
│ │ │ ├── GraphicsUtil.h
│ │ │ ├── MagCardReader.h
│ │ │ ├── MfiBtPrinterConnection.h
│ │ │ ├── NetworkDiscoverer.h
│ │ │ ├── PrinterStatus.h
│ │ │ ├── PrinterStatusMessages.h
│ │ │ ├── SGD.h
│ │ │ ├── SmartCardReader.h
│ │ │ ├── TcpPrinterConnection.h
│ │ │ ├── ToolsUtil.h
│ │ │ ├── ZebraErrorCode.h
│ │ │ ├── ZebraPrinterConnection.h
│ │ │ ├── ZebraPrinterFactory.h
│ │ │ ├── ZebraPrinter.h
│ │ │ └── ZplPrintMode.h
│ │ └── libZSDK_API.a
│ ├── readme.html
│ ├── sdk_welcome.html
│ ├── Zebra_SDK_EULA.pdf
│ └── zebra_utilities
│ └── release
│ └── ZebraLink™ Multiplatform SDK and Smartphone Utility.webloc
├── notices.html
├── PC
│ └── v2.11.2800
│ ├── demos
│ │ ├── eclipse
│ │ │ └── DeveloperDemo_Desktop.zip
│ │ ├── release
│ │ │ ├── zDriverAdapter64.dll
│ │ │ ├── zDriverAdapter.dll
│ │ │ ├── ZebraNativeUsbAdapter_32.dll
│ │ │ ├── ZebraNativeUsbAdapter_64.dll
│ │ │ └── ZSDK_DemosDesktop.jar
│ │ └── src
│ │ └── com
│ │ └── zebra
│ │ └── desktop
│ │ └── devdemo
│ │ ├── connectionbuilder
│ │ │ └── ConnectionBuilderDemo.java
│ │ ├── ConnectionCardPanel.java
│ │ ├── connectivity
│ │ │ └── ConnectivityDemo.java
│ │ ├── DemoDialog.java
│ │ ├── DevDemo.java
│ │ ├── discovery
│ │ │ ├── DiscoveryDemo.java
│ │ │ └── DiscoveryListPanel.java
│ │ ├── imageprint
│ │ │ └── ImagePrintDemo.java
│ │ ├── listformats
│ │ │ └── ListFormatsDemo.java
│ │ ├── magcard
│ │ │ └── MagCardDemo.java
│ │ ├── NumericTextField.java
│ │ ├── printerstatus
│ │ │ └── PrinterStatusDemo.java
│ │ ├── profile
│ │ │ └── ProfileDemo.java
│ │ ├── sendfile
│ │ │ └── SendFileDemo.java
│ │ ├── settings
│ │ │ └── SettingsDemo.java
│ │ ├── smartcard
│ │ │ └── SmartCardDemo.java
│ │ ├── storedformat
│ │ │ └── StoredFormatDemo.java
│ │ └── util
│ │ └── DemoSleeper.java
│ ├── documentation
│ │ ├── add_library.html
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com
│ │ │ └── zebra
│ │ │ └── sdk
│ │ │ ├── certificate
│ │ │ │ ├── CertificateParser.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── CertificateParser.html
│ │ │ │ │ ├── ZebraCertificateException.html
│ │ │ │ │ ├── ZebraCertificateInfo.html
│ │ │ │ │ └── ZebraP12Info.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ZebraCertificateException.html
│ │ │ │ ├── ZebraCertificateInfo.html
│ │ │ │ └── ZebraP12Info.html
│ │ │ ├── comm
│ │ │ │ ├── class-use
│ │ │ │ │ ├── ConnectionA.html
│ │ │ │ │ ├── ConnectionBuilder.html
│ │ │ │ │ ├── ConnectionException.html
│ │ │ │ │ ├── Connection.html
│ │ │ │ │ ├── ConnectionReestablisher.html
│ │ │ │ │ ├── ConnectionStatusA.html
│ │ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ │ ├── DriverPrinterConnection.html
│ │ │ │ │ ├── IpAddressable.html
│ │ │ │ │ ├── LogStreamException.html
│ │ │ │ │ ├── MultichannelConnection.html
│ │ │ │ │ ├── MultichannelTcpConnection.html
│ │ │ │ │ ├── ResponseValidator.html
│ │ │ │ │ ├── StatusConnection.html
│ │ │ │ │ ├── StatusConnectionWithWriteLogging.html
│ │ │ │ │ ├── TcpConnection.html
│ │ │ │ │ ├── TcpStatusConnection.html
│ │ │ │ │ ├── UsbConnection.html
│ │ │ │ │ └── UsbNativeCodeConnectionException.html
│ │ │ │ ├── ConnectionA.html
│ │ │ │ ├── ConnectionBuilder.html
│ │ │ │ ├── ConnectionException.html
│ │ │ │ ├── Connection.html
│ │ │ │ ├── ConnectionReestablisher.html
│ │ │ │ ├── ConnectionStatusA.html
│ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ ├── DriverPrinterConnection.html
│ │ │ │ ├── IpAddressable.html
│ │ │ │ ├── LogStreamException.html
│ │ │ │ ├── MultichannelConnection.html
│ │ │ │ ├── MultichannelTcpConnection.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ResponseValidator.html
│ │ │ │ ├── StatusConnection.html
│ │ │ │ ├── StatusConnectionWithWriteLogging.html
│ │ │ │ ├── TcpConnection.html
│ │ │ │ ├── TcpStatusConnection.html
│ │ │ │ ├── UsbConnection.html
│ │ │ │ └── UsbNativeCodeConnectionException.html
│ │ │ ├── device
│ │ │ │ ├── class-use
│ │ │ │ │ ├── Device.html
│ │ │ │ │ ├── FileUtil.html
│ │ │ │ │ ├── FileUtilLinkOs.html
│ │ │ │ │ ├── MagCardReaderFactory.html
│ │ │ │ │ ├── MagCardReader.html
│ │ │ │ │ ├── Profile.html
│ │ │ │ │ ├── ProfileToMirrorServer.html
│ │ │ │ │ ├── ProgressMonitor.html
│ │ │ │ │ ├── SmartcardReaderFactory.html
│ │ │ │ │ ├── SmartcardReader.html
│ │ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ │ ├── Device.html
│ │ │ │ ├── FileUtil.html
│ │ │ │ ├── FileUtilLinkOs.html
│ │ │ │ ├── MagCardReaderFactory.html
│ │ │ │ ├── MagCardReader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Profile.html
│ │ │ │ ├── ProfileToMirrorServer.html
│ │ │ │ ├── ProgressMonitor.html
│ │ │ │ ├── SmartcardReaderFactory.html
│ │ │ │ ├── SmartcardReader.html
│ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ ├── graphics
│ │ │ │ ├── class-use
│ │ │ │ │ ├── ZebraImageFactory.html
│ │ │ │ │ └── ZebraImageI.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ZebraImageFactory.html
│ │ │ │ └── ZebraImageI.html
│ │ │ ├── printer
│ │ │ │ ├── AlertProvider.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AlertProvider.html
│ │ │ │ │ ├── CsvPrinter.html
│ │ │ │ │ ├── DriveType.html
│ │ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ │ ├── FileDeletionOption.html
│ │ │ │ │ ├── FirmwareUpdateHandlerBase.html
│ │ │ │ │ ├── FirmwareUpdateHandler.html
│ │ │ │ │ ├── FirmwareUpdaterLinkOs.html
│ │ │ │ │ ├── FontConverterZpl.html
│ │ │ │ │ ├── FontUtil.html
│ │ │ │ │ ├── FormatUtil.html
│ │ │ │ │ ├── FormatUtilLinkOs.html
│ │ │ │ │ ├── GraphicsUtil.html
│ │ │ │ │ ├── LinkOsInformation.html
│ │ │ │ │ ├── NotALinkOsPrinterException.html
│ │ │ │ │ ├── PrinterAlert.html
│ │ │ │ │ ├── PrinterLanguage.html
│ │ │ │ │ ├── PrinterObjectProperties.html
│ │ │ │ │ ├── PrinterReconnectionHandler.html
│ │ │ │ │ ├── PrinterStatus.html
│ │ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ │ ├── PrinterUtil.html
│ │ │ │ │ ├── ProfileUtil.html
│ │ │ │ │ ├── SettingsSetter.html
│ │ │ │ │ ├── SGD.html
│ │ │ │ │ ├── SnmpException.html
│ │ │ │ │ ├── SnmpPrinter.html
│ │ │ │ │ ├── StorageInfo.html
│ │ │ │ │ ├── TcpPortStatus.html
│ │ │ │ │ ├── ToolsUtil.html
│ │ │ │ │ ├── ToolsUtilLinkOs.html
│ │ │ │ │ ├── XmlPrinter.html
│ │ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ │ ├── ZebraPrinter.html
│ │ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ │ ├── ZebraPrinterLinkOs.html
│ │ │ │ │ └── ZplPrintMode.html
│ │ │ │ ├── CsvPrinter.html
│ │ │ │ ├── discovery
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── DiscoveredPrinterDriver.html
│ │ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ │ ├── DiscoveredUsbPrinter.html
│ │ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ │ ├── DiscoveryHandlerLinkOsOnly.html
│ │ │ │ │ │ ├── DiscoveryPacketDecodeException.html
│ │ │ │ │ │ ├── DiscoveryUtil.html
│ │ │ │ │ │ ├── NetworkDiscoverer.html
│ │ │ │ │ │ └── UsbDiscoverer.html
│ │ │ │ │ ├── DiscoveredPrinterDriver.html
│ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ ├── DiscoveredUsbPrinter.html
│ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ ├── DiscoveryHandlerLinkOsOnly.html
│ │ │ │ │ ├── DiscoveryPacketDecodeException.html
│ │ │ │ │ ├── DiscoveryUtil.html
│ │ │ │ │ ├── NetworkDiscoverer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── UsbDiscoverer.html
│ │ │ │ ├── DriveType.html
│ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ ├── FileDeletionOption.html
│ │ │ │ ├── FirmwareUpdateHandlerBase.html
│ │ │ │ ├── FirmwareUpdateHandler.html
│ │ │ │ ├── FirmwareUpdaterLinkOs.html
│ │ │ │ ├── FontConverterZpl.html
│ │ │ │ ├── FontUtil.html
│ │ │ │ ├── FormatUtil.html
│ │ │ │ ├── FormatUtilLinkOs.html
│ │ │ │ ├── GraphicsUtil.html
│ │ │ │ ├── LinkOsInformation.html
│ │ │ │ ├── NotALinkOsPrinterException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── PrinterAlert.html
│ │ │ │ ├── PrinterLanguage.html
│ │ │ │ ├── PrinterObjectProperties.html
│ │ │ │ ├── PrinterReconnectionHandler.html
│ │ │ │ ├── PrinterStatus.html
│ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ ├── PrinterUtil.html
│ │ │ │ ├── ProfileUtil.html
│ │ │ │ ├── SettingsSetter.html
│ │ │ │ ├── SGD.html
│ │ │ │ ├── SnmpException.html
│ │ │ │ ├── SnmpPrinter.html
│ │ │ │ ├── StorageInfo.html
│ │ │ │ ├── TcpPortStatus.html
│ │ │ │ ├── ToolsUtil.html
│ │ │ │ ├── ToolsUtilLinkOs.html
│ │ │ │ ├── XmlPrinter.html
│ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ ├── ZebraPrinter.html
│ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ ├── ZebraPrinterLinkOs.html
│ │ │ │ └── ZplPrintMode.html
│ │ │ ├── remote
│ │ │ │ ├── comm
│ │ │ │ │ ├── AlertMonitorBase.html
│ │ │ │ │ ├── AlertMonitorI.html
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── AlertMonitorBase.html
│ │ │ │ │ │ ├── AlertMonitorI.html
│ │ │ │ │ │ ├── MultichannelRemoteConnection.html
│ │ │ │ │ │ ├── RemoteConnection.html
│ │ │ │ │ │ └── RemoteStatusConnection.html
│ │ │ │ │ ├── MultichannelRemoteConnection.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ ├── RemoteConnection.html
│ │ │ │ │ └── RemoteStatusConnection.html
│ │ │ │ └── discovery
│ │ │ │ ├── class-use
│ │ │ │ │ ├── ConnectionHandlerBase.html
│ │ │ │ │ ├── ConnectionHandlerI.html
│ │ │ │ │ └── RemoteDiscoverer.html
│ │ │ │ ├── ConnectionHandlerBase.html
│ │ │ │ ├── ConnectionHandlerI.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── RemoteDiscoverer.html
│ │ │ ├── settings
│ │ │ │ ├── AlertCondition.html
│ │ │ │ ├── AlertDestination.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AlertCondition.html
│ │ │ │ │ ├── AlertDestination.html
│ │ │ │ │ ├── Setting.html
│ │ │ │ │ ├── SettingsException.html
│ │ │ │ │ ├── SettingsProvider.html
│ │ │ │ │ ├── SettingsRanges.html
│ │ │ │ │ └── SettingsValues.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Setting.html
│ │ │ │ ├── SettingsException.html
│ │ │ │ ├── SettingsProvider.html
│ │ │ │ ├── SettingsRanges.html
│ │ │ │ └── SettingsValues.html
│ │ │ └── weblink
│ │ │ ├── class-use
│ │ │ │ ├── ConfigurationStatus.html
│ │ │ │ ├── WeblinkAddressStrategy.html
│ │ │ │ ├── WeblinkConfigurationState.html
│ │ │ │ ├── WeblinkConfigurationStateUpdater.html
│ │ │ │ ├── WeblinkConfigurator.html
│ │ │ │ └── ZebraWeblinkException.html
│ │ │ ├── ConfigurationStatus.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── WeblinkAddressStrategy.html
│ │ │ ├── WeblinkConfigurationState.html
│ │ │ ├── WeblinkConfigurationStateUpdater.html
│ │ │ ├── WeblinkConfigurator.html
│ │ │ └── ZebraWeblinkException.html
│ │ ├── command_line.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── import_demos.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── readme.html
│ │ ├── resources
│ │ │ ├── background.gif
│ │ │ ├── tab.gif
│ │ │ ├── titlebar_end.gif
│ │ │ └── titlebar.gif
│ │ ├── serialized-form.html
│ │ ├── style.css
│ │ ├── zebra.png
│ │ └── Zebra_SDK_EULA.pdf
│ ├── lib
│ │ ├── bcpkix-jdk15on-1.48.jar
│ │ ├── bcprov-jdk15on-1.48.jar
│ │ ├── commons-codec-1.8.jar
│ │ ├── commons-io-2.2.jar
│ │ ├── commons-lang3-3.4.jar
│ │ ├── commons-net-3.1.jar
│ │ ├── commons-validator-1.4.0.jar
│ │ ├── httpcore-4.3.1.jar
│ │ ├── httpmime-4.3.2.jar
│ │ ├── jackson-annotations-2.2.3.jar
│ │ ├── jackson-core-2.2.3.jar
│ │ ├── jackson-databind-2.2.3.jar
│ │ ├── log4j-1.2.17.jar
│ │ ├── opencsv-2.2.jar
│ │ ├── snmp6_1.jar
│ │ ├── zDriverAdapter64.dll
│ │ ├── zDriverAdapter.dll
│ │ ├── ZebraNativeUsbAdapter_32.dll
│ │ ├── ZebraNativeUsbAdapter_64.dll
│ │ └── ZSDK_API.jar
│ └── sdk_welcome.html
├── PC-Card
│ └── v2.12.3782
│ ├── demos
│ │ ├── eclipse
│ │ │ └── Zebra_Card_SDK_Demos.zip
│ │ ├── release
│ │ │ ├── Zebra_Card_SDK_Demos.jar
│ │ │ ├── ZebraNativeUsbAdapter_32.dll
│ │ │ └── ZebraNativeUsbAdapter_64.dll
│ │ └── src
│ │ └── com
│ │ └── zebra
│ │ └── card
│ │ └── devdemo
│ │ ├── DevDemo.java
│ │ ├── DevDemoMainPage.java
│ │ ├── DiscoveredPrinterForDevDemo.java
│ │ ├── graphicconversion
│ │ │ ├── GraphicConversionDemo.java
│ │ │ ├── GraphicConverter.java
│ │ │ └── GraphicsContainer.java
│ │ ├── mag
│ │ │ ├── MagEncodeContainer.java
│ │ │ ├── MagEncodeDemo.java
│ │ │ └── MagEncodeModel.java
│ │ ├── multijob
│ │ │ ├── Job.java
│ │ │ ├── JobSettingOptions.java
│ │ │ ├── MultiJobDemo.java
│ │ │ └── MultiJobModel.java
│ │ │ ├── PrintDemo.java
│ │ │ ├── PrintJobOptions.java
│ │ │ └── PrintModel.java
│ │ ├── PrinterDemoBase.java
│ │ ├── PrinterDemo.java
│ │ ├── PrinterModel.java
│ │ ├── printerstatus
│ │ │ ├── PrinterStatusDemo.java
│ │ │ └── PrinterStatusModel.java
│ │ ├── settings
│ │ │ ├── ChangeSettingDialog.java
│ │ │ ├── PrinterSettingsDemo.java
│ │ │ └── PrinterSettingsModel.java
│ │ ├── smartcard
│ │ │ ├── SmartCardDemo.java
│ │ │ └── SmartCardModel.java
│ │ ├── template
│ │ │ ├── TemplateDemo.java
│ │ │ └── TemplateModel.java
│ │ └── TextAreaOutputStream.java
│ ├── documentation
│ │ ├── add_library.html
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com
│ │ │ └── zebra
│ │ │ └── sdk
│ │ │ ├── comm
│ │ │ │ ├── CardConnectionReestablisher.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── CardConnectionReestablisher.html
│ │ │ │ │ ├── ConnectionA.html
│ │ │ │ │ ├── ConnectionBuilder.html
│ │ │ │ │ ├── ConnectionException.html
│ │ │ │ │ ├── Connection.html
│ │ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ │ ├── IpAddressable.html
│ │ │ │ │ ├── LogStreamException.html
│ │ │ │ │ ├── ResponseValidator.html
│ │ │ │ │ ├── TcpConnection.html
│ │ │ │ │ └── UsbConnection.html
│ │ │ │ ├── ConnectionA.html
│ │ │ │ ├── ConnectionBuilder.html
│ │ │ │ ├── ConnectionException.html
│ │ │ │ ├── Connection.html
│ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ ├── IpAddressable.html
│ │ │ │ ├── LogStreamException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ResponseValidator.html
│ │ │ │ ├── TcpConnection.html
│ │ │ │ └── UsbConnection.html
│ │ │ ├── common
│ │ │ │ └── card
│ │ │ │ ├── containers
│ │ │ │ │ ├── AlarmHandler.html
│ │ │ │ │ ├── AlarmInfo.html
│ │ │ │ │ ├── BarcodeReadInfo.html
│ │ │ │ │ ├── CardCountInfo.html
│ │ │ │ │ ├── CardTypeInfo.html
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── AlarmHandler.html
│ │ │ │ │ │ ├── AlarmInfo.html
│ │ │ │ │ │ ├── BarcodeReadInfo.html
│ │ │ │ │ │ ├── CardCountInfo.html
│ │ │ │ │ │ ├── CardTypeInfo.html
│ │ │ │ │ │ ├── DiscoveryConfiguration.html
│ │ │ │ │ │ ├── GraphicsInfo.html
│ │ │ │ │ │ ├── JobConfigInfo.html
│ │ │ │ │ │ ├── JobSideConfigInfo.html
│ │ │ │ │ │ ├── JobStatus.html
│ │ │ │ │ │ ├── JobStatusInfo.html
│ │ │ │ │ │ ├── LaminatorAdjustments.html
│ │ │ │ │ │ ├── LaminatorCardCountInfo.html
│ │ │ │ │ │ ├── LaminatorInfo.html
│ │ │ │ │ │ ├── MagConfigInfo.html
│ │ │ │ │ │ ├── MagneticEncoderInfo.html
│ │ │ │ │ │ ├── MagneticEncoderOffsetInfo.html
│ │ │ │ │ │ ├── MagSentinel.html
│ │ │ │ │ │ ├── MagTrackData.html
│ │ │ │ │ │ ├── MediaInfo.html
│ │ │ │ │ │ ├── MemoryInfo.html
│ │ │ │ │ │ ├── NetworkInfo.html
│ │ │ │ │ │ ├── OCPDisplayInfo.html
│ │ │ │ │ │ ├── OCPLine.html
│ │ │ │ │ │ ├── OCPSettings.html
│ │ │ │ │ │ ├── ParameterInfo.html
│ │ │ │ │ │ ├── PrinterInfo.html
│ │ │ │ │ │ ├── PrinterStatusInfo.html
│ │ │ │ │ │ ├── ReservationInfo.html
│ │ │ │ │ │ ├── SmartCardInfo.html
│ │ │ │ │ │ ├── TemplateJob.html
│ │ │ │ │ │ ├── TransferSpeeds.html
│ │ │ │ │ │ ├── TransferTemps.html
│ │ │ │ │ │ ├── WirelessAccessPointInfo.html
│ │ │ │ │ │ └── WirelessNetworkInfo.html
│ │ │ │ │ ├── DiscoveryConfiguration.html
│ │ │ │ │ ├── GraphicsInfo.html
│ │ │ │ │ ├── JobConfigInfo.html
│ │ │ │ │ ├── JobSideConfigInfo.html
│ │ │ │ │ ├── JobStatus.html
│ │ │ │ │ ├── JobStatusInfo.html
│ │ │ │ │ ├── LaminatorAdjustments.html
│ │ │ │ │ ├── LaminatorCardCountInfo.html
│ │ │ │ │ ├── LaminatorInfo.html
│ │ │ │ │ ├── MagConfigInfo.html
│ │ │ │ │ ├── MagneticEncoderInfo.html
│ │ │ │ │ ├── MagneticEncoderOffsetInfo.html
│ │ │ │ │ ├── MagSentinel.html
│ │ │ │ │ ├── MagTrackData.html
│ │ │ │ │ ├── MediaInfo.html
│ │ │ │ │ ├── MemoryInfo.html
│ │ │ │ │ ├── NetworkInfo.html
│ │ │ │ │ ├── OCPDisplayInfo.html
│ │ │ │ │ ├── OCPLine.html
│ │ │ │ │ ├── OCPSettings.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ ├── ParameterInfo.html
│ │ │ │ │ ├── PrinterInfo.html
│ │ │ │ │ ├── PrinterStatusInfo.html
│ │ │ │ │ ├── ReservationInfo.html
│ │ │ │ │ ├── SmartCardInfo.html
│ │ │ │ │ ├── TemplateJob.html
│ │ │ │ │ ├── TransferSpeeds.html
│ │ │ │ │ ├── TransferTemps.html
│ │ │ │ │ ├── WirelessAccessPointInfo.html
│ │ │ │ │ └── WirelessNetworkInfo.html
│ │ │ │ ├── device
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ └── DeviceUtil.html
│ │ │ │ │ ├── DeviceUtil.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── enumerations
│ │ │ │ │ ├── ATMMode.html
│ │ │ │ │ ├── CalibrationTable.html
│ │ │ │ │ ├── CapabilitiesType.html
│ │ │ │ │ ├── CardDestination.html
│ │ │ │ │ ├── CardSide.html
│ │ │ │ │ ├── CardSource.html
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── ATMMode.html
│ │ │ │ │ │ ├── CalibrationTable.html
│ │ │ │ │ │ ├── CapabilitiesType.html
│ │ │ │ │ │ ├── CardDestination.html
│ │ │ │ │ │ ├── CardSide.html
│ │ │ │ │ │ ├── CardSource.html
│ │ │ │ │ │ ├── CleaningPath.html
│ │ │ │ │ │ ├── CoercivityType.html
│ │ │ │ │ │ ├── CustomCard.html
│ │ │ │ │ │ ├── DataCharParity.html
│ │ │ │ │ │ ├── DataFormat.html
│ │ │ │ │ │ ├── DataSource.html
│ │ │ │ │ │ ├── ErrorControlLevel.html
│ │ │ │ │ │ ├── GraphicType.html
│ │ │ │ │ │ ├── ImageRotation.html
│ │ │ │ │ │ ├── IPVersion.html
│ │ │ │ │ │ ├── KOptimizationType.html
│ │ │ │ │ │ ├── LaminatorOffsetType.html
│ │ │ │ │ │ ├── LogType.html
│ │ │ │ │ │ ├── MagEncoderType.html
│ │ │ │ │ │ ├── MagEncodingType.html
│ │ │ │ │ │ ├── MediaType.html
│ │ │ │ │ │ ├── MonoConversionType.html
│ │ │ │ │ │ ├── OCPLanguage.html
│ │ │ │ │ │ ├── OrientationType.html
│ │ │ │ │ │ ├── PanelType.html
│ │ │ │ │ │ ├── PrinterType.html
│ │ │ │ │ │ ├── PrintOptimizationMode.html
│ │ │ │ │ │ ├── PrintType.html
│ │ │ │ │ │ ├── ReservationType.html
│ │ │ │ │ │ ├── RibbonPanelType.html
│ │ │ │ │ │ ├── SharpeningLevel.html
│ │ │ │ │ │ ├── SmartCardEncoderType.html
│ │ │ │ │ │ ├── SmartCardType.html
│ │ │ │ │ │ ├── Timeout.html
│ │ │ │ │ │ ├── TrackNumber.html
│ │ │ │ │ │ ├── TransferTemperatureType.html
│ │ │ │ │ │ ├── TransferType.html
│ │ │ │ │ │ ├── WirelessCryptoType.html
│ │ │ │ │ │ └── WirelessSecurityType.html
│ │ │ │ │ ├── CleaningPath.html
│ │ │ │ │ ├── CoercivityType.html
│ │ │ │ │ ├── CustomCard.html
│ │ │ │ │ ├── DataCharParity.html
│ │ │ │ │ ├── DataFormat.html
│ │ │ │ │ ├── DataSource.html
│ │ │ │ │ ├── ErrorControlLevel.html
│ │ │ │ │ ├── GraphicType.html
│ │ │ │ │ ├── ImageRotation.html
│ │ │ │ │ ├── IPVersion.html
│ │ │ │ │ ├── KOptimizationType.html
│ │ │ │ │ ├── LaminatorOffsetType.html
│ │ │ │ │ ├── LogType.html
│ │ │ │ │ ├── MagEncoderType.html
│ │ │ │ │ ├── MagEncodingType.html
│ │ │ │ │ ├── MediaType.html
│ │ │ │ │ ├── MonoConversionType.html
│ │ │ │ │ ├── OCPLanguage.html
│ │ │ │ │ ├── OrientationType.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ ├── PanelType.html
│ │ │ │ │ ├── PrinterType.html
│ │ │ │ │ ├── PrintOptimizationMode.html
│ │ │ │ │ ├── PrintType.html
│ │ │ │ │ ├── ReservationType.html
│ │ │ │ │ ├── RibbonPanelType.html
│ │ │ │ │ ├── SharpeningLevel.html
│ │ │ │ │ ├── SmartCardEncoderType.html
│ │ │ │ │ ├── SmartCardType.html
│ │ │ │ │ ├── Timeout.html
│ │ │ │ │ ├── TrackNumber.html
│ │ │ │ │ ├── TransferTemperatureType.html
│ │ │ │ │ ├── TransferType.html
│ │ │ │ │ ├── WirelessCryptoType.html
│ │ │ │ │ └── WirelessSecurityType.html
│ │ │ │ ├── errors
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ └── ZebraCardErrors.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── ZebraCardErrors.html
│ │ │ │ ├── exceptions
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ └── ZebraCardException.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── ZebraCardException.html
│ │ │ │ ├── graphics
│ │ │ │ │ ├── barcode
│ │ │ │ │ │ ├── BarcodeUtil.html
│ │ │ │ │ │ ├── class-use
│ │ │ │ │ │ │ ├── BarcodeUtil.html
│ │ │ │ │ │ │ ├── Code128Util.html
│ │ │ │ │ │ │ ├── Code39Util.html
│ │ │ │ │ │ │ ├── CodeCodabarUtil.html
│ │ │ │ │ │ │ ├── CodeDataMatrixUtil.html
│ │ │ │ │ │ │ ├── CodeEAN128Util.html
│ │ │ │ │ │ │ ├── CodeEANUtil.html
│ │ │ │ │ │ │ ├── CodeInterleaved2Of5Util.html
│ │ │ │ │ │ │ ├── CodePDF417Util.html
│ │ │ │ │ │ │ ├── CodePostnetUtil.html
│ │ │ │ │ │ │ ├── CodeQRUtil.html
│ │ │ │ │ │ │ └── ZebraBarcodeFactory.html
│ │ │ │ │ │ ├── Code128Util.html
│ │ │ │ │ │ ├── Code39Util.html
│ │ │ │ │ │ ├── CodeCodabarUtil.html
│ │ │ │ │ │ ├── CodeDataMatrixUtil.html
│ │ │ │ │ │ ├── CodeEAN128Util.html
│ │ │ │ │ │ ├── CodeEANUtil.html
│ │ │ │ │ │ ├── CodeInterleaved2Of5Util.html
│ │ │ │ │ │ ├── CodePDF417Util.html
│ │ │ │ │ │ ├── CodePostnetUtil.html
│ │ │ │ │ │ ├── CodeQRUtil.html
│ │ │ │ │ │ ├── enumerations
│ │ │ │ │ │ │ ├── BaselinePosition.html
│ │ │ │ │ │ │ ├── ChecksumMode.html
│ │ │ │ │ │ │ ├── class-use
│ │ │ │ │ │ │ │ ├── BaselinePosition.html
│ │ │ │ │ │ │ │ ├── ChecksumMode.html
│ │ │ │ │ │ │ │ ├── Code128CharacterSet.html
│ │ │ │ │ │ │ │ ├── ErrorCorrectionLevel.html
│ │ │ │ │ │ │ │ ├── HumanReadablePlacement.html
│ │ │ │ │ │ │ │ ├── LogicalHeight.html
│ │ │ │ │ │ │ │ ├── Rotation.html
│ │ │ │ │ │ │ │ └── SymbolShape.html
│ │ │ │ │ │ │ ├── Code128CharacterSet.html
│ │ │ │ │ │ │ ├── ErrorCorrectionLevel.html
│ │ │ │ │ │ │ ├── HumanReadablePlacement.html
│ │ │ │ │ │ │ ├── LogicalHeight.html
│ │ │ │ │ │ │ ├── package-frame.html
│ │ │ │ │ │ │ ├── package-summary.html
│ │ │ │ │ │ │ ├── package-tree.html
│ │ │ │ │ │ │ ├── package-use.html
│ │ │ │ │ │ │ ├── Rotation.html
│ │ │ │ │ │ │ └── SymbolShape.html
│ │ │ │ │ │ ├── package-frame.html
│ │ │ │ │ │ ├── package-summary.html
│ │ │ │ │ │ ├── package-tree.html
│ │ │ │ │ │ ├── package-use.html
│ │ │ │ │ │ └── ZebraBarcodeFactory.html
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── ZebraCardGraphics.html
│ │ │ │ │ │ ├── ZebraCardImageI.html
│ │ │ │ │ │ ├── ZebraGraphics.html
│ │ │ │ │ │ └── ZebraGraphicsI.html
│ │ │ │ │ ├── containers
│ │ │ │ │ │ ├── class-use
│ │ │ │ │ │ │ └── ExtractedImages.html
│ │ │ │ │ │ ├── ExtractedImages.html
│ │ │ │ │ │ ├── package-frame.html
│ │ │ │ │ │ ├── package-summary.html
│ │ │ │ │ │ ├── package-tree.html
│ │ │ │ │ │ └── package-use.html
│ │ │ │ │ ├── enumerations
│ │ │ │ │ │ ├── class-use
│ │ │ │ │ │ │ ├── ImagePosition.html
│ │ │ │ │ │ │ ├── MonochromeConversion.html
│ │ │ │ │ │ │ ├── PrinterModel.html
│ │ │ │ │ │ │ ├── RotationType.html
│ │ │ │ │ │ │ └── TextAlignment.html
│ │ │ │ │ │ ├── ImagePosition.html
│ │ │ │ │ │ ├── MonochromeConversion.html
│ │ │ │ │ │ ├── package-frame.html
│ │ │ │ │ │ ├── package-summary.html
│ │ │ │ │ │ ├── package-tree.html
│ │ │ │ │ │ ├── package-use.html
│ │ │ │ │ │ ├── PrinterModel.html
│ │ │ │ │ │ ├── RotationType.html
│ │ │ │ │ │ └── TextAlignment.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ ├── ZebraCardGraphics.html
│ │ │ │ │ ├── ZebraCardImageI.html
│ │ │ │ │ ├── ZebraGraphics.html
│ │ │ │ │ └── ZebraGraphicsI.html
│ │ │ │ ├── job
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── JobControlProvider.html
│ │ │ │ │ │ └── JobUtil.html
│ │ │ │ │ ├── JobControlProvider.html
│ │ │ │ │ ├── JobUtil.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── template
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ └── ZebraTemplate.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── ZebraTemplate.html
│ │ │ │ ├── jobSettings
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ └── ZebraCardJobSettingNames.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── ZebraCardJobSettingNames.html
│ │ │ │ ├── printer
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── ZebraCardPrinterFactory.html
│ │ │ │ │ │ ├── ZebraCardPrinter.html
│ │ │ │ │ │ ├── ZebraPrinterZmotif.html
│ │ │ │ │ │ └── ZebraPrinterZxp.html
│ │ │ │ │ ├── discovery
│ │ │ │ │ │ ├── class-use
│ │ │ │ │ │ │ ├── DiscoveryInfo.html
│ │ │ │ │ │ │ ├── NetworkCardDiscoverer.html
│ │ │ │ │ │ │ └── NetworkDiscoveryConfiguration.html
│ │ │ │ │ │ ├── DiscoveryInfo.html
│ │ │ │ │ │ ├── NetworkCardDiscoverer.html
│ │ │ │ │ │ ├── NetworkDiscoveryConfiguration.html
│ │ │ │ │ │ ├── package-frame.html
│ │ │ │ │ │ ├── package-summary.html
│ │ │ │ │ │ ├── package-tree.html
│ │ │ │ │ │ └── package-use.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ ├── ZebraCardPrinterFactory.html
│ │ │ │ │ ├── ZebraCardPrinter.html
│ │ │ │ │ ├── ZebraPrinterZmotif.html
│ │ │ │ │ └── ZebraPrinterZxp.html
│ │ │ │ ├── settings
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ └── ZebraCardSettingNames.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── ZebraCardSettingNames.html
│ │ │ │ └── template
│ │ │ │ ├── class-use
│ │ │ │ │ └── ZebraCardTemplate.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── ZebraCardTemplate.html
│ │ │ ├── device
│ │ │ │ ├── class-use
│ │ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ ├── printer
│ │ │ │ ├── CardFirmwareUpdateHandler.html
│ │ │ │ ├── CardPrinterReconnectionHandler.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── CardFirmwareUpdateHandler.html
│ │ │ │ │ └── CardPrinterReconnectionHandler.html
│ │ │ │ ├── discovery
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── DiscoveredPrinterDriver.html
│ │ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ │ ├── DiscoveredUsbPrinter.html
│ │ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ │ └── UsbDiscoverer.html
│ │ │ │ │ ├── DiscoveredPrinterDriver.html
│ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ ├── DiscoveredUsbPrinter.html
│ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── UsbDiscoverer.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── settings
│ │ │ │ ├── class-use
│ │ │ │ │ ├── Setting.html
│ │ │ │ │ └── SettingsException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Setting.html
│ │ │ │ └── SettingsException.html
│ │ │ ├── zmotif
│ │ │ │ ├── device
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── DeviceUtilZmotif.html
│ │ │ │ │ │ └── LaminatorUtilZmotif.html
│ │ │ │ │ ├── DeviceUtilZmotif.html
│ │ │ │ │ ├── LaminatorUtilZmotif.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── job
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── JobControlHelperUtilZmotif.html
│ │ │ │ │ │ ├── JobUtilZmotif.html
│ │ │ │ │ │ └── ZebraCardJobSettingNamesZmotif.html
│ │ │ │ │ ├── JobControlHelperUtilZmotif.html
│ │ │ │ │ ├── JobUtilZmotif.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── ZebraCardJobSettingNamesZmotif.html
│ │ │ │ └── settings
│ │ │ │ ├── class-use
│ │ │ │ │ ├── SettingsHelperUtilZmotif.html
│ │ │ │ │ └── ZebraCardSettingNamesZmotif.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── SettingsHelperUtilZmotif.html
│ │ │ │ └── ZebraCardSettingNamesZmotif.html
│ │ │ └── zxp
│ │ │ ├── job
│ │ │ │ ├── class-use
│ │ │ │ │ ├── JobControlHelperUtilZxp.html
│ │ │ │ │ └── ZebraCardJobSettingNamesZxp.html
│ │ │ │ ├── JobControlHelperUtilZxp.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── ZebraCardJobSettingNamesZxp.html
│ │ │ └── settings
│ │ │ ├── class-use
│ │ │ │ ├── SettingsHelperUtilZxp.html
│ │ │ │ └── ZebraCardSettingNamesZxp.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── SettingsHelperUtilZxp.html
│ │ │ └── ZebraCardSettingNamesZxp.html
│ │ ├── command_line.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── examples
│ │ │ └── test
│ │ │ └── test
│ │ │ ├── com
│ │ │ │ └── zebra
│ │ │ │ └── sdk
│ │ │ │ ├── job
│ │ │ │ │ └── examples
│ │ │ │ │ ├── Print_Mono_Example.html
│ │ │ │ │ ├── Print_YMCKO_Example.html
│ │ │ │ │ ├── Print_YMCKO_TCP_2_JOB_Example.html
│ │ │ │ │ └── Print_YMCKO_TCP_Example.html
│ │ │ │ └── settings
│ │ │ │ └── examples
│ │ │ │ └── GetSettingsExample.html
│ │ │ └── zebra
│ │ │ └── sdk
│ │ │ ├── comm
│ │ │ │ └── examples
│ │ │ │ ├── ConnectionBuilderExample.html
│ │ │ │ └── TcpConnectionExample.html
│ │ │ └── discovery
│ │ │ └── examples
│ │ │ ├── NetworkCardDiscovererExample.html
│ │ │ └── UsbDiscovererExample.html
│ │ ├── help-doc.html
│ │ ├── import_demos.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── readme.html
│ │ ├── resources
│ │ │ ├── background.gif
│ │ │ ├── tab.gif
│ │ │ ├── titlebar_end.gif
│ │ │ └── titlebar.gif
│ │ ├── serialized-form.html
│ │ ├── style.css
│ │ ├── ZebraJavaCardTemplateSpecification.pdf
│ │ ├── zebra.png
│ │ └── Zebra_SDK_EULA.pdf
│ ├── lib
│ │ ├── barcode4j.jar
│ │ ├── commons-codec-1.8.jar
│ │ ├── commons-io-2.2.jar
│ │ ├── commons-lang3-3.4.jar
│ │ ├── commons-validator-1.4.0.jar
│ │ ├── dom4j-1.6.1.jar
│ │ ├── jackson-annotations-2.2.3.jar
│ │ ├── jackson-core-2.2.3.jar
│ │ ├── jackson-databind-2.2.3.jar
│ │ ├── jaxen-1.1-beta-6.jar
│ │ ├── libusb4java-1.2.0-linux-arm.jar
│ │ ├── libusb4java-1.2.0-linux-x86_64.jar
│ │ ├── libusb4java-1.2.0-linux-x86.jar
│ │ ├── libusb4java-1.2.0-osx-x86_64.jar
│ │ ├── libusb4java-1.2.0-osx-x86.jar
│ │ ├── simple-xml-2.7.1.jar
│ │ ├── snmp4j-2.3.0.jar
│ │ ├── snmp6_1.jar
│ │ ├── usb4java-1.2.0.jar
│ │ ├── ZebraNativeUsbAdapter_32.dll
│ │ ├── ZebraNativeUsbAdapter_64.dll
│ │ ├── ZSDK_API.jar
│ │ ├── ZSDK_CARD_API.jar
│ │ └── zxing-core-1.7.jar
│ └── sdk_welcome.html
├── sdk_welcome.html
├── third_party
│ └── apache_2_0_license.txt
├── Webservices
│ └── v2.11.2800
│ ├── cert
│ │ └── ZebraCAChain.cer
│ ├── demos
│ │ ├── eclipse
│ │ │ └── ZebraWebServiceDeveloperDemo
│ │ │ ├── build.xml
│ │ │ ├── howtouse.txt
│ │ │ ├── lib
│ │ │ │ ├── commons-io-2.2.jar
│ │ │ │ ├── commons-logging-1.1.1.jar
│ │ │ │ ├── commons-net-3.1.jar
│ │ │ │ ├── commons-validator-1.4.0.jar
│ │ │ │ ├── gson-2.1.jar
│ │ │ │ ├── httpcore-4.3.1.jar
│ │ │ │ ├── httpmime-4.3.2.jar
│ │ │ │ ├── jackson-annotations-2.2.3.jar
│ │ │ │ ├── jackson-core-2.2.3.jar
│ │ │ │ ├── jackson-databind-2.2.3.jar
│ │ │ │ ├── jstl-1.2.jar
│ │ │ │ ├── log4j-1.2.16.jar
│ │ │ │ ├── opencsv-2.2.jar
│ │ │ │ ├── snmp6_1.jar
│ │ │ │ ├── spring-aop-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-asm-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-beans-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-context-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-context-support-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-core-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-expression-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-security-config-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-security-core-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-security-web-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-tx-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-web-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-webmvc-3.1.2.RELEASE.jar
│ │ │ │ └── ZSDK_API.jar
│ │ │ ├── lib_tomcat
│ │ │ │ ├── tomcat-catalina-7.0.33.jar
│ │ │ │ ├── tomcat-coyote-7.0.33.jar
│ │ │ │ └── tomcat-servlet-api-7.0.33.jar
│ │ │ ├── src
│ │ │ │ └── com
│ │ │ │ └── zebra
│ │ │ │ └── devdemo
│ │ │ │ └── webservices
│ │ │ │ ├── PrintConfig.java
│ │ │ │ ├── SlimDiscoPrinter.java
│ │ │ │ └── WebServicesDevDemo.java
│ │ │ └── WebContent
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── resources
│ │ │ │ └── scripts
│ │ │ │ └── jquery-1.8.0.js
│ │ │ └── WEB-INF
│ │ │ ├── devdemo.jsp
│ │ │ ├── index.jsp
│ │ │ ├── lib
│ │ │ │ ├── commons-io-2.2.jar
│ │ │ │ ├── commons-logging-1.1.1.jar
│ │ │ │ ├── commons-net-3.1.jar
│ │ │ │ ├── commons-validator-1.4.0.jar
│ │ │ │ ├── gson-2.1.jar
│ │ │ │ ├── httpcore-4.3.1.jar
│ │ │ │ ├── httpmime-4.3.2.jar
│ │ │ │ ├── jackson-annotations-2.2.3.jar
│ │ │ │ ├── jackson-core-2.2.3.jar
│ │ │ │ ├── jackson-databind-2.2.3.jar
│ │ │ │ ├── jstl-1.2.jar
│ │ │ │ ├── log4j-1.2.16.jar
│ │ │ │ ├── opencsv-2.2.jar
│ │ │ │ ├── snmp6_1.jar
│ │ │ │ ├── spring-aop-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-asm-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-beans-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-context-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-context-support-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-core-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-expression-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-security-config-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-security-core-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-security-web-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-tx-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-web-3.1.2.RELEASE.jar
│ │ │ │ ├── spring-webmvc-3.1.2.RELEASE.jar
│ │ │ │ └── ZSDK_API.jar
│ │ │ └── web.xml
│ │ └── release
│ │ └── ZebraWebServicesDeveloperDemo.war
│ ├── documentation
│ │ ├── add_library.html
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com
│ │ │ └── zebra
│ │ │ └── sdk
│ │ │ ├── certificate
│ │ │ │ ├── CertificateParser.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── CertificateParser.html
│ │ │ │ │ ├── ZebraCertificateException.html
│ │ │ │ │ ├── ZebraCertificateInfo.html
│ │ │ │ │ └── ZebraP12Info.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ZebraCertificateException.html
│ │ │ │ ├── ZebraCertificateInfo.html
│ │ │ │ └── ZebraP12Info.html
│ │ │ ├── comm
│ │ │ │ ├── class-use
│ │ │ │ │ ├── ConnectionA.html
│ │ │ │ │ ├── ConnectionBuilder.html
│ │ │ │ │ ├── ConnectionException.html
│ │ │ │ │ ├── Connection.html
│ │ │ │ │ ├── ConnectionReestablisher.html
│ │ │ │ │ ├── ConnectionStatusA.html
│ │ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ │ ├── DriverPrinterConnection.html
│ │ │ │ │ ├── IpAddressable.html
│ │ │ │ │ ├── LogStreamException.html
│ │ │ │ │ ├── MultichannelConnection.html
│ │ │ │ │ ├── MultichannelTcpConnection.html
│ │ │ │ │ ├── ResponseValidator.html
│ │ │ │ │ ├── StatusConnection.html
│ │ │ │ │ ├── StatusConnectionWithWriteLogging.html
│ │ │ │ │ ├── TcpConnection.html
│ │ │ │ │ ├── TcpStatusConnection.html
│ │ │ │ │ ├── UsbConnection.html
│ │ │ │ │ └── UsbNativeCodeConnectionException.html
│ │ │ │ ├── ConnectionA.html
│ │ │ │ ├── ConnectionBuilder.html
│ │ │ │ ├── ConnectionException.html
│ │ │ │ ├── Connection.html
│ │ │ │ ├── ConnectionReestablisher.html
│ │ │ │ ├── ConnectionStatusA.html
│ │ │ │ ├── ConnectionWithWriteLogging.html
│ │ │ │ ├── DriverPrinterConnection.html
│ │ │ │ ├── IpAddressable.html
│ │ │ │ ├── LogStreamException.html
│ │ │ │ ├── MultichannelConnection.html
│ │ │ │ ├── MultichannelTcpConnection.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ResponseValidator.html
│ │ │ │ ├── StatusConnection.html
│ │ │ │ ├── StatusConnectionWithWriteLogging.html
│ │ │ │ ├── TcpConnection.html
│ │ │ │ ├── TcpStatusConnection.html
│ │ │ │ ├── UsbConnection.html
│ │ │ │ └── UsbNativeCodeConnectionException.html
│ │ │ ├── device
│ │ │ │ ├── class-use
│ │ │ │ │ ├── Device.html
│ │ │ │ │ ├── FileUtil.html
│ │ │ │ │ ├── FileUtilLinkOs.html
│ │ │ │ │ ├── MagCardReaderFactory.html
│ │ │ │ │ ├── MagCardReader.html
│ │ │ │ │ ├── Profile.html
│ │ │ │ │ ├── ProfileToMirrorServer.html
│ │ │ │ │ ├── ProgressMonitor.html
│ │ │ │ │ ├── SmartcardReaderFactory.html
│ │ │ │ │ ├── SmartcardReader.html
│ │ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ │ ├── Device.html
│ │ │ │ ├── FileUtil.html
│ │ │ │ ├── FileUtilLinkOs.html
│ │ │ │ ├── MagCardReaderFactory.html
│ │ │ │ ├── MagCardReader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Profile.html
│ │ │ │ ├── ProfileToMirrorServer.html
│ │ │ │ ├── ProgressMonitor.html
│ │ │ │ ├── SmartcardReaderFactory.html
│ │ │ │ ├── SmartcardReader.html
│ │ │ │ └── ZebraIllegalArgumentException.html
│ │ │ ├── graphics
│ │ │ │ ├── class-use
│ │ │ │ │ ├── ZebraImageFactory.html
│ │ │ │ │ └── ZebraImageI.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── ZebraImageFactory.html
│ │ │ │ └── ZebraImageI.html
│ │ │ ├── printer
│ │ │ │ ├── AlertProvider.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AlertProvider.html
│ │ │ │ │ ├── CsvPrinter.html
│ │ │ │ │ ├── DriveType.html
│ │ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ │ ├── FileDeletionOption.html
│ │ │ │ │ ├── FirmwareUpdateHandlerBase.html
│ │ │ │ │ ├── FirmwareUpdateHandler.html
│ │ │ │ │ ├── FirmwareUpdaterLinkOs.html
│ │ │ │ │ ├── FontConverterZpl.html
│ │ │ │ │ ├── FontUtil.html
│ │ │ │ │ ├── FormatUtil.html
│ │ │ │ │ ├── FormatUtilLinkOs.html
│ │ │ │ │ ├── GraphicsUtil.html
│ │ │ │ │ ├── LinkOsInformation.html
│ │ │ │ │ ├── NotALinkOsPrinterException.html
│ │ │ │ │ ├── PrinterAlert.html
│ │ │ │ │ ├── PrinterLanguage.html
│ │ │ │ │ ├── PrinterObjectProperties.html
│ │ │ │ │ ├── PrinterReconnectionHandler.html
│ │ │ │ │ ├── PrinterStatus.html
│ │ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ │ ├── PrinterUtil.html
│ │ │ │ │ ├── ProfileUtil.html
│ │ │ │ │ ├── SettingsSetter.html
│ │ │ │ │ ├── SGD.html
│ │ │ │ │ ├── SnmpException.html
│ │ │ │ │ ├── SnmpPrinter.html
│ │ │ │ │ ├── StorageInfo.html
│ │ │ │ │ ├── TcpPortStatus.html
│ │ │ │ │ ├── ToolsUtil.html
│ │ │ │ │ ├── ToolsUtilLinkOs.html
│ │ │ │ │ ├── XmlPrinter.html
│ │ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ │ ├── ZebraPrinter.html
│ │ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ │ ├── ZebraPrinterLinkOs.html
│ │ │ │ │ └── ZplPrintMode.html
│ │ │ │ ├── CsvPrinter.html
│ │ │ │ ├── discovery
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── DiscoveredPrinterDriver.html
│ │ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ │ ├── DiscoveredUsbPrinter.html
│ │ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ │ ├── DiscoveryHandlerLinkOsOnly.html
│ │ │ │ │ │ ├── DiscoveryPacketDecodeException.html
│ │ │ │ │ │ ├── DiscoveryUtil.html
│ │ │ │ │ │ ├── NetworkDiscoverer.html
│ │ │ │ │ │ └── UsbDiscoverer.html
│ │ │ │ │ ├── DiscoveredPrinterDriver.html
│ │ │ │ │ ├── DiscoveredPrinter.html
│ │ │ │ │ ├── DiscoveredPrinterNetwork.html
│ │ │ │ │ ├── DiscoveredUsbPrinter.html
│ │ │ │ │ ├── DiscoveryException.html
│ │ │ │ │ ├── DiscoveryHandler.html
│ │ │ │ │ ├── DiscoveryHandlerLinkOsOnly.html
│ │ │ │ │ ├── DiscoveryPacketDecodeException.html
│ │ │ │ │ ├── DiscoveryUtil.html
│ │ │ │ │ ├── NetworkDiscoverer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ └── UsbDiscoverer.html
│ │ │ │ ├── DriveType.html
│ │ │ │ ├── FieldDescriptionData.html
│ │ │ │ ├── FileDeletionOption.html
│ │ │ │ ├── FirmwareUpdateHandlerBase.html
│ │ │ │ ├── FirmwareUpdateHandler.html
│ │ │ │ ├── FirmwareUpdaterLinkOs.html
│ │ │ │ ├── FontConverterZpl.html
│ │ │ │ ├── FontUtil.html
│ │ │ │ ├── FormatUtil.html
│ │ │ │ ├── FormatUtilLinkOs.html
│ │ │ │ ├── GraphicsUtil.html
│ │ │ │ ├── LinkOsInformation.html
│ │ │ │ ├── NotALinkOsPrinterException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── PrinterAlert.html
│ │ │ │ ├── PrinterLanguage.html
│ │ │ │ ├── PrinterObjectProperties.html
│ │ │ │ ├── PrinterReconnectionHandler.html
│ │ │ │ ├── PrinterStatus.html
│ │ │ │ ├── PrinterStatusMessages.html
│ │ │ │ ├── PrinterUtil.html
│ │ │ │ ├── ProfileUtil.html
│ │ │ │ ├── SettingsSetter.html
│ │ │ │ ├── SGD.html
│ │ │ │ ├── SnmpException.html
│ │ │ │ ├── SnmpPrinter.html
│ │ │ │ ├── StorageInfo.html
│ │ │ │ ├── TcpPortStatus.html
│ │ │ │ ├── ToolsUtil.html
│ │ │ │ ├── ToolsUtilLinkOs.html
│ │ │ │ ├── XmlPrinter.html
│ │ │ │ ├── ZebraPrinterFactory.html
│ │ │ │ ├── ZebraPrinter.html
│ │ │ │ ├── ZebraPrinterLanguageUnknownException.html
│ │ │ │ ├── ZebraPrinterLinkOs.html
│ │ │ │ └── ZplPrintMode.html
│ │ │ ├── remote
│ │ │ │ ├── comm
│ │ │ │ │ ├── AlertMonitorBase.html
│ │ │ │ │ ├── AlertMonitorI.html
│ │ │ │ │ ├── class-use
│ │ │ │ │ │ ├── AlertMonitorBase.html
│ │ │ │ │ │ ├── AlertMonitorI.html
│ │ │ │ │ │ ├── MultichannelRemoteConnection.html
│ │ │ │ │ │ ├── RemoteConnection.html
│ │ │ │ │ │ └── RemoteStatusConnection.html
│ │ │ │ │ ├── MultichannelRemoteConnection.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ ├── package-use.html
│ │ │ │ │ ├── RemoteConnection.html
│ │ │ │ │ └── RemoteStatusConnection.html
│ │ │ │ └── discovery
│ │ │ │ ├── class-use
│ │ │ │ │ ├── ConnectionHandlerBase.html
│ │ │ │ │ ├── ConnectionHandlerI.html
│ │ │ │ │ └── RemoteDiscoverer.html
│ │ │ │ ├── ConnectionHandlerBase.html
│ │ │ │ ├── ConnectionHandlerI.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── RemoteDiscoverer.html
│ │ │ ├── settings
│ │ │ │ ├── AlertCondition.html
│ │ │ │ ├── AlertDestination.html
│ │ │ │ ├── class-use
│ │ │ │ │ ├── AlertCondition.html
│ │ │ │ │ ├── AlertDestination.html
│ │ │ │ │ ├── Setting.html
│ │ │ │ │ ├── SettingsException.html
│ │ │ │ │ ├── SettingsProvider.html
│ │ │ │ │ ├── SettingsRanges.html
│ │ │ │ │ └── SettingsValues.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ ├── Setting.html
│ │ │ │ ├── SettingsException.html
│ │ │ │ ├── SettingsProvider.html
│ │ │ │ ├── SettingsRanges.html
│ │ │ │ └── SettingsValues.html
│ │ │ └── weblink
│ │ │ ├── class-use
│ │ │ │ ├── ConfigurationStatus.html
│ │ │ │ ├── WeblinkAddressStrategy.html
│ │ │ │ ├── WeblinkConfigurationState.html
│ │ │ │ ├── WeblinkConfigurationStateUpdater.html
│ │ │ │ ├── WeblinkConfigurator.html
│ │ │ │ └── ZebraWeblinkException.html
│ │ │ ├── ConfigurationStatus.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── WeblinkAddressStrategy.html
│ │ │ ├── WeblinkConfigurationState.html
│ │ │ ├── WeblinkConfigurationStateUpdater.html
│ │ │ ├── WeblinkConfigurator.html
│ │ │ └── ZebraWeblinkException.html
│ │ ├── command_line.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── import_demos.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── readme.html
│ │ ├── readme.txt
│ │ ├── resources
│ │ │ ├── background.gif
│ │ │ ├── tab.gif
│ │ │ ├── titlebar_end.gif
│ │ │ └── titlebar.gif
│ │ ├── serialized-form.html
│ │ ├── style.css
│ │ ├── zebra.png
│ │ └── Zebra_SDK_EULA.pdf
│ ├── lib
│ │ └── zebra.war
│ └── sdk_welcome.html
├── windows_mobile_ce
│ └── v1.1.123
│ ├── demos
│ │ ├── release
│ │ │ └── ZSDKDemos.CAB
│ │ └── src
│ │ └── vs2008_solution
│ │ ├── DeveloperDemosCSharp
│ │ │ ├── ClassDiagram1.cd
│ │ │ ├── ConnectionPanel.cs
│ │ │ ├── ConnectionPanel.Designer.cs
│ │ │ ├── ConnectionPanel.resx
│ │ │ ├── ConnectivityDemoForm.cs
│ │ │ ├── ConnectivityDemoForm.Designer.cs
│ │ │ ├── ConnectivityDemoForm.resx
│ │ │ ├── Developer Demo.csproj
│ │ │ ├── Developer Demo.csproj.user
│ │ │ ├── DeveloperDemoForm.cs
│ │ │ ├── DeveloperDemoForm.Designer.cs
│ │ │ ├── DeveloperDemoForm.resx
│ │ │ ├── DiscoveryDemoForm.cs
│ │ │ ├── DiscoveryDemoForm.Designer.cs
│ │ │ ├── DiscoveryDemoForm.resx
│ │ │ ├── ImagePrintDemoForm.cs
│ │ │ ├── ImagePrintDemoForm.Designer.cs
│ │ │ ├── ImagePrintDemoForm.resx
│ │ │ ├── ListFormatsDemoForm.cs
│ │ │ ├── ListFormatsDemoForm.Designer.cs
│ │ │ ├── ListFormatsDemoForm.resx
│ │ │ ├── MagCardDemoForm.cs
│ │ │ ├── MagCardDemoForm.Designer.cs
│ │ │ ├── MagCardDemoForm.resx
│ │ │ ├── PrinterStatusDemoForm.cs
│ │ │ ├── PrinterStatusDemoForm.Designer.cs
│ │ │ ├── PrinterStatusDemoForm.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ └── Resources.resx
│ │ │ ├── README.txt
│ │ │ ├── SendFileDemoForm.cs
│ │ │ ├── SendFileDemoForm.Designer.cs
│ │ │ ├── SendFileDemoForm.resx
│ │ │ ├── SignatureCaptureDemoForm.cs
│ │ │ ├── SignatureCaptureDemoForm.Designer.cs
│ │ │ ├── SignatureCaptureDemoForm.resx
│ │ │ ├── SmartCardDemoForm.cs
│ │ │ ├── SmartCardDemoForm.Designer.cs
│ │ │ ├── SmartCardDemoForm.resx
│ │ │ ├── StoredFormatDemoForm.cs
│ │ │ ├── StoredFormatDemoForm.Designer.cs
│ │ │ ├── StoredFormatDemoForm.resx
│ │ │ ├── ZebraBluetoothAdapter.dll
│ │ │ ├── ZebraForm.cs
│ │ │ └── ZSDK_API.dll
│ │ ├── Developer Demo.sln
│ │ ├── DeveloperDemosVisualBasic
│ │ │ ├── ConnectionPanel.Designer.vb
│ │ │ ├── ConnectionPanel.vb
│ │ │ ├── ConnectivityDemoForm.Designer.vb
│ │ │ ├── ConnectivityDemoForm.vb
│ │ │ ├── DeveloperDemoForm.Designer.vb
│ │ │ ├── DeveloperDemoForm.vb
│ │ │ ├── DiscoveryDemoForm.Designer.vb
│ │ │ ├── DiscoveryDemoForm.vb
│ │ │ ├── ImagePrintDemoForm.Designer.vb
│ │ │ ├── ImagePrintDemoForm.vb
│ │ │ ├── ListFormatsDemoForm.Designer.vb
│ │ │ ├── ListFormatsDemoForm.vb
│ │ │ ├── MagCardDemoForm.Designer.vb
│ │ │ ├── MagCardDemoForm.vb
│ │ │ ├── My Project
│ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ ├── Resources.Designer.vb
│ │ │ │ └── Resources.resx
│ │ │ ├── PrinterStatusDemoForm.Designer.vb
│ │ │ ├── PrinterStatusDemoForm.vb
│ │ │ ├── README.txt
│ │ │ ├── SendFileDemoForm.Designer.vb
│ │ │ ├── SendFileDemoForm.vb
│ │ │ ├── SignatureCaptureDemoForm.Designer.vb
│ │ │ ├── SignatureCaptureDemoForm.vb
│ │ │ ├── SmartCardDemoForm.Designer.vb
│ │ │ ├── SmartCardDemoForm.vb
│ │ │ ├── StoredFormatDemoForm.Designer.vb
│ │ │ ├── StoredFormatDemoForm.vb
│ │ │ ├── VbDevDemos.vbproj
│ │ │ ├── VbDevDemos.vbproj.user
│ │ │ ├── ZebraBluetoothAdapter.dll
│ │ │ ├── ZebraForm.vb
│ │ │ └── ZSDK_API.dll
│ │ └── VbDevDemos.sln
│ ├── documentation
│ │ └── ZSDK_API.chm
│ ├── lib
│ │ ├── ZebraBluetoothAdapter.dll
│ │ ├── ZebraPlatformUtil.dll
│ │ ├── ZebraUsb.dll
│ │ └── ZSDK_API.dll
│ ├── readme.html
│ ├── third_party
│ │ ├── 32feet.NET_Download_EULA.txt
│ │ ├── 32feet.NET_Install_EULA.txt
│ │ └── InTheHand.Net.Personal.dll
│ ├── Zebra_SDK_EULA.pdf
│ └── zebra_utilities
│ └── release
│ └── ZebraUtilities.CAB
├── xamarin
│ └── v1.1.75
│ ├── demos
│ │ ├── release
│ │ │ └── com.zebra.Xamarin_LinkOS_Developer_Demo-Signed.apk
│ │ └── src
│ │ └── Xamarin_LinkOS_Developer_Demo
│ │ ├── packages
│ │ │ ├── LinkOS_Xamarin_SDK.1.1.74
│ │ │ │ ├── lib
│ │ │ │ │ ├── LinkOS.Plugin.Abstractions.dll
│ │ │ │ │ ├── LinkOS.Plugin.Abstractions.pdb
│ │ │ │ │ ├── LinkOS.Plugin.Abstractions.xml
│ │ │ │ │ ├── LinkOS.Plugin.dll
│ │ │ │ │ ├── LinkOS.Plugin.XML
│ │ │ │ │ ├── MonoAndroid
│ │ │ │ │ │ ├── LinkOS.Plugin.Abstractions.dll
│ │ │ │ │ │ ├── LinkOS.Plugin.Abstractions.xml
│ │ │ │ │ │ ├── LinkOS.Plugin.dll
│ │ │ │ │ │ ├── LinkOS.Plugin.dll.mdb
│ │ │ │ │ │ ├── LinkOS.Plugin.pdb
│ │ │ │ │ │ ├── LinkOS.Plugin.XML
│ │ │ │ │ │ ├── ZSDK_ANDROIDX.dll
│ │ │ │ │ │ ├── ZSDK_ANDROIDX.dll.mdb
│ │ │ │ │ │ └── ZSDK_ANDROIDX.pdb
│ │ │ │ │ └── Xamarin.iOS10
│ │ │ │ │ ├── LinkOS.Plugin.Abstractions.dll
│ │ │ │ │ ├── LinkOS.Plugin.Abstractions.xml
│ │ │ │ │ ├── LinkOS.Plugin.dll
│ │ │ │ │ ├── LinkOS.Plugin.XML
│ │ │ │ │ ├── zsdk_iosx.dll
│ │ │ │ │ └── zsdk_iosx.pdb
│ │ │ │ └── LinkOS_Xamarin_SDK.1.1.74.nupkg
│ │ │ ├── repositories.config
│ │ │ ├── Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0
│ │ │ │ ├── lib
│ │ │ │ │ └── MonoAndroid403
│ │ │ │ │ └── Xamarin.Android.Support.Animated.Vector.Drawable.dll
│ │ │ │ └── Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0.nupkg
│ │ │ ├── Xamarin.Android.Support.Design.23.3.0
│ │ │ │ ├── lib
│ │ │ │ │ └── MonoAndroid43
│ │ │ │ │ └── Xamarin.Android.Support.Design.dll
│ │ │ │ └── Xamarin.Android.Support.Design.23.3.0.nupkg
│ │ │ ├── Xamarin.Android.Support.v4.23.3.0
│ │ │ │ ├── lib
│ │ │ │ │ └── MonoAndroid403
│ │ │ │ │ └── Xamarin.Android.Support.v4.dll
│ │ │ │ └── Xamarin.Android.Support.v4.23.3.0.nupkg
│ │ │ ├── Xamarin.Android.Support.v7.AppCompat.23.3.0
│ │ │ │ ├── lib
│ │ │ │ │ └── MonoAndroid403
│ │ │ │ │ └── Xamarin.Android.Support.v7.AppCompat.dll
│ │ │ │ └── Xamarin.Android.Support.v7.AppCompat.23.3.0.nupkg
│ │ │ ├── Xamarin.Android.Support.v7.CardView.23.3.0
│ │ │ │ ├── lib
│ │ │ │ │ └── MonoAndroid403
│ │ │ │ │ └── Xamarin.Android.Support.v7.CardView.dll
│ │ │ │ └── Xamarin.Android.Support.v7.CardView.23.3.0.nupkg
│ │ │ ├── Xamarin.Android.Support.v7.MediaRouter.23.3.0
│ │ │ │ ├── lib
│ │ │ │ │ └── MonoAndroid403
│ │ │ │ │ └── Xamarin.Android.Support.v7.MediaRouter.dll
│ │ │ │ └── Xamarin.Android.Support.v7.MediaRouter.23.3.0.nupkg
│ │ │ ├── Xamarin.Android.Support.v7.RecyclerView.23.3.0
│ │ │ │ ├── lib
│ │ │ │ │ └── MonoAndroid403
│ │ │ │ │ └── Xamarin.Android.Support.v7.RecyclerView.dll
│ │ │ │ └── Xamarin.Android.Support.v7.RecyclerView.23.3.0.nupkg
│ │ │ ├── Xamarin.Android.Support.Vector.Drawable.23.3.0
│ │ │ │ ├── build
│ │ │ │ │ ├── Xamarin.Android.Support.Tasks.VectorDrawable.dll
│ │ │ │ │ └── Xamarin.Android.Support.Vector.Drawable.targets
│ │ │ │ ├── lib
│ │ │ │ │ └── MonoAndroid403
│ │ │ │ │ └── Xamarin.Android.Support.Vector.Drawable.dll
│ │ │ │ └── Xamarin.Android.Support.Vector.Drawable.23.3.0.nupkg
│ │ │ └── Xamarin.Forms.2.2.0.31
│ │ │ ├── build
│ │ │ │ └── portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10
│ │ │ │ ├── ICSharpCode.Decompiler.dll
│ │ │ │ ├── ICSharpCode.NRefactory.Cecil.dll
│ │ │ │ ├── ICSharpCode.NRefactory.CSharp.dll
│ │ │ │ ├── ICSharpCode.NRefactory.dll
│ │ │ │ ├── ICSharpCode.NRefactory.Xml.dll
│ │ │ │ ├── Mono.Cecil.dll
│ │ │ │ ├── Mono.Cecil.Mdb.dll
│ │ │ │ ├── Mono.Cecil.Pdb.dll
│ │ │ │ ├── Mono.Cecil.Rocks.dll
│ │ │ │ ├── Xamarin.Forms.Build.Tasks.dll
│ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ ├── Xamarin.Forms.targets
│ │ │ │ └── Xamarin.Forms.Xaml.dll
│ │ │ ├── lib
│ │ │ │ ├── MonoAndroid10
│ │ │ │ │ ├── Design
│ │ │ │ │ │ ├── Xamarin.Forms.Core.Design.dll
│ │ │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll
│ │ │ │ │ ├── FormsViewGroup.dll
│ │ │ │ │ ├── FormsViewGroup.dll.mdb
│ │ │ │ │ ├── FormsViewGroup.pdb
│ │ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.dll.mdb
│ │ │ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ │ │ ├── Xamarin.Forms.Core.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.Android.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.Android.dll.mdb
│ │ │ │ │ ├── Xamarin.Forms.Platform.Android.pdb
│ │ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll.mdb
│ │ │ │ │ ├── Xamarin.Forms.Xaml.pdb
│ │ │ │ │ └── Xamarin.Forms.Xaml.xml
│ │ │ │ ├── MonoTouch10
│ │ │ │ │ ├── ar
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── ca
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── cs
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── da
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── de
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── Design
│ │ │ │ │ │ ├── Xamarin.Forms.Core.Design.dll
│ │ │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll
│ │ │ │ │ ├── el
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── es
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── fi
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── fr
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── he
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── hi
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── hr
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── hu
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── id
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── it
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── ja
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── ko
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── ms
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── nb
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── nl
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── pl
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── pt
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── pt-BR
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── ro
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── ru
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── sk
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── sv
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── th
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── tr
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── uk
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── vi
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ │ │ ├── Xamarin.Forms.Core.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.iOS.Classic.dll
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ │ ├── Xamarin.Forms.Xaml.pdb
│ │ │ │ │ ├── Xamarin.Forms.Xaml.xml
│ │ │ │ │ ├── zh-Hans
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ ├── zh-Hant
│ │ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ │ └── zh-HK
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.Classic.resources.dll
│ │ │ │ ├── portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10
│ │ │ │ │ ├── Design
│ │ │ │ │ │ ├── Xamarin.Forms.Core.Design.dll
│ │ │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ │ │ ├── Xamarin.Forms.Core.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.pdb
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ │ ├── Xamarin.Forms.Xaml.pdb
│ │ │ │ │ └── Xamarin.Forms.Xaml.xml
│ │ │ │ ├── uap10.0
│ │ │ │ │ ├── Design
│ │ │ │ │ │ ├── Xamarin.Forms.Core.Design.dll
│ │ │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.UAP
│ │ │ │ │ │ ├── FormsTextBoxStyle.xbf
│ │ │ │ │ │ ├── PageControl.xbf
│ │ │ │ │ │ ├── Properties
│ │ │ │ │ │ │ └── Xamarin.Forms.Platform.UAP.rd.xml
│ │ │ │ │ │ ├── Resources.xbf
│ │ │ │ │ │ └── Xamarin.Forms.Platform.UAP.xr.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.UAP.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.UAP.pri
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ │ └── Xamarin.Forms.Xaml.xml
│ │ │ │ ├── win81
│ │ │ │ │ ├── Design
│ │ │ │ │ │ ├── Xamarin.Forms.Core.Design.dll
│ │ │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT
│ │ │ │ │ │ ├── PageControl.xbf
│ │ │ │ │ │ ├── StepperControl.xbf
│ │ │ │ │ │ └── Xamarin.Forms.Platform.WinRT.xr.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.pri
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.Tablet
│ │ │ │ │ │ ├── FormsTextBoxStyle.xbf
│ │ │ │ │ │ ├── Resources.xbf
│ │ │ │ │ │ ├── TabletResources.xbf
│ │ │ │ │ │ └── Xamarin.Forms.Platform.WinRT.Tablet.xr.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.Tablet.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.Tablet.pri
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ │ └── Xamarin.Forms.Xaml.xml
│ │ │ │ ├── WP80
│ │ │ │ │ ├── Design
│ │ │ │ │ │ ├── Xamarin.Forms.Core.Design.dll
│ │ │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ │ │ ├── Xamarin.Forms.Core.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.WP8.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.WP8.pdb
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ │ ├── Xamarin.Forms.Xaml.pdb
│ │ │ │ │ └── Xamarin.Forms.Xaml.xml
│ │ │ │ ├── wpa81
│ │ │ │ │ ├── Design
│ │ │ │ │ │ ├── Xamarin.Forms.Core.Design.dll
│ │ │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT
│ │ │ │ │ │ ├── PageControl.xbf
│ │ │ │ │ │ ├── StepperControl.xbf
│ │ │ │ │ │ └── Xamarin.Forms.Platform.WinRT.xr.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.Phone
│ │ │ │ │ │ ├── FormsTextBoxStyle.xbf
│ │ │ │ │ │ ├── PhoneResources.xbf
│ │ │ │ │ │ ├── Resources.xbf
│ │ │ │ │ │ ├── SearchBox.xbf
│ │ │ │ │ │ └── Xamarin.Forms.Platform.WinRT.Phone.xr.xml
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.Phone.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.Phone.pri
│ │ │ │ │ ├── Xamarin.Forms.Platform.WinRT.pri
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ │ └── Xamarin.Forms.Xaml.xml
│ │ │ │ └── Xamarin.iOS10
│ │ │ │ ├── ar
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── ca
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── cs
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── da
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── de
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── Design
│ │ │ │ │ ├── Xamarin.Forms.Core.Design.dll
│ │ │ │ │ └── Xamarin.Forms.Xaml.Design.dll
│ │ │ │ ├── el
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── es
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── fi
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── fr
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── he
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── hi
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── hr
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── hu
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── id
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── it
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── ja
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── ko
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── ms
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── nb
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── nl
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── pl
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── pt
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── pt-BR
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── ro
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── ru
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── sk
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── sv
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── th
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── tr
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── uk
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── vi
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ │ ├── Xamarin.Forms.Core.xml
│ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ ├── Xamarin.Forms.Platform.iOS.dll
│ │ │ │ ├── Xamarin.Forms.Platform.iOS.pdb
│ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ ├── Xamarin.Forms.Xaml.pdb
│ │ │ │ ├── Xamarin.Forms.Xaml.xml
│ │ │ │ ├── zh-Hans
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ ├── zh-Hant
│ │ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ │ └── zh-HK
│ │ │ │ └── Xamarin.Forms.Platform.iOS.resources.dll
│ │ │ └── Xamarin.Forms.2.2.0.31.nupkg
│ │ ├── Xamarin_LinkOS_Developer_Demo
│ │ │ ├── Xamarin_LinkOS_Developer_Demo
│ │ │ │ ├── App.cs
│ │ │ │ ├── BaseDemoView.cs
│ │ │ │ ├── FormatDemoCarousel.cs
│ │ │ │ ├── FormatDemoView.cs
│ │ │ │ ├── FormatView.cs
│ │ │ │ ├── IFileUtil.cs
│ │ │ │ ├── IPrinterDiscovery.cs
│ │ │ │ ├── LineDemoView.cs
│ │ │ │ ├── MainNavigation.cs
│ │ │ │ ├── packages.config
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── SelectPrinterView.cs
│ │ │ │ ├── StatusDemoView.cs
│ │ │ │ ├── TabbedDemoPage.cs
│ │ │ │ └── Xamarin_LinkOS_Developer_Demo.csproj
│ │ │ ├── Xamarin_LinkOS_Developer_Demo.Droid
│ │ │ │ ├── Assets
│ │ │ │ │ └── AboutAssets.txt
│ │ │ │ ├── FileUtilImplementation.cs
│ │ │ │ ├── MainActivity.cs
│ │ │ │ ├── packages.config
│ │ │ │ ├── PrinterDiscoveryImplementation.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Resources
│ │ │ │ │ ├── AboutResources.txt
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── Resource.Designer.cs
│ │ │ │ ├── Xamarin_LinkOS_Developer_Demo.Droid.csproj
│ │ │ │ └── Xamarin_LinkOS_Developer_Demo.Droid.csproj.user
│ │ │ └── Xamarin_LinkOS_Developer_Demo.iOS
│ │ │ ├── AppDelegate.cs
│ │ │ ├── Entitlements.plist
│ │ │ ├── FileUtilImplementation.cs
│ │ │ ├── Info.plist
│ │ │ ├── iTunesArtwork
│ │ │ ├── iTunesArtwork@2x
│ │ │ ├── Main.cs
│ │ │ ├── packages.config
│ │ │ ├── PrinterDiscoveryImplementation.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Resources
│ │ │ │ ├── Default@2x.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default.png
│ │ │ │ ├── Default-Portrait@2x.png
│ │ │ │ ├── Default-Portrait.png
│ │ │ │ ├── Icon-60@2x.png
│ │ │ │ ├── Icon-60@3x.png
│ │ │ │ ├── Icon-72@2x.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── Icon-76@2x.png
│ │ │ │ ├── Icon-76.png
│ │ │ │ ├── Icon.png
│ │ │ │ ├── Icon-Small@2x.png
│ │ │ │ ├── Icon-Small@3x.png
│ │ │ │ ├── Icon-Small-40@2x.png
│ │ │ │ ├── Icon-Small-40@3x.png
│ │ │ │ ├── Icon-Small-40.png
│ │ │ │ ├── Icon-Small.png
│ │ │ │ └── LaunchScreen.storyboard
│ │ │ └── Xamarin_LinkOS_Developer_Demo.iOS.csproj
│ │ └── Xamarin_LinkOS_Developer_Demo.sln
│ ├── documentation
│ │ └── html
│ │ ├── annotated_dup.js
│ │ ├── annotated.html
│ │ ├── arrowdown.png
│ │ ├── arrowright.png
│ │ ├── bc_s.png
│ │ ├── bdwn.png
│ │ ├── classes.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_bluetooth_discoverer.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_bluetooth_discoverer_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_bluetooth_discoverer_implementation.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_bluetooth_discoverer_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_bluetooth_discoverer_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_bluetooth_discoverer-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_builder.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_builder_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_builder_implementation.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_builder_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_builder_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_builder-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_implementation.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_connection-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_bluetooth_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_bluetooth_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_bluetooth_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_implementation.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_network_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_network_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovered_printer_network_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovery_handler.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovery_handler.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_discovery_handler-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_field_description.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_field_description.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_field_description-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_field_description.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_network_discoverer.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_network_discoverer_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_network_discoverer_implementation.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_network_discoverer_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_network_discoverer_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_network_discoverer-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_printer_status.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_printer_status_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_printer_status_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_printer_status_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_printer_status-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_printer_util.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_printer_util-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_usb_discoverer.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_usb_discoverer-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_factory.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_factory_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_factory_implementation.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_factory_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_factory_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_factory-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_implementation.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_implementation.js
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_implementation-members.html
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer_implementation.png
│ │ ├── class_link_o_s_1_1_plugin_1_1_zebra_printer-members.html
│ │ ├── closed.png
│ │ ├── dir_037630d7e7b26499a3615690bb4514fb.html
│ │ ├── dir_0a16000165bcb001d9350333fede572a.html
│ │ ├── dir_4ebf0aa5d49ebe6239258c78ff88fa0f.html
│ │ ├── dir_5834f4fe1afb5fceb6974679be9101ba.html
│ │ ├── dir_592075c3276c2831038d5c63cbe98b44.html
│ │ ├── dir_64da1a7aa68101a0cea971bb72ae9ac8.html
│ │ ├── dir_77b57dc9b2b0515ac3d8e29e71a2a2cf.html
│ │ ├── dir_93b4beb855a2c356595a7ac3c216f653.html
│ │ ├── dir_ae6abeeea27da3e568e6c1f195f1e4cf.html
│ │ ├── dir_c2abfe6aecee81d1d436cda4fdcf9926.html
│ │ ├── dir_cee94b333c10ac58eab5c104fbd3d957.html
│ │ ├── dir_e82ac5395ea1e14ae7487eec9d45b351.html
│ │ ├── dir_fcc366a8762115f9c2f29802113e80b6.html
│ │ ├── doc.png
│ │ ├── doxygen.css
│ │ ├── doxygen.png
│ │ ├── dynsections.js
│ │ ├── folderclosed.png
│ │ ├── folderopen.png
│ │ ├── functions_evnt.html
│ │ ├── functions_func.html
│ │ ├── functions.html
│ │ ├── functions_prop.html
│ │ ├── hierarchy.html
│ │ ├── hierarchy.js
│ │ ├── index.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_bluetooth_discoverer.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_bluetooth_discoverer.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_bluetooth_discoverer-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_bluetooth_discoverer.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_connection_builder.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_connection_builder.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_connection_builder-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_connection_builder.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_connection.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_connection.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_connection-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_connection.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_bluetooth.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_bluetooth.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_bluetooth-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_bluetooth.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_network.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_network-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_network.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_usb.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_usb.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_usb-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovered_printer_usb.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovery_handler_factory.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovery_handler_factory.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovery_handler_factory-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovery_handler.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovery_handler.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_discovery_handler-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_field_description.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_field_description.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_field_description-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_field_description.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_file_util.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_file_util.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_file_util-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_file_util.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_format_util.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_format_util.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_format_util-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_format_util.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_graphics_util.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_graphics_util.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_graphics_util-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_graphics_util.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_network_discoverer.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_network_discoverer.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_network_discoverer-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_network_discoverer.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_printer_status.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_printer_status.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_printer_status-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_printer_status.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_printer_util.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_printer_util.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_printer_util-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_usb_discoverer.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_usb_discoverer.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_usb_discoverer-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_zebra_printer_factory.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_zebra_printer_factory.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_zebra_printer_factory-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_zebra_printer_factory.png
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_zebra_printer.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_zebra_printer.js
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_zebra_printer-members.html
│ │ ├── interface_link_o_s_1_1_plugin_1_1_abstractions_1_1_i_zebra_printer.png
│ │ ├── jquery.js
│ │ ├── namespace_link_o_s_1_1_plugin_1_1_abstractions.html
│ │ ├── namespace_link_o_s_1_1_plugin_1_1_abstractions.js
│ │ ├── namespace_link_o_s_1_1_plugin.html
│ │ ├── namespace_link_o_s_1_1_plugin.js
│ │ ├── namespace_link_o_s.html
│ │ ├── namespace_link_o_s.js
│ │ ├── namespacemembers_enum.html
│ │ ├── namespacemembers_func.html
│ │ ├── namespacemembers.html
│ │ ├── nav_f.png
│ │ ├── nav_g.png
│ │ ├── nav_h.png
│ │ ├── navtree.css
│ │ ├── navtreedata.js
│ │ ├── navtreeindex0.js
│ │ ├── navtree.js
│ │ ├── open.png
│ │ ├── resize.js
│ │ ├── search
│ │ │ ├── all_0.html
│ │ │ ├── all_0.js
│ │ │ ├── all_10.html
│ │ │ ├── all_10.js
│ │ │ ├── all_11.html
│ │ │ ├── all_11.js
│ │ │ ├── all_12.html
│ │ │ ├── all_12.js
│ │ │ ├── all_1.html
│ │ │ ├── all_1.js
│ │ │ ├── all_2.html
│ │ │ ├── all_2.js
│ │ │ ├── all_3.html
│ │ │ ├── all_3.js
│ │ │ ├── all_4.html
│ │ │ ├── all_4.js
│ │ │ ├── all_5.html
│ │ │ ├── all_5.js
│ │ │ ├── all_6.html
│ │ │ ├── all_6.js
│ │ │ ├── all_7.html
│ │ │ ├── all_7.js
│ │ │ ├── all_8.html
│ │ │ ├── all_8.js
│ │ │ ├── all_9.html
│ │ │ ├── all_9.js
│ │ │ ├── all_a.html
│ │ │ ├── all_a.js
│ │ │ ├── all_b.html
│ │ │ ├── all_b.js
│ │ │ ├── all_c.html
│ │ │ ├── all_c.js
│ │ │ ├── all_d.html
│ │ │ ├── all_d.js
│ │ │ ├── all_e.html
│ │ │ ├── all_e.js
│ │ │ ├── all_f.html
│ │ │ ├── all_f.js
│ │ │ ├── classes_0.html
│ │ │ ├── classes_0.js
│ │ │ ├── classes_1.html
│ │ │ ├── classes_1.js
│ │ │ ├── classes_2.html
│ │ │ ├── classes_2.js
│ │ │ ├── classes_3.html
│ │ │ ├── classes_3.js
│ │ │ ├── classes_4.html
│ │ │ ├── classes_4.js
│ │ │ ├── classes_5.html
│ │ │ ├── classes_5.js
│ │ │ ├── classes_6.html
│ │ │ ├── classes_6.js
│ │ │ ├── classes_7.html
│ │ │ ├── classes_7.js
│ │ │ ├── classes_8.html
│ │ │ ├── classes_8.js
│ │ │ ├── close.png
│ │ │ ├── enums_0.html
│ │ │ ├── enums_0.js
│ │ │ ├── enumvalues_0.html
│ │ │ ├── enumvalues_0.js
│ │ │ ├── enumvalues_1.html
│ │ │ ├── enumvalues_1.js
│ │ │ ├── enumvalues_2.html
│ │ │ ├── enumvalues_2.js
│ │ │ ├── events_0.html
│ │ │ ├── events_0.js
│ │ │ ├── functions_0.html
│ │ │ ├── functions_0.js
│ │ │ ├── functions_1.html
│ │ │ ├── functions_1.js
│ │ │ ├── functions_2.html
│ │ │ ├── functions_2.js
│ │ │ ├── functions_3.html
│ │ │ ├── functions_3.js
│ │ │ ├── functions_4.html
│ │ │ ├── functions_4.js
│ │ │ ├── functions_5.html
│ │ │ ├── functions_5.js
│ │ │ ├── functions_6.html
│ │ │ ├── functions_6.js
│ │ │ ├── functions_7.html
│ │ │ ├── functions_7.js
│ │ │ ├── functions_8.html
│ │ │ ├── functions_8.js
│ │ │ ├── functions_9.html
│ │ │ ├── functions_9.js
│ │ │ ├── functions_a.html
│ │ │ ├── functions_a.js
│ │ │ ├── functions_b.html
│ │ │ ├── functions_b.js
│ │ │ ├── functions_c.html
│ │ │ ├── functions_c.js
│ │ │ ├── functions_d.html
│ │ │ ├── functions_d.js
│ │ │ ├── mag_sel.png
│ │ │ ├── namespaces_0.html
│ │ │ ├── namespaces_0.js
│ │ │ ├── nomatches.html
│ │ │ ├── pages_0.html
│ │ │ ├── pages_0.js
│ │ │ ├── properties_0.html
│ │ │ ├── properties_0.js
│ │ │ ├── properties_1.html
│ │ │ ├── properties_1.js
│ │ │ ├── properties_2.html
│ │ │ ├── properties_2.js
│ │ │ ├── properties_3.html
│ │ │ ├── properties_3.js
│ │ │ ├── properties_4.html
│ │ │ ├── properties_4.js
│ │ │ ├── properties_5.html
│ │ │ ├── properties_5.js
│ │ │ ├── properties_6.html
│ │ │ ├── properties_6.js
│ │ │ ├── properties_7.html
│ │ │ ├── properties_7.js
│ │ │ ├── properties_8.html
│ │ │ ├── properties_8.js
│ │ │ ├── properties_9.html
│ │ │ ├── properties_9.js
│ │ │ ├── properties_a.html
│ │ │ ├── properties_a.js
│ │ │ ├── properties_b.html
│ │ │ ├── properties_b.js
│ │ │ ├── properties_c.html
│ │ │ ├── properties_c.js
│ │ │ ├── search.css
│ │ │ ├── searchdata.js
│ │ │ ├── search.js
│ │ │ ├── search_l.png
│ │ │ ├── search_m.png
│ │ │ └── search_r.png
│ │ ├── splitbar.png
│ │ ├── sync_off.png
│ │ ├── sync_on.png
│ │ ├── tab_a.png
│ │ ├── tab_b.png
│ │ ├── tab_h.png
│ │ ├── tabs.css
│ │ ├── tab_s.png
│ │ ├── Xamarin_Install_Guide_README.pdf
│ │ └── Zebra_New.png
│ ├── lib
│ │ └── LinkOS_Xamarin_SDK.1.1.75.nupkg
│ ├── Xamarin_Install_Guide_README.pdf
│ └── Zebra_SDK_EULA.pdf
└── Zebra_SDK_EULA.pdf
557 directories, 3077 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论