예제 #1
0
 /**
  * @see
  *     org.apache.wicket.jmx.DebugSettingsMBean#setLinePreciseReportingOnAddComponentEnabled(boolean)
  */
 @Override
 public void setLinePreciseReportingOnAddComponentEnabled(final boolean enable) {
   application.getDebugSettings().setLinePreciseReportingOnAddComponentEnabled(enable);
 }
예제 #2
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#isOutputMarkupContainerClassName() */
 @Override
 public boolean isOutputMarkupContainerClassName() {
   return application.getDebugSettings().isOutputMarkupContainerClassName();
 }
예제 #3
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#isLinePreciseReportingOnAddComponentEnabled() */
 @Override
 public boolean isLinePreciseReportingOnAddComponentEnabled() {
   return application.getDebugSettings().isLinePreciseReportingOnAddComponentEnabled();
 }
예제 #4
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#isOutputComponentPath() */
 @Override
 public boolean isOutputComponentPath() {
   return application.getDebugSettings().isOutputComponentPath();
 }
예제 #5
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#setOutputMarkupContainerClassName(boolean) */
 @Override
 public void setOutputMarkupContainerClassName(final boolean enable) {
   application.getDebugSettings().setOutputMarkupContainerClassName(enable);
 }
예제 #6
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#setComponentUseCheck(boolean) */
 @Override
 public void setComponentUseCheck(final boolean check) {
   application.getDebugSettings().setComponentUseCheck(check);
 }
예제 #7
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#setOutputComponentPath(boolean) */
 @Override
 public void setOutputComponentPath(final boolean enabled) {
   application.getDebugSettings().setOutputComponentPath(enabled);
 }
예제 #8
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#setAjaxDebugModeEnabled(boolean) */
 @Override
 public void setAjaxDebugModeEnabled(final boolean enable) {
   application.getDebugSettings().setAjaxDebugModeEnabled(enable);
 }
예제 #9
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#isAjaxDebugModeEnabled() */
 @Override
 public boolean isAjaxDebugModeEnabled() {
   return application.getDebugSettings().isAjaxDebugModeEnabled();
 }
예제 #10
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#getComponentUseCheck() */
 @Override
 public boolean getComponentUseCheck() {
   return application.getDebugSettings().getComponentUseCheck();
 }
예제 #11
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#isDevelopmentUtilitiesEnabled() */
 @Override
 public boolean isDevelopmentUtilitiesEnabled() {
   return application.getDebugSettings().isDevelopmentUtilitiesEnabled();
 }
예제 #12
0
 /** @see org.apache.wicket.jmx.DebugSettingsMBean#setDevelopmentUtilitiesEnabled(boolean) */
 @Override
 public void setDevelopmentUtilitiesEnabled(final boolean enable) {
   application.getDebugSettings().setDevelopmentUtilitiesEnabled(enable);
 }