Examples of reset()


Examples of com.dci.intellij.dbn.execution.common.message.ui.ExecutionMessagesPanel.reset()

        if (resultTabs.getTabCount() > 0 || resultTabs.getTabAt(0).getComponent() == component) {
            TabInfo tabInfo = resultTabs.getTabAt(0);
            resultTabs.removeTab(tabInfo);
        }

        executionMessagesPanel.reset();
        if (getTabCount() == 0) {
            ExecutionManager.getInstance(project).hideExecutionConsole();
        }
    }
View Full Code Here

Examples of com.dianping.cat.message.spi.codec.PlainTextMessageCodec.reset()

    PlainTextMessageCodec codec = new PlainTextMessageCodec();
    ChannelBuffer buf = ChannelBuffers.dynamicBuffer(8192);

    codec.encode(this, buf);
    buf.readInt(); // get rid of length
    codec.reset();
    return buf.toString(Charset.forName("utf-8"));
  }
}
View Full Code Here

Examples of com.dotmarketing.cms.comment.struts.CommentsForm.reset()

      ActionForward forward = new ActionForward(referrer);
      forward.setRedirect(true);

      /* reset the form and reset the captcha */
      commentsForm.reset();

      request.setAttribute("commentsForm", commentsForm);
      return forward;
    } catch (Exception ex) {
      try {
View Full Code Here

Examples of com.dragome.debugging.messages.Receiver.reset()

    final Broadcaster broadcaster= webSocket.resource().getBroadcaster();
    Receiver configuredReceiver= ServiceLocator.getInstance().getServerToClientMessageChannel().getReceiver();
    if (!(configuredReceiver instanceof ChannelReceiverImpl))
      ServiceLocator.getInstance().getServerToClientMessageChannel().setReceiver(new ChannelReceiverImpl());
    else
      configuredReceiver.reset();

    ServiceLocator.getInstance().getServerToClientMessageChannel().setSender(new Sender()
    {
      public void send(String aMessage)
      {
View Full Code Here

Examples of com.ericsson.otp.erlang.OtpOutputStream.reset()

        final OtpErlangList r = (OtpErlangList) termParser.parse("[1,2,3,4]");
        final OtpErlangObject ss = r.getNthTail(2);
        final OtpOutputStream out = new OtpOutputStream();
        ss.encode(out);
        final byte[] contents1 = out.toByteArray();
        out.reset();
        final OtpErlangList s = (OtpErlangList) termParser.parse("[3,4]");
        s.encode(out);
        final byte[] contents2 = out.toByteArray();
        out.close();
View Full Code Here

Examples of com.esri.gpt.framework.security.principal.User.reset()

        } else {
         
          // establish the user
          identity = "urn:openid:"+identity;
          User user = context.getUser();
          user.reset();
          user.setKey(identity);
          user.setDistinguishedName(identity);
          user.setName(username);
          user.getProfile().setUsername(username);
          if (email.length() > 0) {
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.submit.transports.http.support.metrics.SoapUIMetrics.reset()

                    if (metrics != null && connectionMetrics != null && !connectionMetrics.isDone()) {
                        metrics.getDNSTimer().set(connectionMetrics.getDNSTimer().getStart(),
                                connectionMetrics.getDNSTimer().getStop());
                        // reset connection-level metrics
                        connectionMetrics.reset();
                    }
                }

            } // while intermediate response
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.form.FormPanel.reset()

    Button btn = new Button("Reset");
    btn.addSelectionListener(new SelectionListener<ButtonEvent>() {
      @Override
      public void componentSelected(ButtonEvent ce) {
        panel.reset();
      }
    });
    panel.addButton(btn);

    btn = new Button("Submit");
View Full Code Here

Examples of com.facebook.presto.hive.shaded.org.codehaus.jackson.map.type.ClassKey.reset()

                if (ser != null) {
                    return ser;
                }
                // If not direct match, maybe super-class match?
                for (Class<?> curr = cls; (curr != null); curr = curr.getSuperclass()) {
                    key.reset(curr);
                    ser = _classMappings.get(key);
                    if (ser != null) {
                        return ser;
                    }
                }
View Full Code Here

Examples of com.facebook.presto.jdbc.internal.jackson.databind.type.ClassKey.reset()

                if (ser != null) {
                    return ser;
                }
                // If not direct match, maybe super-class match?
                for (Class<?> curr = cls; (curr != null); curr = curr.getSuperclass()) {
                    key.reset(curr);
                    ser = _classMappings.get(key);
                    if (ser != null) {
                        return ser;
                    }
                }
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.