Examples of IDebugSettings


Examples of org.apache.wicket.settings.IDebugSettings

  public Component(final String id, final IModel<?> model)
  {
    setId(id);
    getApplication().getComponentInstantiationListeners().onInstantiation(this);

    final IDebugSettings debugSettings = getApplication().getDebugSettings();
    if (debugSettings.isLinePreciseReportingOnNewComponentEnabled() && debugSettings.getComponentUseCheck())
    {
      setMetaData(CONSTRUCTED_AT_KEY,
        ComponentStrings.toString(this, new MarkupException("constructed")));
    }
View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

   */
  private final void checkRendering(final MarkupContainer renderedContainer)
  {
    // If the application wants component uses checked and
    // the response is not a redirect
    final IDebugSettings debugSettings = Application.get().getDebugSettings();
    if (debugSettings.getComponentUseCheck() && !getResponse().isRedirect())
    {
      final List<Component> unrenderedComponents = new ArrayList<Component>();
      final StringBuffer buffer = new StringBuffer();
      renderedContainer.visitChildren(new IVisitor<Component>()
      {
View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

  public Component(final String id, final IModel<?> model)
  {
    setId(id);
    getApplication().notifyComponentInstantiationListeners(this);

    final IDebugSettings debugSettings = Application.get().getDebugSettings();
    if (debugSettings.isLinePreciseReportingOnNewComponentEnabled())
    {
      setMetaData(CONSTRUCTED_AT_KEY, Strings.toString(this, new MarkupException(
        "constructed")));
    }
View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

    // Set child's parent
    component.setParent(this);

    final Page page = findPage();

    final IDebugSettings debugSettings = Application.get().getDebugSettings();
    if (debugSettings.isLinePreciseReportingOnAddComponentEnabled())
    {
      component.setMetaData(ADDED_AT_KEY, Strings.toString(component, new MarkupException(
        "added")));
    }
View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

  public Component(final String id, final IModel<?> model)
  {
    setId(id);
    getApplication().getComponentInstantiationListeners().onInstantiation(this);

    final IDebugSettings debugSettings = getApplication().getDebugSettings();
    if (debugSettings.isLinePreciseReportingOnNewComponentEnabled() && debugSettings.getComponentUseCheck())
    {
      setMetaData(CONSTRUCTED_AT_KEY,
        ComponentStrings.toString(this, new MarkupException("constructed")));
    }
View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

   */
  private void checkRendering(final MarkupContainer renderedContainer)
  {
    // If the application wants component uses checked and
    // the response is not a redirect
    final IDebugSettings debugSettings = getApplication().getDebugSettings();
    if (debugSettings.getComponentUseCheck())
    {
      final List<Component> unrenderedComponents = new ArrayList<Component>();
      final StringBuilder buffer = new StringBuilder();
      renderedContainer.visitChildren(new IVisitor<Component, Void>()
      {
View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

   * @see org.apache.wicket.behavior.AbstractAjaxBehavior#renderHead(org.apache.wicket.markup.html.IHeaderResponse)
   */
  @Override
  public void renderHead(IHeaderResponse response)
  {
    final IDebugSettings debugSettings = Application.get().getDebugSettings();

    response.renderJavascriptReference(WicketEventReference.INSTANCE);
    response.renderJavascriptReference(WicketAjaxReference.INSTANCE);

    if (debugSettings.isAjaxDebugModeEnabled())
    {
      response.renderJavascriptReference(JAVASCRIPT_DEBUG);
      response.renderJavascript("wicketAjaxDebugEnable=true;", "wicket-ajax-debug-enable");
    }

View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

  public Component(final String id, final IModel<?> model)
  {
    setId(id);
    getApplication().notifyComponentInstantiationListeners(this);

    final IDebugSettings debugSettings = Application.get().getDebugSettings();
    if (debugSettings.isLinePreciseReportingOnNewComponentEnabled())
    {
      setMetaData(CONSTRUCTED_AT_KEY,
        ComponentStrings.toString(this, new MarkupException("constructed")));
    }
View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

   */
  private void checkRendering(final MarkupContainer renderedContainer)
  {
    // If the application wants component uses checked and
    // the response is not a redirect
    final IDebugSettings debugSettings = Application.get().getDebugSettings();
    if (debugSettings.getComponentUseCheck())
    {
      final List<Component> unrenderedComponents = new ArrayList<Component>();
      final StringBuffer buffer = new StringBuffer();
      renderedContainer.visitChildren(new IVisitor<Component, Void>()
      {
View Full Code Here

Examples of org.apache.wicket.settings.IDebugSettings

    }

    // Set child's parent
    child.setParent(this);

    final IDebugSettings debugSettings = Application.get().getDebugSettings();
    if (debugSettings.isLinePreciseReportingOnAddComponentEnabled())
    {
      child.setMetaData(ADDED_AT_KEY,
        ComponentStrings.toString(child, new MarkupException("added")));
    }
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.