From: Vance K. <va...@us...> - 2006-02-20 05:18:11
|
User: vancek Date: 06/02/19 21:18:09 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Globals.java Log: defined LABEL_COLLECTION_NAME_PATTERN and LABEL_SINGLE_NAME_PATTERN statics Revision Changes Path 1.7 +12 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java Index: EJB3Globals.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Globals.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -w -r1.6 -r1.7 --- EJB3Globals.java 17 Feb 2006 02:36:29 -0000 1.6 +++ EJB3Globals.java 20 Feb 2006 05:18:09 -0000 1.7 @@ -18,6 +18,18 @@ */ public static final String JNDI_NAME_PREFIX = "jndiNamePrefix"; + /** + * The property which stores the pattern defining the display attribute + * label name when it's of type Collection. + */ + public static final String LABEL_COLLECTION_NAME_PATTERN = "labelCollectionNamePattern"; + + /** + * The property which stores the pattern defining the display attribute + * label name when it's not of type Collection. + */ + public static final String LABEL_SINGLE_NAME_PATTERN = "labelSingleNamePattern"; + // --------------- Constants --------------------- /** |