📄 idebugsettings.java
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.apache.wicket.settings;/** * Settings interface for various debug settings * <p> * <i>componentUseCheck </i> (defaults to true) - Causes the framework to do a check after rendering * each page to ensure that each component was used in rendering the markup. If components are found * that are not referenced in the markup, an appropriate error will be displayed * <i>serializeSessionAttributes</i> (defaults to true in development mode) - Causes the framework * to serialize any attribute put into session - this helps find Not Serializable errors early * <p> * * * @author Igor Vaynberg (ivaynberg) */public interface IDebugSettings{ /** * @return true if componentUseCheck is enabled */ boolean getComponentUseCheck(); /** * Sets componentUseCheck debug settings * * @param check */ void setComponentUseCheck(boolean check); /** * Enables or disables ajax debug mode. See {@link org.apache.wicket.settings.IDebugSettings} * for details * * @param enable * */ void setAjaxDebugModeEnabled(boolean enable); /** * Returns status of ajax debug mode. See {@link org.apache.wicket.settings.IDebugSettings} for * details * * @return true if ajax debug mode is enabled, false otherwise * */ boolean isAjaxDebugModeEnabled(); /** * Enables wrapping output of markup container in html comments that contain markup container's * class name. (Useful for determining which part of page belongs to which markup file). * * @param enable */ void setOutputMarkupContainerClassName(boolean enable); /** * Returns whether the output of markup container's should be wrapped by comments containing the * container's class name. * * @return true if the markup container's class name should be written to response */ public boolean isOutputMarkupContainerClassName(); /** * Returns status of line precise error reporting for added components that are not present in * the markup: it points to the line where the component was added to the hierarchy in your Java * classes. This can cause a significant decrease in performance, do not use in customer facing * applications. * * @return true if the line precise error reporting is enabled */ public boolean isLinePreciseReportingOnAddComponentEnabled(); /** * Enables line precise error reporting for added components that are not present in the markup: * it points to the line where the component was added to the hierarchy in your Java classes. * This can cause a significant decrease in performance, do not use in customer facing * applications. * * @param enable */ public void setLinePreciseReportingOnAddComponentEnabled(boolean enable); /** * Returns status of line precise error reporting for new components that are not present in the * markup: it points to the line where the component was created in your Java classes. This can * cause a significant decrease in performance, do not use in customer facing applications. * * @return true if the line precise error reporting is enabled */ public boolean isLinePreciseReportingOnNewComponentEnabled(); /** * Enables line precise error reporting for new components that are not present in the markup: * it points to the line where the component was created in your Java classes. This can cause a * significant decrease in performance, do not use in customer facing applications. * * @param enable */ public void setLinePreciseReportingOnNewComponentEnabled(boolean enable);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -