Examples of writeSignature()


Examples of com.orientechnologies.orient.core.fetch.json.OJSONFetchContext.writeSignature()

      final OJSONWriter json = new OJSONWriter(buffer, iFormat);
      final FormatSettings settings = new FormatSettings(iFormat);

      json.beginObject();
      OJSONFetchContext context = new OJSONFetchContext(json, settings);
      context.writeSignature(json, iRecord);

      if (iRecord instanceof ODocument) {

        OFetchHelper.fetch(iRecord, null, OFetchHelper.buildFetchPlan(settings.fetchPlan), new OJSONFetchListener(), context,
            iFormat);
View Full Code Here

Examples of org.eclipse.php.internal.core.phar.PharFileExporter.writeSignature()

      File[] children = file.listFiles();
      for (int i = 0; i < children.length; i++) {
        export(exporter, children[i]);
      }
      exporter.writeSignature();
      exporter.finished();
      return result;
    }

    private void export(PharFileExporter exporter, File file)
View Full Code Here
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.