You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Marcel Reutegger (JIRA)" <ji...@apache.org> on 2005/08/08 11:41:38 UTC

[jira] Commented: (JCR-121) JCRTest.java (First Steps example code) creates a StringValue with "new"

    [ http://issues.apache.org/jira/browse/JCR-121?page=comments#action_12317960 ] 

Marcel Reutegger commented on JCR-121:
--------------------------------------

Fixed in revision: 230778

Changes will be published when the site is generated the next time.

> JCRTest.java (First Steps example code) creates a StringValue with "new"
> ------------------------------------------------------------------------
>
>          Key: JCR-121
>          URL: http://issues.apache.org/jira/browse/JCR-121
>      Project: Jackrabbit
>         Type: Bug
>   Components: docs
>     Reporter: Miro Walker
>     Assignee: Marcel Reutegger
>     Priority: Minor

>
> The JCRTest.java file described in the First Steps document (http://incubator.apache.org/jackrabbit/firststeps.html) on the jackrabbit incubator website contains a line that attempts to create a StringValue using new, rather than using the ValueFactory interface. This causes the code to fail to compile - perhaps an initiative test, but could be off-putting...
> Simple fix is to swap the line:
>  n.setProperty("testprop", new StringValue("Hello, World."));
> to 
> n.setProperty("testprop", session.getValueFactory().createValue("Hello, World."));

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira