📄 ipagelink.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.markup.html.link;import org.apache.wicket.IClusterable;import org.apache.wicket.Page;/** * Interface that is used to implement delayed page linking. The getPage() method returns an * instance of Page when a link is actually clicked (thus avoiding the need to create a destination * Page object for every link on a given Page in advance). The getPageIdentity() method returns the * subclass of Page that getPage() will return if and when it is called. * <p> * This way of arranging things is useful in determining whether a link links to a given page, which * is in turn useful for deciding how to display the link (because links in a navigation which link * to a page itself are not useful and generally should instead indicate where the user is in the * navigation). * <p> * To understand how getPageIdentity() is used in this way, take a look at the Link.linksTo() method * and its override in PageLink. Also, see the documentation for getPageIdentity() below. * * @see Link#linksTo(Page) * @see PageLink#linksTo(Page) * @author Jonathan Locke */public interface IPageLink extends IClusterable{ /** * Gets the page to go to. * * @return The page to go to. */ Page getPage(); /** * Gets the class of the destination page, which serves as a form of identity that can be used * to determine if a link is on the same Page that it links to. When Pages are parameterized, * the Link.linksTo() method should be overridden instead. * <p> * A page's identity is important because links which are on the same page that they link to * often need to be displayed in a different way to indicate that they are 'disabled' and don't * go anywhere. Links can be manually disabled by calling Link.setDisabled(). Links which have * setAutoEnable(true) will automatically enable or disable themselves depending on whether or * not Link.linksTo() returns true. The default implementation of PageLink.linksTo() therefore * looks like this: * * <pre> * private final IPageLink pageLink; * * public boolean linksTo(final Page page) * { * return page.getClass() == pageLink.getPageIdentity(); * } * </pre> * * @return The class of page linked to, as a form of identity * @see Link#linksTo(Page) */ Class getPageIdentity();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -