Package org.openntf.domino.nsfdata.structs.cd

Source Code of org.openntf.domino.nsfdata.structs.cd.CDPDEF_TYPE

package org.openntf.domino.nsfdata.structs.cd;

import java.nio.ByteBuffer;

import org.openntf.domino.nsfdata.structs.SIG;
import org.openntf.domino.nsfdata.structs.WSIG;

/**
* This doesn't appear in the API documentation, but is presumably part of Composite Apps.
*
*/
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]));
  }

  public CDPDEF_TYPE(final SIG signature, final ByteBuffer data) {
    super(signature, data);
  }

}
TOP

Related Classes of org.openntf.domino.nsfdata.structs.cd.CDPDEF_TYPE

TOP
Copyright © 2018 www.massapi.com. 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.