Пример #1
0
 @NotNull
 public static BufferExposingByteArrayOutputStream writeToBytes(
     @NotNull Parent element, @NotNull String lineSeparator) throws IOException {
   BufferExposingByteArrayOutputStream out = new BufferExposingByteArrayOutputStream(512);
   JDOMUtil.writeParent(element, out, lineSeparator);
   return out;
 }