You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(178) |
Feb
(169) |
Mar
(286) |
Apr
(117) |
May
(98) |
Jun
(68) |
Jul
(63) |
Aug
(121) |
Sep
(88) |
Oct
(124) |
Nov
(2) |
Dec
(111) |
2007 |
Jan
(224) |
Feb
(69) |
Mar
(10) |
Apr
(72) |
May
(7) |
Jun
(21) |
Jul
(33) |
Aug
(35) |
Sep
(12) |
Oct
(22) |
Nov
(5) |
Dec
(6) |
2008 |
Jan
(2) |
Feb
(10) |
Mar
(39) |
Apr
(58) |
May
(34) |
Jun
(9) |
Jul
(27) |
Aug
(10) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
From: Eric C <ecr...@us...> - 2006-03-05 06:16:11
|
User: ecrutchfield Date: 06/03/04 22:16:10 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/src/main - New directory |
From: Vance K. <va...@us...> - 2006-03-05 06:01:26
|
User: vancek Date: 06/03/04 22:01:26 Modified: andromda-ejb3/src/main/uml EJB3MetafacadeModel.xml.zip Log: added entity lifecycle callback method checks to EJB3OperationFacade Revision Changes Path 1.22 +174 -175 cartridges/andromda-ejb3/src/main/uml/EJB3MetafacadeModel.xml.zip <<Binary file>> |
From: Vance K. <va...@us...> - 2006-03-05 06:00:44
|
User: vancek Date: 06/03/04 22:00:43 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades EJB3OperationFacadeLogicImpl.java Log: implemented entity lifecycle callback method checks Revision Changes Path 1.4 +70 -0 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades/EJB3OperationFacadeLogicImpl.java Index: EJB3OperationFacadeLogicImpl.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/metafacades/EJB3OperationFacadeLogicImpl.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -w -r1.3 -r1.4 --- EJB3OperationFacadeLogicImpl.java 6 Jan 2006 13:58:18 -0000 1.3 +++ EJB3OperationFacadeLogicImpl.java 5 Mar 2006 06:00:43 -0000 1.4 @@ -42,4 +42,74 @@ return this.hasStereotype(EJB3Profile.STEREOTYPE_SELECT_METHOD); } + /** + * @see org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogic#handleIsPrePersist() + */ + protected boolean handleIsPrePersist() + { + return this.hasStereotype(EJB3Profile.STEREOTYPE_PRE_PERSIST); + } + + /** + * @see org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogic#handleIsPostPersist() + */ + protected boolean handleIsPostPersist() + { + return this.hasStereotype(EJB3Profile.STEREOTYPE_POST_PERSIST); + } + + /** + * @see org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogic#handleIsPreRemove() + */ + protected boolean handleIsPreRemove() + { + return this.hasStereotype(EJB3Profile.STEREOTYPE_PRE_REMOVE); + } + + /* + * @see org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogic#handleIsPostRemove() + */ + protected boolean handleIsPostRemove() + { + return this.hasStereotype(EJB3Profile.STEREOTYPE_POST_REMOVE); + } + + /** + * @see org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogic#handleIsPreUpdate() + */ + protected boolean handleIsPreUpdate() + { + return this.hasStereotype(EJB3Profile.STEREOTYPE_PRE_UPDATE); + } + + /** + * @see org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogic#handleIsPostUpdate() + */ + protected boolean handleIsPostUpdate() + { + return this.hasStereotype(EJB3Profile.STEREOTYPE_POST_UPDATE); + } + + /** + * @see org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogic#handleIsPostLoad() + */ + protected boolean handleIsPostLoad() + { + return this.hasStereotype(EJB3Profile.STEREOTYPE_POST_LOAD); + } + + /** + * @see org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogic#handleIsLifecycleCallback() + */ + protected boolean handleIsLifecycleCallback() + { + return this.isPostLoad() || + this.isPostPersist() || + this.isPostRemove() || + this.isPostUpdate() || + this.isPrePersist() || + this.isPreRemove() || + this.isPreUpdate(); + } + } \ No newline at end of file |
From: Vance K. <va...@us...> - 2006-03-05 05:59:41
|
User: vancek Date: 06/03/04 21:59:40 Modified: andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3 EJB3Profile.java Log: added entity lifecycle callback stereotype declarations Revision Changes Path 1.16 +39 -4 cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Profile.java Index: EJB3Profile.java =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/java/org/andromda/cartridges/ejb3/EJB3Profile.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -w -r1.15 -r1.16 --- EJB3Profile.java 2 Mar 2006 10:30:49 -0000 1.15 +++ EJB3Profile.java 5 Mar 2006 05:59:40 -0000 1.16 @@ -134,25 +134,60 @@ public static final String STEREOTYPE_FINDER_RESULT_TYPE_MAX = profile.get("RESULT_TYPE_MAX"); /** - * Specifies the operation as a post-construct callback + * Specifies the session/message-driven bean operation as a post-construct callback */ public static final String STEREOTYPE_POST_CONSTRUCT = profile.get("POST_CONSTRUCT"); /** - * Specifies the operation as a pre-destroy callback + * Specifies the session/message-driven bean operation as a pre-destroy callback */ public static final String STEREOTYPE_PRE_DESTROY = profile.get("PRE_DESTROY"); /** - * Specifies the operation as a post-activate callback + * Specifies the session bean operation as a post-activate callback */ public static final String STEREOTYPE_POST_ACTIVATE = profile.get("POST_ACTIVATE"); /** - * Specifies the operation as a pre-passivate callback + * Specifies the session bean operation as a pre-passivate callback */ public static final String STEREOTYPE_PRE_PASSIVATE = profile.get("PRE_PASSIVATE"); + /** + * Specifies the entity bean operation as a pre-persist callback + */ + public static final String STEREOTYPE_PRE_PERSIST = profile.get("PRE_PERSIST"); + + /** + * Specifies the entity operation as a post-persist callback + */ + public static final String STEREOTYPE_POST_PERSIST = profile.get("POST_PERSIST"); + + /** + * Specifies the entity bean operation as a pre-remove callback + */ + public static final String STEREOTYPE_PRE_REMOVE = profile.get("PRE_REMOVE"); + + /** + * Specifies the entity bean operation as a post-remove callback + */ + public static final String STEREOTYPE_POST_REMOVE = profile.get("POST_REMOVE"); + + /** + * Specifies the entity bean operation as a pre-update callback + */ + public static final String STEREOTYPE_PRE_UPDATE = profile.get("PRE_UPDATE"); + + /** + * Specifies the entity bean operation as a post-update callback + */ + public static final String STEREOTYPE_POST_UPDATE = profile.get("POST_UPDATE"); + + /** + * Specifies the entity bean operation as a post-load callback + */ + public static final String STEREOTYPE_POST_LOAD = profile.get("POST_LOAD"); + /* ----------------- Tagged Values -------------------- */ /** |
From: Vance K. <va...@us...> - 2006-03-05 05:58:48
|
User: vancek Date: 06/03/04 21:58:47 Modified: andromda-ejb3/src/main/resources/META-INF/andromda profile.xml Log: added entity lifecycle callback stereotype elements Revision Changes Path 1.20 +88 -0 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/profile.xml Index: profile.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/profile.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -u -w -r1.19 -r1.20 --- profile.xml 2 Mar 2006 10:28:35 -0000 1.19 +++ profile.xml 5 Mar 2006 05:58:47 -0000 1.20 @@ -314,6 +314,94 @@ Stateful Session Bean Operation </appliedOnElement> </element> + + <element name="PRE_PERSIST"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for an entity bean and will + be invoked before the entity is created in the + database and will cascade to all associated + cascadable entities. + </documentation> + <value>PrePersist</value> + <appliedOnElement> + Entity Bean Operation + </appliedOnElement> + </element> + <element name="POST_PERSIST"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for an entity bean and will + be invoked after the entity is created in the + database and will cascade to all associated + cascadable entities. + </documentation> + <value>PostPersist</value> + <appliedOnElement> + Entity Bean Operation + </appliedOnElement> + </element> + <element name="PRE_REMOVE"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for an entity bean and will + be invoked before the entity is deleted from the + database and will cascade to all associated + cascadable entities. + </documentation> + <value>PreRemove</value> + <appliedOnElement> + Entity Bean Operation + </appliedOnElement> + </element> + <element name="POST_REMOVE"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for an entity bean and will + be invoked after the entity is deleted from the + database and will cascade to all associated + cascadable entities. + </documentation> + <value>PostRemove</value> + <appliedOnElement> + Entity Bean Operation + </appliedOnElement> + </element> + <element name="PRE_UPDATE"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for an entity bean and will + be invoked right before the database is updated. + </documentation> + <value>PreUpdate</value> + <appliedOnElement> + Entity Bean Operation + </appliedOnElement> + </element> + <element name="POST_UPDATE"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for an entity bean and will + be invoked immediately after the database has been + updated. + </documentation> + <value>PostUpdate</value> + <appliedOnElement> + Entity Bean Operation + </appliedOnElement> + </element> + <element name="POST_LOAD"> + <documentation> + Specifies that the associated operation is a lifecycle + callback handler for an entity bean and will + be invoked right after the data has been loaded + from the database and associated with the entity. + </documentation> + <value>PostLoad</value> + <appliedOnElement> + Entity Bean Operation + </appliedOnElement> + </element> </elementGroup> <elementGroup name="Tagged Values"> <element name="ATTRIBUTE_PERSISTENCE_OPTIONAL"> |
From: Vance K. <va...@us...> - 2006-03-05 05:57:39
|
User: vancek Date: 06/03/04 21:57:37 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionRemote.vsl Log: check business methods are not lifecycle callbacks Revision Changes Path 1.5 +7 -4 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionRemote.vsl Index: SessionRemote.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionRemote.vsl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- SessionRemote.vsl 9 Feb 2006 07:14:21 -0000 1.4 +++ SessionRemote.vsl 5 Mar 2006 05:57:37 -0000 1.5 @@ -17,7 +17,7 @@ #set ($constants = $service.constants) #if (!$constants.empty) - // ---------- accessors for constants ----------- + // ---------- Accessors For Constants ----------- #**##foreach($constant in $constants) ## Only expose the method if it is public. @@ -34,7 +34,7 @@ #set ($attributes = $service.instanceAttributes) #if (!$attributes.empty) - // --------------- attributes --------------------- + // --------------- Attributes --------------------- #**##foreach ($attribute in $attributes) ## Only expose the method to the component interface if it is public. @@ -59,11 +59,14 @@ #set ($operations = $service.businessOperations) #if (!$operations.empty) - // ------------ business methods ----------------- + // ------------ Business Methods ----------------- #**##foreach ($operation in $operations) +## +## Only expose methods that are not lifecycle callbacks ## Only expose public methods with remote view type accessability -#* *##if ($operation.visibility == "public" && ($operation.viewTypeRemote || $operation.viewTypeBoth)) +## +#* *##if (!$operation.lifecycleCallback && $operation.visibility == "public" && ($operation.viewTypeRemote || $operation.viewTypeBoth)) /** $operation.getDocumentation(" * ") */ |
From: Vance K. <va...@us...> - 2006-03-05 05:56:45
|
User: vancek Date: 06/03/04 21:56:43 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionLocal.vsl Log: check business methods are not lifecycle callbacks Revision Changes Path 1.4 +7 -4 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionLocal.vsl Index: SessionLocal.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionLocal.vsl,v retrieving revision 1.3 retrieving revision 1.4 diff -u -w -r1.3 -r1.4 --- SessionLocal.vsl 17 Jan 2006 03:15:36 -0000 1.3 +++ SessionLocal.vsl 5 Mar 2006 05:56:43 -0000 1.4 @@ -17,7 +17,7 @@ #set ($constants = $service.constants) #if (!$constants.empty) - // ----------- accessors for constants ------------ + // ----------- Accessors For Constants ------------ #**##foreach($constant in $constants) ## Only expose the method if it is public. @@ -34,7 +34,7 @@ #set ($attributes = $service.instanceAttributes) #if (!$attributes.empty) - // --------------- attributes --------------------- + // --------------- Attributes --------------------- #**##foreach ($attribute in $attributes) ## Only expose the method to the component interface if it is public. @@ -59,11 +59,14 @@ #set ($operations = $service.businessOperations) #if (!$operations.empty) - // ------------ business methods ----------------- + // ------------ Business Methods ----------------- #**##foreach ($operation in $operations) +## +## Only expose methods that are not lifecycle callbacks ## Only expose public methods with local view type accessability -#* *##if ($operation.visibility == "public" && ($operation.viewTypeLocal || $operation.viewTypeBoth)) +## +#* *##if (!$operation.lifecycleCallback && $operation.visibility == "public" && ($operation.viewTypeLocal || $operation.viewTypeBoth)) /** $operation.getDocumentation(" * ") */ |
From: Vance K. <va...@us...> - 2006-03-05 05:55:52
|
User: vancek Date: 06/03/04 21:55:52 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionBeanImpl.vsl Log: added support for lifecycle callbacks Revision Changes Path 1.9 +28 -8 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionBeanImpl.vsl Index: SessionBeanImpl.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionBeanImpl.vsl,v retrieving revision 1.8 retrieving revision 1.9 diff -u -w -r1.8 -r1.9 --- SessionBeanImpl.vsl 8 Feb 2006 10:09:28 -0000 1.8 +++ SessionBeanImpl.vsl 5 Mar 2006 05:55:52 -0000 1.9 @@ -48,9 +48,10 @@ #set ($operations = $service.businessOperations) #if (!$operations.empty) - // -------- Business Methods -------------- + // -------- Business Methods Impl -------------- #**##foreach ($operation in $operations) +#* *##if (!$operation.lifecycleCallback) /** * @see ${service.fullyQualifiedServiceName}#${operation.getSignature(false)} */ @@ -72,11 +73,30 @@ #* *##end #**##end +#**##end #end +#if (!$operations.empty) + + // -------- Lifecycle Callback Impl -------------- + +#**##foreach ($operation in $operations) +#* *##if ($operation.lifecycleCallback) + /** + * @see ${service.fullyQualifiedServiceName}#${operation.name}() + */ + protected void handle${stringUtils.capitalize(${operation.name})}() + { + // TODO put your lifecycle callback implementation here. + } + +#* *##end +#**##end +#end + // ----------- Generic Methods ----------- /** - * @see ${service.fullyQualifiedServiceName}#remove()} + * @see ${service.fullyQualifiedServiceName}#remove() */ protected void handleRemove() { |
From: Vance K. <va...@us...> - 2006-03-05 05:54:28
|
User: vancek Date: 06/03/04 21:54:26 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionBean.vsl Log: separated lifecycle callback generation from session operations generated an abstract handle operation for every callback Revision Changes Path 1.20 +58 -37 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionBean.vsl Index: SessionBean.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionBean.vsl,v retrieving revision 1.19 retrieving revision 1.20 diff -u -w -r1.19 -r1.20 --- SessionBean.vsl 2 Mar 2006 10:24:34 -0000 1.19 +++ SessionBean.vsl 5 Mar 2006 05:54:26 -0000 1.20 @@ -275,27 +275,13 @@ // -------- Business Methods -------------- #**##foreach ($operation in $operations) +## +## Check that operation is NOT a lifecycle callback +## +#* *##if (!$operation.lifecycleCallback) /** $operation.getDocumentation(" * ") */ -## -## If this operation is a lifecycle callback, then exclude all other -## annotations except the callback annotations -## -#* *##if ($operation.lifecycleCallback) -#* *##if ($operation.postConstruct) - @javax.ejb.PostConstruct -#* *##elseif ($operation.preDestroy) - @javax.ejb.PreDestroy -#* *##end -#* *##if ($service.stateful) -#* *##if ($operation.postActivate) - @javax.ejb.PostActivate -#* *##elseif ($operation.prePassivate) - @javax.ejb.PrePassivate -#* *##end -#* *##end -#* *##else #* *##if (!$service.transactionManagementBean) #* *##if ($operation.transactionType) @javax.ejb.TransactionAttribute(javax.ejb.TransactionAttributeType.${operation.transactionType}) @@ -328,7 +314,6 @@ #* *##if ($operation.excludeClassInterceptors) @javax.ejb.ExcludeClassInterceptors #* *##end -#* *##end $operation.visibility $operation.returnType.fullyQualifiedName $operation.signature #* *##if ($operation.exceptionsPresent) $operation.throwsClause @@ -345,9 +330,9 @@ #* *##end #* *##end #* *##end -#if ($operation.constraintsPresent) +#* *##if ($operation.constraintsPresent) this.$operation.preconditionCall; -#end +#* *##end try { #* *##set ($call = "this.${operation.implementationCall};") @@ -390,7 +375,43 @@ throws java.lang.Exception; #**##end +#**##end #end +#if (!$operations.empty) + + // -------- Lifecycle Callbacks -------------- + +#**##foreach ($operation in $operations) +#* *##if ($operation.lifecycleCallback) + /** +$operation.getDocumentation(" * ") + */ +#* *##if ($operation.postConstruct) + @javax.ejb.PostConstruct +#* *##elseif ($operation.preDestroy) + @javax.ejb.PreDestroy +#* *##end +#* *##if ($service.stateful) +#* *##if ($operation.postActivate) + @javax.ejb.PostActivate +#* *##elseif ($operation.prePassivate) + @javax.ejb.PrePassivate +#* *##end +#* *##end + $operation.visibility void ${operation.name}() + { + this.handle${stringUtils.capitalize(${operation.name})}(); + } + + /** + * Performs the core logic for {@link #${operation.name}()} + */ + protected abstract $operation.returnType.fullyQualifiedName handle${stringUtils.capitalize(${operation.name})}(); + +#* *##end +#**##end +#end + // ------------ Generic Methods ------------ /** |
From: Vance K. <va...@us...> - 2006-03-05 05:51:58
|
User: vancek Date: 06/03/04 21:51:56 Modified: andromda-ejb3/src/main/resources/templates/ejb3 Entity.vsl Log: added support for lifecycle callbacks Revision Changes Path 1.15 +42 -8 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/Entity.vsl Index: Entity.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/Entity.vsl,v retrieving revision 1.14 retrieving revision 1.15 diff -u -w -r1.14 -r1.15 --- Entity.vsl 6 Feb 2006 02:46:38 -0000 1.14 +++ Entity.vsl 5 Mar 2006 05:51:55 -0000 1.15 @@ -100,6 +100,7 @@ // -------------- Entity Methods ----------------- #**##foreach ($operation in $operations) +#* *##if (!$operation.lifecycleCallback) #* *##set ($signature = $operation.signature) #* *##set ($visibility = $operation.visibility.toString()) #* *##set ($returnType = $operation.returnType.fullyQualifiedName) @@ -121,5 +122,38 @@ } #**##end +#**##end +#end +#if (!$operations.empty) + + // --------------- Lifecycle callbacks ----------------- + +#**##foreach ($operation in $operations) +#* *##if ($operation.lifecycleCallback) + /** +$operation.getDocumentation(" * ") + */ +#* *##if ($operation.prePersist) + @javax.persistence.PrePersist +#* *##elseif ($operation.postPersist) + @javax.persistence.PostPersist +#* *##elseif ($operation.preRemove) + @javax.persistence.PreRemove +#* *##elseif ($operation.postRemove) + @javax.persistence.PostRemove +#* *##elseif ($operation.preUpdate) + @javax.persistence.PreUpdate +#* *##elseif ($operation.postUpdate) + @javax.persistence.PostUpdate +#* *##elseif ($operation.postLoad) + @javax.persistence.PostLoad +#* *##end + public void ${operation.name}() + { + // TODO put your lifecycle callback implementation here. + } + +#* *##end +#**##end #end } \ No newline at end of file |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:47
|
User: ecrutchfield Date: 06/03/04 12:12:46 plugins/andromdapp/projects/csharp/maven2/src/site/xdocs - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:47
|
User: ecrutchfield Date: 06/03/04 12:12:45 plugins/andromdapp/projects/csharp/maven2/src/site - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:46
|
User: ecrutchfield Date: 06/03/04 12:12:34 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/web - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:36
|
User: ecrutchfield Date: 06/03/04 12:12:22 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/schema-export - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:29
|
User: ecrutchfield Date: 06/03/04 12:12:17 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/src - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:27
|
User: ecrutchfield Date: 06/03/04 12:12:21 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/src/uml - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:17
|
User: ecrutchfield Date: 06/03/04 12:12:11 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/conf/vs2003-mappings - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:14
|
User: ecrutchfield Date: 06/03/04 12:12:02 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda/conf - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:07
|
User: ecrutchfield Date: 06/03/04 12:12:00 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/lib/nhibernate/vs2005 - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:06
|
User: ecrutchfield Date: 06/03/04 12:12:01 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/lib/uip - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:05
|
User: ecrutchfield Date: 06/03/04 12:12:01 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/mda - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:12:01
|
User: ecrutchfield Date: 06/03/04 12:11:57 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/lib/nhibernate - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:11:58
|
User: ecrutchfield Date: 06/03/04 12:11:55 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/lib - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:11:57
|
User: ecrutchfield Date: 06/03/04 12:11:40 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/core - New directory |
From: Eric C <ecr...@us...> - 2006-03-04 20:11:40
|
User: ecrutchfield Date: 06/03/04 12:11:35 plugins/andromdapp/projects/csharp/maven2/src/main/resources/templates/csharp/maven2/common - New directory |