[ 
https://issues.apache.org/jira/browse/JDO-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12714488#action_12714488
 ] 

Michael Bouschen commented on JDO-615:
--------------------------------------

I see the same problem as described by Michelle. 

However, I think the patch file is ok to start with. After applying the patch 
you simply need to rename ComponentMetadata.java to TypeMetadata.java:
  svn mv api2/src/java/javax/jdo/metadata/ComponentMetadata.java 
api2/src/java/javax/jdo/metadata/TypeMetadata
With this change I can build api2 w/o problems.

I tried creating a patch file after I "svn renamed" the file. But applying the 
resulting patch file runs into the same problem I faced when trying Matthew's 
first patch type-patch. It fails to update TypeMetadata.java. 

So I think the best way is to use type-2.patch, svn rename ComponentMetadata 
and then check in the result.


> MetaData specification API
> --------------------------
>
>                 Key: JDO-615
>                 URL: https://issues.apache.org/jira/browse/JDO-615
>             Project: JDO
>          Issue Type: New Feature
>          Components: api2, specification, tck2
>            Reporter: Andy Jefferson
>            Assignee: Craig Russell
>             Fix For: JDO 2 maintenance release 3
>
>         Attachments: BooleanProperties.patch, jdometadata-6.patch, 
> type-2.patch, type.patch
>
>
> We can specify MetaData via XML or annotations. The only way missing is via 
> an API. I propose mirroring the XML structure with interfaces of the form
> public interface MetaData
> {
>     addExtension(String key, String value);
>     removeExtension(String key, String value);
>     ...
> }
> public interface FileMetaData
> {
>     addPackage(PackageMetaData pmd);
>     ...
> }
> public interface PackageMetaData
> {
>     addClass(ClassMetaData cmd)
>     ...
> }
> public interface ClassMetaData
> {
>     addField(FieldMetaData fmd)
>     ...
> }
> public interface FieldMetaData
> {
>     setInheritance(InheritanceMetaData inhmd)
>     ...
> }
> and so on.
> We would then require a method on the PMF to register the metadata.
> If there are no objections to such a feature I'll propose a patch to try to 
> provide all current JDO2 capabilities.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to