You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by "Laurie Harper (JIRA)" <ji...@apache.org> on 2005/05/16 22:52:08 UTC

[jira] Created: (OJB-43) Persistent inner classes and xdoclet

Persistent inner classes and xdoclet
------------------------------------

         Key: OJB-43
         URL: http://issues.apache.org/jira/browse/OJB-43
     Project: OJB
        Type: Bug
    Versions: 1.0.3    
    Reporter: Laurie Harper


To reference an inner class, xdoclet requires it to be referenced as Outer.Inner while OJB requires it to be referenced as Outer$Inner. This makes it impossible to get a correct mapping using the xdoclet plugin. Here's a truncated example that demonstrates the problem:

/**
 * @ojb.class
 */
public class History {
    /**
     * @ojb.class
     */
    public static class Change {
        // change log info...
    }

    /**
     * @ojb.collection foreignkey="..."
     *         element-class-ref="...History$Change"
     */
    private List changes;
} 

xdoclet will report "Collection changes in class ...History references an unknown class ...History$Change." Replacing the '$' with a '.' will allow xdoclet to generate the mapping, but OJB will fail to load the repository, reporting a ClassNotFoundException for ...History.Change. The repository_user.xml needs to be manually editted after generation by xdoclet.

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org


[jira] Resolved: (OJB-43) Persistent inner classes and xdoclet

Posted by "Thomas Dudziak (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/OJB-43?page=all ]
     
Thomas Dudziak resolved OJB-43:
-------------------------------

    Fix Version: 1.0.x CVS
                 1.1 CVS
     Resolution: Fixed

Fixed in CVS

> Persistent inner classes and xdoclet
> ------------------------------------
>
>          Key: OJB-43
>          URL: http://issues.apache.org/jira/browse/OJB-43
>      Project: OJB
>         Type: Bug
>     Versions: 1.0.3
>     Reporter: Laurie Harper
>     Assignee: Thomas Dudziak
>      Fix For: 1.0.x CVS, 1.1 CVS

>
> To reference an inner class, xdoclet requires it to be referenced as Outer.Inner while OJB requires it to be referenced as Outer$Inner. This makes it impossible to get a correct mapping using the xdoclet plugin. Here's a truncated example that demonstrates the problem:
> /**
>  * @ojb.class
>  */
> public class History {
>     /**
>      * @ojb.class
>      */
>     public static class Change {
>         // change log info...
>     }
>     /**
>      * @ojb.collection foreignkey="..."
>      *         element-class-ref="...History$Change"
>      */
>     private List changes;
> } 
> xdoclet will report "Collection changes in class ...History references an unknown class ...History$Change." Replacing the '$' with a '.' will allow xdoclet to generate the mapping, but OJB will fail to load the repository, reporting a ClassNotFoundException for ...History.Change. The repository_user.xml needs to be manually editted after generation by xdoclet.

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org


[jira] Assigned: (OJB-43) Persistent inner classes and xdoclet

Posted by "Thomas Dudziak (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/OJB-43?page=all ]

Thomas Dudziak reassigned OJB-43:
---------------------------------

    Assign To: Thomas Dudziak

> Persistent inner classes and xdoclet
> ------------------------------------
>
>          Key: OJB-43
>          URL: http://issues.apache.org/jira/browse/OJB-43
>      Project: OJB
>         Type: Bug
>     Versions: 1.0.3
>     Reporter: Laurie Harper
>     Assignee: Thomas Dudziak

>
> To reference an inner class, xdoclet requires it to be referenced as Outer.Inner while OJB requires it to be referenced as Outer$Inner. This makes it impossible to get a correct mapping using the xdoclet plugin. Here's a truncated example that demonstrates the problem:
> /**
>  * @ojb.class
>  */
> public class History {
>     /**
>      * @ojb.class
>      */
>     public static class Change {
>         // change log info...
>     }
>     /**
>      * @ojb.collection foreignkey="..."
>      *         element-class-ref="...History$Change"
>      */
>     private List changes;
> } 
> xdoclet will report "Collection changes in class ...History references an unknown class ...History$Change." Replacing the '$' with a '.' will allow xdoclet to generate the mapping, but OJB will fail to load the repository, reporting a ClassNotFoundException for ...History.Change. The repository_user.xml needs to be manually editted after generation by xdoclet.

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org