All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bytezone.dm3270.structuredfields.DefaultStructuredField Maven / Gradle / Ivy

Go to download

This is a trimmed down version of https://github.com/dmolony/dm3270 to be used as TN3270 client library

There is a newer version: 0.9.1
Show newest version
package com.bytezone.dm3270.structuredfields;

import com.bytezone.dm3270.display.Screen;
import com.bytezone.dm3270.utilities.Dm3270Utility;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class DefaultStructuredField extends StructuredField {

  private static final Logger LOG = LoggerFactory.getLogger(DefaultStructuredField.class);

  public DefaultStructuredField(byte[] buffer, int offset, int length) {
    super(buffer, offset, length);
    LOG.debug("Default Structured Field !!");
  }

  @Override
  public void process(Screen screen) {
    LOG.debug("Processing a DefaultStructuredField: {}", String.format("%02x", type));
  }

  @Override
  public String toString() {
    return String.format("Unknown SF   : %02X%n", data[0])
        + Dm3270Utility.toHex(data);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy