Package org.openntf.domino.nsfdata.structs

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


  }

  public static final int SIZE = getFixedStructSize();

  public CDHOTSPOTBEGIN(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 CDBAR(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 CDLAYOUT(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

    SIZE = getFixedStructSize();
  }

  public CDEVENTENTRY(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 CDIDNAME(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

public class CDPDEF_TYPE extends CDRecord {

  public static final int SIZE = getFixedStructSize();

  public CDPDEF_TYPE(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 CDLSOBJECT(final CDSignature cdSig) {
    super(new WSIG(cdSig, cdSig.getSize() + SIZE), ByteBuffer.wrap(new byte[SIZE]));
  }
View Full Code Here

    SIZE = getFixedStructSize();
  }

  public CDBITMAPSEGMENT(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 CDEMBEDDEDVIEW(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 CDDATAFLAGS(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.