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

net.stickycode.plugin.bounds.StickySerializer Maven / Gradle / Ivy

There is a newer version: 4.12
Show newest version
package net.stickycode.plugin.bounds;

import java.io.FileOutputStream;
import java.io.UnsupportedEncodingException;

import nu.xom.Serializer;

/**
 * TODO figure out how to not reorder attributes and put them on one line
 */
public class StickySerializer
    extends Serializer {

  public StickySerializer(FileOutputStream fileOutputStream, String string) throws UnsupportedEncodingException {
    super(fileOutputStream, string);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy