add Schema-level customization attributes: add-prefixes, add-suffixes
---------------------------------------------------------------------

                 Key: JIBX-261
                 URL: http://jira.codehaus.org/browse/JIBX-261
             Project: JiBX
          Issue Type: Improvement
            Reporter: maria aschauer


add-prefix:
Prefix string to be added from schema names before converting to Java names. 
The value is a prefix string.

add-suffix:
Suffix strings to be added from schema names before converting to Java names. 
The value is a suffix string.

e.g.:
<xsd:complexType name="RelationType">
        <xsd:sequence>
                <xsd:element name="id" type="xsd:string" />
                <xsd:element name="name" type="xsd:string" />
        </xsd:sequence>
</xsd:complexType>

should result in a class named RelationTypeDTO

public class RelationTypeDTO
{
    private String id;
    private String name;
    
    ...
}


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

        

------------------------------------------------------------------------------
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
_______________________________________________
jibx-devs mailing list
jibx-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-devs

Reply via email to