Examples of dump()


Examples of l2p.gameserver.templates.StatsSet.dump()

        }
        target = (L2NpcInstance) activeChar.getTarget();
        StatsSet set = target.getTemplate().getAIParams();
        if(set != null)
        {
          System.out.println("Dump of AI Params:\r\n" + set.dump());
        }
        else
        {
          System.out.println("AI Params not setted.");
        }
View Full Code Here

Examples of mwt.wow.mpq.MpqArchive.dump()

  public static void main(String[] args) throws IOException {
    File mpqFile = new File(args[0]);
    MpqArchive mpqArchive = new MpqArchive(mpqFile);
    mpqArchive.readExtData();
    mpqArchive.dump(args.length > 1 ? new PrintStream(new File(args[1]))
        : System.out);
    mpqArchive.close();
  }
}
View Full Code Here

Examples of nallar.tickthreading.minecraft.tickregion.EntityTickRegion.dump()

      x = tileEntityTickRegion.regionX;
      z = tileEntityTickRegion.regionZ;
    }
    EntityTickRegion entityTickRegion = getEntityRegion(hashCode);
    if (entityTickRegion != null) {
      entityTickRegion.dump(tf);
      x = entityTickRegion.regionX;
      z = entityTickRegion.regionZ;
    }
    if (entityTickRegion == null && tileEntityTickRegion == null) {
      tf.sb.append("tickRegion for ").append(hashCode).append(" does not exist");
View Full Code Here

Examples of nallar.tickthreading.minecraft.tickregion.TileEntityTickRegion.dump()

  public TableFormatter writeRegionDetails(final TableFormatter tf, final int hashCode) {
    int x = 0;
    int z = 0;
    TileEntityTickRegion tileEntityTickRegion = getTileEntityRegion(hashCode);
    if (tileEntityTickRegion != null) {
      tileEntityTickRegion.dump(tf);
      x = tileEntityTickRegion.regionX;
      z = tileEntityTickRegion.regionZ;
    }
    EntityTickRegion entityTickRegion = getEntityRegion(hashCode);
    if (entityTickRegion != null) {
View Full Code Here

Examples of net.authorize.util.BasicXmlDocument.dump()

    BasicXmlDocument response = net.authorize.util.HttpClient.executeXML(environment, transaction);

    if (log.isInfoEnabled()) {
      BasicXmlDocument request = transaction.getCurrentRequest();
      if (request != null) {
        log.info(request.dump());
        log.info(response.dump());
      }
    }
   
    Result<Transaction> result = Result.createResult(transaction, response);
View Full Code Here

Examples of net.sf.hajdbc.DumpRestoreSupport.dump()

    {
      File file = Files.createTempFile(DUMP_FILE_SUFFIX);
     
      try
      {
        support.dump(context.getSourceDatabase(), decoder, file);
        support.restore(context.getTargetDatabase(), decoder, file);
      }
      finally
      {
        Files.delete(file);
View Full Code Here

Examples of net.yacy.kelondro.index.HandleMap.dump()

                cellPath,
                Segment.wordReferenceFactory,
                Base64Order.enhancedCoder,
                WordReferenceRow.urlEntryRow);
            System.out.println("INDEX REFERENCE COLLECTION starting dump of statistics");
            idx.dump(new File(statisticPath));
            System.out.println("INDEX REFERENCE COLLECTION finished dump, wrote " + idx.size() + " entries to " + statisticPath);
            idx.close();
        } catch (final Exception e) {
            Log.logException(e);
        }
View Full Code Here

Examples of net.yacy.kelondro.index.HandleSet.dump()

            }
        }
        idx.close();
        mr.close();
        System.out.println("INDEX DIFF URL-COL finished diff, starting dump to " + diffFile);
        count = hs.dump(new File(diffFile));
        System.out.println("INDEX DIFF URL-COL finished dump, wrote " + count + " references that occur in the URL-DB, but not in the collection-dump");
        return count;
    }

    public static void export(final String metadataPath, final int format, final String export, final String diffFile) throws IOException, RowSpaceExceededException {
View Full Code Here

Examples of nexj.core.util.Logger.dump()

      try
      {
         if (logger.isDebugEnabled())
         {
            logger.debug("Transforming a message with transformation " + transformation.getName());
            logger.dump(obj);
         }

         Transformation oldTransformation = transformation;

         if (!StringUtil.isEmpty(obj.getClassName()) && m_bPolymorphic)
View Full Code Here

Examples of openperipheral.util.DocBuilder.dump()

        builder.createDocForPeripheral("peripheralAdapter", e);

      for (IAdapterMethodsList<?> e : AdapterManager.objects.listExternalAdapters())
        builder.createDocForPeripheral("objectAdapter", e);

      builder.dump(output);
      sender.addChatMessage(new ChatComponentText("Done! Created file in " + output.getAbsolutePath()));
    } catch (Throwable t) {
      Log.warn(t, "Failed to execute dump command");
      sender.addChatMessage(new ChatComponentText("Failed to execute! Check logs"));
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.