Examples of dump()


Examples of com.sun.grid.jgdi.configuration.ShareTree.dump()

    public void eventOccured(Event evt) {
        System.out.println(evt);
        if (evt instanceof ShareTreeModEvent) {
            ShareTree st = ((ShareTreeModEvent)evt).get();
            System.out.println(st.dump());
        }
        System.out.flush();
    }
}
View Full Code Here

Examples of com.sun.messaging.jmq.jmsserver.service.imq.IMQBasicConnection.dump()

            IMQBasicConnection conn = (IMQBasicConnection)cm.getConnection(
                                      (ConnectionUID)cnitr.next());
            if (conn == null) continue;
            Globals.getLogger().log(Logger.INFO,
                "Destroying connection " + conn + " because "+reasonstr);
            if (DEBUG) conn.dump();
            conn.destroyConnection(true, reason, reasonstr);
            conn.waitForRelease(Globals.getConfig().getLongProperty(
                 Globals.IMQ+"."+conn.getService().getName()+".destroy_timeout", 30)*1000);
        }
    }
View Full Code Here

Examples of com.sun.messaging.jmq.jmsserver.service.imq.IMQConnection.dump()

                // Get info for one connection
                cxn = (IMQConnection)cm.getConnection(
                                new ConnectionUID(cxnId.longValue()));
                if (cxn != null) {
                    if (DEBUG) {
                        cxn.dump();
                    }
                    cxn.destroyConnection(true, GoodbyeReason.ADMIN_KILLED_CON,
                       Globals.getBrokerResources().getKString(
                       BrokerResources.M_ADMIN_REQ_CLOSE));
                } else {
View Full Code Here

Examples of com.sun.mpk20.voicelib.app.VoiceManager.dump()

      vm.removeTreatmentGroup(group);
  } catch (IOException e) {
      logger.warning("Unable to remove treatment group " + group);
  }

  vm.dump("all");
    }

    private void endTreatment(Treatment treatment) {
  Call call = treatment.getCall();
 
View Full Code Here

Examples of com.sun.org.apache.bcel.internal.classfile.JavaClass.dump()

  while (classes.hasMoreElements()) {
      final JavaClass clazz = (JavaClass)classes.nextElement();
      final String className = clazz.getClassName().replace('.','/');
      jos.putNextEntry(new JarEntry(className+".class"));
      final ByteArrayOutputStream out = new ByteArrayOutputStream(2048);
      clazz.dump(out); // dump() closes it's output stream
      out.writeTo(jos);
  }
  jos.close();
    }
View Full Code Here

Examples of com.sun.speech.freetts.relp.LPCResult.dump()

      targetStart = targetEnd;
  }
  lpcResult.setNumberOfFrames(pmI);

  if (outputLPC) {
      lpcResult.dump();
  }
    }

    /**
     * Converts this object to a string
View Full Code Here

Examples of com.sun.tools.internal.xjc.reader.internalizer.DOMForest.dump()

            if( opt.mode==Mode.FOREST ) {
                // dump DOM forest and quit
                ModelLoader loader  = new ModelLoader( opt, new JCodeModel(), receiver );
                try {
                    DOMForest forest = loader.buildDOMForest(new XMLSchemaInternalizationLogic());
                    forest.dump(System.out);
                    return 0;
                } catch (SAXException e) {
                    // the error should have already been reported
                } catch (IOException e) {
                    receiver.error(e);
View Full Code Here

Examples of com.sun.tools.xjc.reader.internalizer.DOMForest.dump()

            if( opt.mode==Mode.FOREST ) {
                // dump DOM forest and quit
                ModelLoader loader  = new ModelLoader( opt, new JCodeModel(), receiver );
                try {
                    DOMForest forest = loader.buildDOMForest(new XMLSchemaInternalizationLogic());
                    forest.dump(System.out);
                    return 0;
                } catch (SAXException e) {
                    // the error should have already been reported
                } catch (IOException e) {
                    receiver.error(e);
View Full Code Here

Examples of com.vaadin.client.FastStringSet.dump()

        return targets;
    }

    public JsArrayString getMeasureTargetsJsArray() {
        FastStringSet horizontalQueue = getMeasureQueue(HORIZONTAL);
        JsArrayString measureTargets = horizontalQueue.dump();

        JsArrayString verticalDump = getMeasureQueue(VERTICAL).dump();
        int length = verticalDump.length();
        for (int i = 0; i < length; i++) {
            String connectorId = verticalDump.get(i);
View Full Code Here

Examples of com.volantis.testtools.mock.ExpectationContainer.dump()

        return builder;
    }

    public void dump(Writer writer) throws IOException {
        ExpectationContainer threadContainer = getThreadSpecificBuilder();
        threadContainer.dump(writer);
    }

    public void verify() {
//        for (Iterator i = threadName2Builder.entrySet().iterator();
//             i.hasNext();) {
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.