Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2063 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
17 changed files with 248 additions and 99 deletions
@ -0,0 +1,49 @@
@@ -0,0 +1,49 @@
|
||||
package org.springframework.mapping.support; |
||||
|
||||
import java.util.Stack; |
||||
|
||||
import org.springframework.core.NamedThreadLocal; |
||||
|
||||
class SpelMappingContextHolder { |
||||
|
||||
private static final ThreadLocal<Stack<Object>> mappingContextHolder = new NamedThreadLocal<Stack<Object>>( |
||||
"Mapping context"); |
||||
|
||||
public static void push(Object source) { |
||||
Stack<Object> context = getContext(); |
||||
if (context == null) { |
||||
context = new Stack<Object>(); |
||||
mappingContextHolder.set(context); |
||||
} |
||||
context.add(source); |
||||
} |
||||
|
||||
public static boolean contains(Object source) { |
||||
return getContext().contains(source); |
||||
} |
||||
|
||||
public static void pop() { |
||||
Stack<Object> context = getContext(); |
||||
if (context != null) { |
||||
context.pop(); |
||||
if (context.isEmpty()) { |
||||
mappingContextHolder.set(null); |
||||
} |
||||
} |
||||
} |
||||
|
||||
public static String getLevel() { |
||||
int size = getContext().size(); |
||||
StringBuilder builder = new StringBuilder(); |
||||
for (int i = 0; i < size; i++) { |
||||
builder.append("*"); |
||||
} |
||||
builder.append(" "); |
||||
return builder.toString(); |
||||
} |
||||
|
||||
private static Stack<Object> getContext() { |
||||
return mappingContextHolder.get(); |
||||
} |
||||
|
||||
} |
||||
@ -1,41 +0,0 @@
@@ -1,41 +0,0 @@
|
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.core.convert.converter; |
||||
|
||||
/** |
||||
* A meta interface a Converter may implement to describe what types he can convert between. |
||||
* |
||||
* Implementing this interface is required when registering converters that do not declare their |
||||
* parameterized types S and T with a {@link org.springframework.core.convert.ConversionService}. |
||||
* |
||||
* @author Keith Donald |
||||
* @since 3.0 |
||||
* @see Converter |
||||
*/ |
||||
public interface ConverterInfo { |
||||
|
||||
/** |
||||
* The source type the converter converts from. |
||||
*/ |
||||
Class<?> getSourceType(); |
||||
|
||||
/** |
||||
* The target type the converter converts to. |
||||
*/ |
||||
Class<?> getTargetType(); |
||||
|
||||
} |
||||
Loading…
Reference in new issue