Author: schof
Date: Sun Aug 20 16:10:09 2006
New Revision: 433080
URL: http://svn.apache.org/viewvc?rev=433080&view=rev
Log:
Documentation still referred to the deprecated Value annotation. Changed to
the preferred Property annotation.
Modified:
shale/framework/trunk/src/site/xdoc/features-tiger-extensions.xml
Modified: shale/framework/trunk/src/site/xdoc/features-tiger-extensions.xml
URL:
http://svn.apache.org/viewvc/shale/framework/trunk/src/site/xdoc/features-tiger-extensions.xml?rev=433080&r1=433079&r2=433080&view=diff
==============================================================================
--- shale/framework/trunk/src/site/xdoc/features-tiger-extensions.xml (original)
+++ shale/framework/trunk/src/site/xdoc/features-tiger-extensions.xml Sun Aug
20 16:10:09 2006
@@ -168,14 +168,14 @@
import org.apache.shale.tiger.managed.Bean;
import org.apache.shale.tiger.managed.Scope;
- import org.apache.shale.tiger.managed.Value;
+ import org.apache.shale.tiger.managed.Property;
// Define a managed bean named "mybean" to be put in session scope
@Bean(name="mybean" scope=Scope.SESSION)
public class MyBeanClass { // No required superclass or interface
// Name a property that will be initialized via expression
- @Value("#{otherBean.otherProperty}")
+ @Property(value="#{otherBean.otherProperty}")
private String name = null;
public String getName() { return this.name; }