Examples of DebugSettings


Examples of org.apache.wicket.settings.DebugSettings

              .append('"');
          }
        }
      }

      DebugSettings debugSettings = getApplication().getDebugSettings();
      String componentPathAttributeName = debugSettings.getComponentPathAttributeName();
      if (Strings.isEmpty(componentPathAttributeName) && debugSettings.isOutputComponentPath())
      {
        // fallback to the old 'wicketpath'
        componentPathAttributeName = "wicketpath";
      }
      if (Strings.isEmpty(componentPathAttributeName) == false)
View Full Code Here

Examples of org.apache.wicket.settings.DebugSettings

    }

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

    final DebugSettings debugSettings = Application.get().getDebugSettings();
    if (debugSettings.isLinePreciseReportingOnAddComponentEnabled()
      && debugSettings.getComponentUseCheck())
    {
      child.setMetaData(ADDED_AT_KEY,
        ComponentStrings.toString(child, new MarkupException("added")));
    }
View Full Code Here

Examples of org.apache.wicket.settings.DebugSettings

  public final DebugSettings getDebugSettings()
  {
    checkSettingsAvailable();
    if (debugSettings == null)
    {
      debugSettings = new DebugSettings();
    }
    return debugSettings;
  }
View Full Code Here

Examples of org.apache.wicket.settings.DebugSettings

    init();

    getApplication().getComponentInstantiationListeners().onInstantiation(this);

    final DebugSettings 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.DebugSettings

    if (getFlag(FLAG_OUTPUT_MARKUP_ID))
    {
      tag.putInternal(MARKUP_ID_ATTR_NAME, getMarkupId());
    }

    DebugSettings debugSettings = getApplication().getDebugSettings();
    String componentPathAttributeName = debugSettings.getComponentPathAttributeName();
    if (Strings.isEmpty(componentPathAttributeName) && debugSettings.isOutputComponentPath())
    {
      // fallback to the old 'wicketpath'
      componentPathAttributeName = "wicketpath";
    }
    if (Strings.isEmpty(componentPathAttributeName) == false)
View Full Code Here

Examples of org.apache.wicket.settings.DebugSettings

    init();

    getApplication().getComponentInstantiationListeners().onInstantiation(this);

    final DebugSettings 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.DebugSettings

    if (getFlag(FLAG_OUTPUT_MARKUP_ID))
    {
      tag.putInternal(MARKUP_ID_ATTR_NAME, getMarkupId());
    }

    DebugSettings debugSettings = getApplication().getDebugSettings();
    String componentPathAttributeName = debugSettings.getComponentPathAttributeName();
    if (Strings.isEmpty(componentPathAttributeName) == false)
    {
      String path = getPageRelativePath();
      path = path.replace("_", "__");
      path = path.replace(':', '_');
      tag.put(componentPathAttributeName, path);
    }
    else if (debugSettings.isOutputComponentPath())
    {
      String path = getPageRelativePath();
      path = path.replace("_", "__");
      path = path.replace(':', '_');
      tag.put("wicketpath", path);
View Full Code Here

Examples of org.apache.wicket.settings.DebugSettings

    }

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

    final DebugSettings debugSettings = Application.get().getDebugSettings();
    if (debugSettings.isLinePreciseReportingOnAddComponentEnabled()
      && debugSettings.getComponentUseCheck())
    {
      child.setMetaData(ADDED_AT_KEY,
        ComponentStrings.toString(child, new MarkupException("added")));
    }
View Full Code Here

Examples of org.apache.wicket.settings.def.DebugSettings

  public final IDebugSettings getDebugSettings()
  {
    checkSettingsAvailable();
    if (debugSettings == null)
    {
      debugSettings = new DebugSettings();
    }
    return debugSettings;
  }
View Full Code Here

Examples of org.apache.wicket.settings.def.DebugSettings

  public final IDebugSettings getDebugSettings()
  {
    checkSettingsAvailable();
    if (debugSettings == null)
    {
      debugSettings = new DebugSettings();
    }
    return debugSettings;
  }
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.