mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
06.45.2009 df426d8775737476ca79980ddc5a1b197f53207e
opends/src/server/org/opends/server/protocols/asn1/ASN1Writer.java
@@ -335,7 +335,7 @@
  /**
   * Writes a sequence element using the provided type tag. All
   * further writes will be part of this set until
   * further writes will be part of this sequence until
   * {@link #writeEndSequence()} is called.
   *
   * @param type
@@ -358,4 +358,19 @@
   *           If an error occurs while writing.
   */
  ASN1Writer writeStartSet() throws IOException;
  /**
   * Writes a set element using the provided type tag. All further
   * writes will be part of this set until {@link #writeEndSet()} is
   * called.
   *
   * @param type
   *          The type tag to use.
   * @return a reference to this object.
   * @throws IOException
   *           If an error occurs while writing.
   */
  ASN1Writer writeStartSet(byte type) throws IOException;
}