Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@193 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
23 changed files with 41 additions and 1 deletions
@ -0,0 +1,28 @@
@@ -0,0 +1,28 @@
|
||||
/* |
||||
* Copyright 2002-2006 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.beans.factory; |
||||
|
||||
/** |
||||
* Used in the tests for the FieldRetrievingFactoryBean class
|
||||
* (c.f. FieldRetrievingFactoryBeanTests) |
||||
* |
||||
* @author Rick Evans |
||||
*/ |
||||
class PackageLevelVisibleBean { |
||||
|
||||
public static final String CONSTANT = "Wuby"; |
||||
} |
||||
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> |
||||
|
||||
<properties version="1.0"> |
||||
|
||||
<entry key="tb.array[0].age">99</entry> |
||||
<entry key="tb.list[1].name">test</entry> |
||||
|
||||
</properties> |
||||
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
tb.array[0].age=99 |
||||
tb.list[1].name=test |
||||
Loading…
Reference in new issue