Package org.openntf.domino.nsfdata.structs

Examples of org.openntf.domino.nsfdata.structs.WSIG


  }

  public static final int SIZE = getFixedStructSize();

  public CDFRAMESETHEADER(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here


  }

  public static final int SIZE = getFixedStructSize();

  public CDGRAPHIC(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

    SIZE = getFixedStructSize();
  }

  public CDBLOBPART(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

  }

  public static final int SIZE = getFixedStructSize();

  public CDOLEOBJ_INFO(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

  }

  public static final int SIZE = getFixedStructSize();

  public CDBEGINRECORD(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

  }

  public static final int SIZE = getFixedStructSize();

  public CDEVENT(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

  }

  public static final int SIZE = getFixedStructSize();

  public CDFIELD(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

  }

  public static final int SIZE = getFixedStructSize();

  public CDIMAGEHEADER(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

public class CDCOLORTABLE extends CDRecord {

  public static final int SIZE = 0;

  public CDCOLORTABLE(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

    SIZE = getFixedStructSize();
  }

  public CDBOXSIZE(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

TOP

Related Classes of org.openntf.domino.nsfdata.structs.WSIG

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.