📄 defaultmarkupresourcestreamprovider.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;import java.util.Locale;import org.apache.wicket.Application;import org.apache.wicket.MarkupContainer;import org.apache.wicket.util.resource.IResourceStream;import org.apache.wicket.util.resource.locator.IResourceStreamLocator;import org.slf4j.Logger;import org.slf4j.LoggerFactory;/** * Wicket default implementation for loading the markup resource stream associated with a * MarkupContainer. * * @author Jonathan Locke * @author Juergen Donnerstag */public class DefaultMarkupResourceStreamProvider implements IMarkupResourceStreamProvider{ /** Log for reporting. */ private static final Logger log = LoggerFactory .getLogger(DefaultMarkupResourceStreamProvider.class); /** * Constructor. */ public DefaultMarkupResourceStreamProvider() { } /** * Create a new markup resource stream for the container. * <p> * Note: it will only called once, the IResourceStream will be cached by MarkupCache. * <p> * Note: IResourceStreamLocators should be used in case the strategy to find a markup resource * should be extended for ALL components of your application. * * @see org.apache.wicket.util.resource.locator.IResourceStream * @see org.apache.wicket.markup.DefaultMarkupResourceStreamProvider * * @param container * @param containerClass * The container the markup should be associated with * @return A IResourceStream if the resource was found */ public IResourceStream getMarkupResourceStream(final MarkupContainer container, Class containerClass) { // Get locator to search for the resource final IResourceStreamLocator locator = Application.get().getResourceSettings() .getResourceStreamLocator(); String style = container.getStyle(); Locale locale = container.getLocale(); String ext = container.getMarkupType(); // Markup is associated with the containers class. Walk up the class // hierarchy up to MarkupContainer to find the containers markup // resource. while (containerClass != MarkupContainer.class) { String path = containerClass.getName().replace('.', '/'); IResourceStream resourceStream = locator.locate(container.getClass(), path, style, locale, ext); // Did we find it already? if (resourceStream != null) { return new MarkupResourceStream(resourceStream, new ContainerInfo(container), containerClass); } // Walk up the class hierarchy one level, if markup has not // yet been found containerClass = containerClass.getSuperclass(); } return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -