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

com.zving.preloader.zip.UnicodePathExtraField Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package com.zving.preloader.zip;

public class UnicodePathExtraField
  extends AbstractUnicodeExtraField
{
  public static final ZipShort UPATH_ID = new ZipShort(28789);
  
  public UnicodePathExtraField() {}
  
  public UnicodePathExtraField(String text, byte[] bytes, int off, int len)
  {
    super(text, bytes, off, len);
  }
  
  public UnicodePathExtraField(String name, byte[] bytes)
  {
    super(name, bytes);
  }
  
  public ZipShort getHeaderId()
  {
    return UPATH_ID;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy