Changeset 4864
- Timestamp:
- Feb 16, 2014, 6:03:04 PM (11 years ago)
- Location:
- jomc/trunk/jomc-ant-tasks/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified jomc/trunk/jomc-ant-tasks/src/main/java/org/jomc/ant/WriteModelTask.java ¶
r4607 r4864 79 79 private File modelFile; 80 80 81 /** 82 * File to write the specification to. 83 * @since 1.6 84 */ 85 private File specificationModelFile; 86 87 /** 88 * File to write the instance to. 89 * @since 1.6 90 */ 91 private File instanceModelFile; 92 93 /** 94 * File to write the module to. 95 * @since 1.6 96 */ 97 private File moduleModelFile; 98 81 99 /** Creates a new {@code WriteModelTask} instance. */ 82 100 public WriteModelTask() … … 136 154 { 137 155 this.modelFile = value; 156 } 157 158 /** 159 * Gets the file to write the specification to. 160 * 161 * @return The file to write the specification to or {@code null}. 162 * 163 * @see #setSpecificationModelFile(java.io.File) 164 * 165 * @since 1.6 166 */ 167 public File getSpecificationModelFile() 168 { 169 return this.specificationModelFile; 170 } 171 172 /** 173 * Sets the file to write the specification to. 174 * 175 * @param value The new file to write the specification to or {@code null}. 176 * 177 * @see #getSpecificationModelFile() 178 * 179 * @since 1.6 180 */ 181 public void setSpecificationModelFile( final File value ) 182 { 183 this.specificationModelFile = value; 184 } 185 186 /** 187 * Gets the file to write the instance to. 188 * 189 * @return The file to write the instance to or {@code null}. 190 * 191 * @see #setInstanceModelFile(java.io.File) 192 * 193 * @since 1.6 194 */ 195 public File getInstanceModelFile() 196 { 197 return this.instanceModelFile; 198 } 199 200 /** 201 * Sets the file to write the instance to. 202 * 203 * @param value The new file to write the instance to or {@code null}. 204 * 205 * @see #getInstanceModelFile() 206 * 207 * @since 1.6 208 */ 209 public void setInstanceModelFile( final File value ) 210 { 211 this.instanceModelFile = value; 212 } 213 214 /** 215 * Gets the file to write the module to. 216 * 217 * @return The file to write the module to or {@code null}. 218 * 219 * @see #setModuleModelFile(java.io.File) 220 * 221 * @since 1.6 222 */ 223 public File getModuleModelFile() 224 { 225 return this.moduleModelFile; 226 } 227 228 /** 229 * Sets the file to write the module to. 230 * 231 * @param value The new file to write the module to or {@code null}. 232 * 233 * @see #getModuleModelFile() 234 * 235 * @since 1.6 236 */ 237 public void setModuleModelFile( final File value ) 238 { 239 this.moduleModelFile = value; 138 240 } 139 241 … … 351 453 if ( s != null ) 352 454 { 353 displayModel.getAny().add( s ); 455 displayModel.getAny().add( new org.jomc.model.ObjectFactory().createSpecification( s ) ); 456 457 if ( this.getSpecificationModelFile() != null ) 458 { 459 this.log( Messages.getMessage( "writingSpecification", s.getIdentifier(), 460 this.getSpecificationModelFile().getAbsolutePath() ), 461 Project.MSG_INFO ); 462 463 marshaller.marshal( new org.jomc.model.ObjectFactory().createSpecification( s ), 464 this.getSpecificationModelFile() ); 465 466 } 354 467 } 355 468 … … 357 470 if ( i != null ) 358 471 { 359 displayModel.getAny().add( i ); 472 displayModel.getAny().add( new org.jomc.model.ObjectFactory().createInstance( i ) ); 473 474 if ( this.getInstanceModelFile() != null ) 475 { 476 this.log( Messages.getMessage( "writingInstance", i.getIdentifier(), 477 this.getInstanceModelFile().getAbsolutePath() ), 478 Project.MSG_INFO ); 479 480 marshaller.marshal( new org.jomc.model.ObjectFactory().createInstance( i ), 481 this.getInstanceModelFile() ); 482 483 } 360 484 } 361 485 … … 363 487 if ( m != null ) 364 488 { 365 displayModel.getAny().add( m ); 489 displayModel.getAny().add( new org.jomc.model.ObjectFactory().createModule( m ) ); 490 491 if ( this.getModuleModelFile() != null ) 492 { 493 this.log( Messages.getMessage( "writingModule", m.getName(), 494 this.getModuleModelFile().getAbsolutePath() ), 495 Project.MSG_INFO ); 496 497 marshaller.marshal( new org.jomc.model.ObjectFactory().createModule( m ), 498 this.getModuleModelFile() ); 499 500 } 366 501 } 367 502 -
TabularUnified jomc/trunk/jomc-ant-tasks/src/main/resources/org/jomc/ant/Messages.properties ¶
r4748 r4864 1 1 # $JOMC$ 2 separator=--------------------------------------------------------------------------------3 title=JOMC \u2051 Ant Tasks ${project.version} (${build.date})4 mandatoryAttribute=Mandatory attribute ''{0}'' is missing a value.5 unimplementedTask=Class ''{0}'' does not override method ''{1}''.6 resourceNotFound=Resource ''{0}'' not found.7 malformedLocation=Malformed location ''{0}''.{1}8 transformerNotFound=XSLT document ''{0}'' not found.9 propertiesNotFound=Properties ''{0}'' not found.10 2 classProcessingDisabled=Class file processing disabled. 11 3 classProcessingSuccess=Class file processing successful. 12 4 committingModelObjects=Committing ''{0}'' model objects ... 5 excludingModlet=Excluding modlet ''{0}''. 6 excludingModule=Excluding module ''{0}''. 7 failedCreatingObject=Failure creating a new ''{0}'' object. 13 8 generatingResources=Generating ''{0}'' resources ... 14 specificationNotFound=Specification ''{0}'' not found.9 illegalTransformationResult=Failure transforming result document using ''{0}''. Illegal transformation result. 15 10 implementationNotFound=Implementation ''{0}'' not found. 11 includingModlet=Including modlet ''{0}''. 12 includingModule=Including module ''{0}''. 13 invalidModel=Invalid ''{0}'' model. 14 malformedLocation=Malformed location ''{0}''.{1} 15 managingSources=Managing ''{0}'' source files ... 16 mandatoryAttribute=Mandatory attribute ''{0}'' is missing a value. 17 mergingModlets=Merging modlets of model ''{0}'' ... 18 mergingModules=Merging modules of model ''{0}'' ... 19 modelValidationFailure=Model validation failure. 20 modelValidationSuccess=Model validation successful. 21 modletExclusion=Modlet ''{1}'' from class path resource ''{0}'' ignored. 22 modletResourceNotFound=Modlet resource ''{0}'' not found. 16 23 moduleNotFound=Module ''{0}'' not found. 17 templateLocationNotFound=Template location''{0}'' not found.24 moduleResourceNotFound=Module resource ''{0}'' not found. 18 25 multipleElements=Multiple nested ''{0}'' elements. 19 managingSources=Managing ''{0}'' source files ... 20 includingModlet=Including modlet ''{0}''. 21 excludingModlet=Excluding modlet ''{0}''. 22 illegalTransformationResult=Failure transforming result document using ''{0}''. Illegal transformation result. 23 mergingModlets=Merging modlets of model ''{0}'' ... 24 includingModule=Including module ''{0}''. 25 excludingModule=Excluding module ''{0}''. 26 mergingModules=Merging modules of model ''{0}'' ... 26 propertiesNotFound=Properties ''{0}'' not found. 27 providerExclusion=Provider ''{1}'' from class path resource ''{0}'' ignored. 28 reading=Reading ''{0}''. 29 resourceFailure=Failed reading resource ''{0}''.{1} 30 resourceNotFound=Resource ''{0}'' not found. 27 31 resourceProcessingDisabled=Resource file processing disabled. 28 32 resourceProcessingSuccess=Resource file processing successful. 33 resourceTimeout=Timeout reading resource ''{0}''.{1} 34 schemaExclusion=Schema ''{1}'' from class path resource ''{0}'' ignored. 35 separator=-------------------------------------------------------------------------------- 36 serviceExclusion=Service ''{1}'' from class path resource ''{0}'' ignored. 37 showingModelObjects=Showing ''{0}'' model objects ... 29 38 sourceProcessingDisabled=Source file processing disabled. 30 39 sourceProcessingSuccess=Source file processing successful. 40 specificationNotFound=Specification ''{0}'' not found. 41 templateLocationNotFound=Template location ''{0}'' not found. 42 title=JOMC \u2051 Ant Tasks ${project.version} (${build.date}) 43 transformerNotFound=XSLT document ''{0}'' not found. 44 unimplementedTask=Class ''{0}'' does not override method ''{1}''. 45 unsupportedModletResource=Modlet resource ''{0}'' not supported. 46 unsupportedModuleResource=Module resource ''{0}'' not supported. 47 validatingClasspath=Validating ''{0}'' class path model objects ... 48 validatingModel=Validating model ''{0}'' ... 31 49 validatingModelObjects=Validating ''{0}'' model objects ... 32 validatingClasspath=Validating ''{0}'' class path model objects ...33 modelValidationFailure=Model validation failure.34 modelValidationSuccess=Model validation successful.35 validatingModel=Validating model ''{0}'' ...36 invalidModel=Invalid ''{0}'' model.37 50 writingEncoded=Writing ''{0}'' using encoding ''{1}''. 51 writingInstance=Writing instance ''{0}'' to ''{1}'' ... 38 52 writingModelObjects=Writing ''{0}'' model objects to ''{1}'' ... 39 showingModelObjects=Showing ''{0}'' model objects ... 40 providerExclusion=Provider ''{1}'' from class path resource ''{0}'' ignored. 41 serviceExclusion=Service ''{1}'' from class path resource ''{0}'' ignored. 42 schemaExclusion=Schema ''{1}'' from class path resource ''{0}'' ignored. 43 modletExclusion=Modlet ''{1}'' from class path resource ''{0}'' ignored. 44 unsupportedModuleResource=Module resource ''{0}'' not supported. 45 reading=Reading ''{0}''. 46 unsupportedModletResource=Modlet resource ''{0}'' not supported. 47 moduleResourceNotFound=Module resource ''{0}'' not found. 48 resourceTimeout=Timeout reading resource ''{0}''.{1} 49 resourceFailure=Failed reading resource ''{0}''.{1} 50 modletResourceNotFound=Modlet resource ''{0}'' not found. 51 failedCreatingObject=Failure creating a new ''{0}'' object. 53 writingModule=Writing module ''{0}'' to ''{1}'' ... 54 writingSpecification=Writing specification ''{0}'' to ''{1}'' ... -
TabularUnified jomc/trunk/jomc-ant-tasks/src/main/resources/org/jomc/ant/Messages_de.properties ¶
r4748 r4864 1 1 # $JOMC$ 2 separator=--------------------------------------------------------------------------------3 title=JOMC \u2051 Ant Tasks ${project.version} (${build.date})4 mandatoryAttribute=Mandatory attribute ''{0}'' is missing a value.5 unimplementedTask=Klasse ''{0}'' \u00fcberschreibt die ''{1}'' Methode nicht.6 resourceNotFound=Ressource ''{0}'' nicht gefunden.7 malformedLocation=Ung\u00fcltiger Ort ''{0}''.{1}8 transformerNotFound=XSLT-Dokument ''{0}'' nicht gefunden.9 propertiesNotFound=Eigenschaftendatei ''{0}'' nicht gefunden.10 2 classProcessingDisabled=Klassendateiverarbeitung deaktiviert. 11 3 classProcessingSuccess=Klassendateiverarbeitung erfolgreich. 12 4 committingModelObjects=Fixiert ''{0}'' Modell-Objekte ... 5 excludingModlet=Modlet ''{0}'' ausgeschlossen. 6 excludingModule=Modul ''{0}'' ausgeschlossen. 7 failedCreatingObject=Fehler bei der Erstellung eines neuen ''{0}'' Objekts. 13 8 generatingResources=Generiert ''{0}'' Ressource-Dateien ... 14 specificationNotFound=Spezifikation ''{0}'' nicht gefunden.9 illegalTransformationResult=Fehler bei der Transformation des Ergebniss-Dokuments mit ''{0}''. Ung\u00fcltiges Transformations-Ergebniss. 15 10 implementationNotFound=Implementierung ''{0}'' nicht gefunden. 11 includingModlet=Modlet ''{0}'' eingeschlossen. 12 includingModule=Modul ''{0}'' eingeschlossen. 13 invalidModel=Ung\u00fcltiges ''{0}'' Modell. 14 malformedLocation=Ung\u00fcltiger Ort ''{0}''.{1} 15 managingSources=Verwaltet ''{0}'' Quelltextdateien ... 16 mandatoryAttribute=Mandatory attribute ''{0}'' is missing a value. 17 mergingModlets=F\u00fcgt Modlets von Modell ''{0}'' zusammen ... 18 mergingModules=F\u00fcgt Module von Modell ''{0}'' zusammen ... 19 modelValidationFailure=Modellpr\u00fcfung fehlgeschlagen. 20 modelValidationSuccess=Modellpr\u00fcfung erfolgreich. 21 modletExclusion=Modlet ''{1}'' aus Klassenpfad-Ressource ''{0}'' ignoriert. 22 modletResourceNotFound=Modlet-Ressource ''{0}'' nicht gefunden. 16 23 moduleNotFound=Modul ''{0}'' nicht gefunden. 17 templateLocationNotFound=Vorlagen''{0}'' nicht gefunden.24 moduleResourceNotFound=Modul-Ressource ''{0}'' nicht gefunden. 18 25 multipleElements=Mehrere ''{0}'' Elemente. 19 managingSources=Verwaltet ''{0}'' Quelltextdateien ... 20 includingModlet=Modlet ''{0}'' eingeschlossen. 21 excludingModlet=Modlet ''{0}'' ausgeschlossen. 22 illegalTransformationResult=Fehler bei der Transformation des Ergebniss-Dokuments mit ''{0}''. Ung\u00fcltiges Transformations-Ergebniss. 23 mergingModlets=F\u00fcgt Modlets von Modell ''{0}'' zusammen ... 24 includingModule=Modul ''{0}'' eingeschlossen. 25 excludingModule=Modul ''{0}'' ausgeschlossen. 26 mergingModules=F\u00fcgt Module von Modell ''{0}'' zusammen ... 26 propertiesNotFound=Eigenschaftendatei ''{0}'' nicht gefunden. 27 providerExclusion=Provider ''{1}'' aus Klassenpfad-Ressource ''{0}'' ignoriert. 28 reading=Lie\u00dft ''{0}''. 29 resourceFailure=Fehler beim Lesen von Ressource ''{0}''.{1} 30 resourceNotFound=Ressource ''{0}'' nicht gefunden. 27 31 resourceProcessingDisabled=Ressourcedateiverarbeitung deaktiviert. 28 32 resourceProcessingSuccess=Ressourcedateiverarbeitung erfolgreich. 33 resourceTimeout=Zeit\u00fcberschreitung beim Lesen von Ressource ''{0}''.{1} 34 schemaExclusion=Schema ''{1}'' aus Klassenpfad-Ressource ''{0}'' ignoriert. 35 separator=-------------------------------------------------------------------------------- 36 serviceExclusion=Service ''{1}'' aus Klassenpfad-Ressource ''{0}'' ignoriert. 37 showingModelObjects=Zeigt ''{0}'' Modell-Objekte ... 29 38 sourceProcessingDisabled=Quelltextdateiverarbeitung deaktiviert. 30 39 sourceProcessingSuccess=Quelltextdateiverarbeitung erfolgreich. 40 specificationNotFound=Spezifikation ''{0}'' nicht gefunden. 41 templateLocationNotFound=Vorlagen ''{0}'' nicht gefunden. 42 title=JOMC \u2051 Ant Tasks ${project.version} (${build.date}) 43 transformerNotFound=XSLT-Dokument ''{0}'' nicht gefunden. 44 unimplementedTask=Klasse ''{0}'' \u00fcberschreibt die ''{1}'' Methode nicht. 45 unsupportedModletResource=Keine Unterst\u00fctzung f\u00fcr Modlet-Ressource ''{0}''. 46 unsupportedModuleResource=Keine Unterst\u00fctzung f\u00fcr Modul-Ressource ''{0}''. 47 validatingClasspath=Pr\u00fcft ''{0}'' Klassenpfad-Modellobjekte ... 48 validatingModel=Pr\u00fcft Modell ''{0}'' ... 31 49 validatingModelObjects=Pr\u00fcft ''{0}'' Modell-Objekte ... 32 validatingClasspath=Pr\u00fcft ''{0}'' Klassenpfad-Modellobjekte ...33 modelValidationFailure=Modellpr\u00fcfung fehlgeschlagen.34 modelValidationSuccess=Modellpr\u00fcfung erfolgreich.35 validatingModel=Pr\u00fcft Modell ''{0}'' ...36 invalidModel=Ung\u00fcltiges ''{0}'' Modell.37 50 writingEncoded=Schreibt ''{0}'' mit Kodierung ''{1}''. 51 writingInstance=Schreibt Instanz ''{0}'' nach ''{1}'' ... 38 52 writingModelObjects=Schreibt ''{0}'' Modell-Objekte nach ''{1}'' .... 39 showingModelObjects=Zeigt ''{0}'' Modell-Objekte ... 40 providerExclusion=Provider ''{1}'' aus Klassenpfad-Ressource ''{0}'' ignoriert. 41 serviceExclusion=Service ''{1}'' aus Klassenpfad-Ressource ''{0}'' ignoriert. 42 schemaExclusion=Schema ''{1}'' aus Klassenpfad-Ressource ''{0}'' ignoriert. 43 modletExclusion=Modlet ''{1}'' aus Klassenpfad-Ressource ''{0}'' ignoriert. 44 unsupportedModuleResource=Keine Unterst\u00fctzung f\u00fcr Modul-Ressource ''{0}''. 45 reading=Lie\u00dft ''{0}''. 46 unsupportedModletResource=Keine Unterst\u00fctzung f\u00fcr Modlet-Ressource ''{0}''. 47 moduleResourceNotFound=Modul-Ressource ''{0}'' nicht gefunden. 48 resourceTimeout=Zeit\u00fcberschreitung beim Lesen von Ressource ''{0}''.{1} 49 resourceFailure=Fehler beim Lesen von Ressource ''{0}''.{1} 50 modletResourceNotFound=Modlet-Ressource ''{0}'' nicht gefunden. 51 failedCreatingObject=Fehler bei der Erstellung eines neuen ''{0}'' Objekts. 53 writingModule=Schreibt Modul ''{0}'' nach ''{1}'' ... 54 writingSpecification=Schreibt Spezifikation ''{0}'' nach ''{1}'' ... -
TabularUnified jomc/trunk/jomc-ant-tasks/src/main/resources/org/jomc/ant/Messages_en.properties ¶
r4748 r4864 1 1 # $JOMC$ 2 separator=--------------------------------------------------------------------------------3 title=JOMC \u2051 Ant Tasks ${project.version} (${build.date})4 mandatoryAttribute=Mandatory attribute ''{0}'' is missing a value.5 unimplementedTask=Class ''{0}'' does not override method ''{1}''.6 resourceNotFound=Resource ''{0}'' not found.7 malformedLocation=Malformed location ''{0}''.{1}8 transformerNotFound=XSLT document ''{0}'' not found.9 propertiesNotFound=Properties ''{0}'' not found.10 2 classProcessingDisabled=Class file processing disabled. 11 3 classProcessingSuccess=Class file processing successful. 12 4 committingModelObjects=Committing ''{0}'' model objects ... 5 excludingModlet=Excluding modlet ''{0}''. 6 excludingModule=Excluding module ''{0}''. 7 failedCreatingObject=Failure creating a new ''{0}'' object. 13 8 generatingResources=Generating ''{0}'' resources ... 14 specificationNotFound=Specification ''{0}'' not found.9 illegalTransformationResult=Failure transforming result document using ''{0}''. Illegal transformation result. 15 10 implementationNotFound=Implementation ''{0}'' not found. 11 includingModlet=Including modlet ''{0}''. 12 includingModule=Including module ''{0}''. 13 invalidModel=Invalid ''{0}'' model. 14 malformedLocation=Malformed location ''{0}''.{1} 15 managingSources=Managing ''{0}'' source files ... 16 mandatoryAttribute=Mandatory attribute ''{0}'' is missing a value. 17 mergingModlets=Merging modlets of model ''{0}'' ... 18 mergingModules=Merging modules of model ''{0}'' ... 19 modelValidationFailure=Model validation failure. 20 modelValidationSuccess=Model validation successful. 21 modletExclusion=Modlet ''{1}'' from class path resource ''{0}'' ignored. 22 modletResourceNotFound=Modlet resource ''{0}'' not found. 16 23 moduleNotFound=Module ''{0}'' not found. 17 templateLocationNotFound=Template location''{0}'' not found.24 moduleResourceNotFound=Module resource ''{0}'' not found. 18 25 multipleElements=Multiple nested ''{0}'' elements. 19 managingSources=Managing ''{0}'' source files ... 20 includingModlet=Including modlet ''{0}''. 21 excludingModlet=Excluding modlet ''{0}''. 22 illegalTransformationResult=Failure transforming result document using ''{0}''. Illegal transformation result. 23 mergingModlets=Merging modlets of model ''{0}'' ... 24 includingModule=Including module ''{0}''. 25 excludingModule=Excluding module ''{0}''. 26 mergingModules=Merging modules of model ''{0}'' ... 26 propertiesNotFound=Properties ''{0}'' not found. 27 providerExclusion=Provider ''{1}'' from class path resource ''{0}'' ignored. 28 reading=Reading ''{0}''. 29 resourceFailure=Failed reading resource ''{0}''.{1} 30 resourceNotFound=Resource ''{0}'' not found. 27 31 resourceProcessingDisabled=Resource file processing disabled. 28 32 resourceProcessingSuccess=Resource file processing successful. 33 resourceTimeout=Timeout reading resource ''{0}''.{1} 34 schemaExclusion=Schema ''{1}'' from class path resource ''{0}'' ignored. 35 separator=-------------------------------------------------------------------------------- 36 serviceExclusion=Service ''{1}'' from class path resource ''{0}'' ignored. 37 showingModelObjects=Showing ''{0}'' model objects ... 29 38 sourceProcessingDisabled=Source file processing disabled. 30 39 sourceProcessingSuccess=Source file processing successful. 40 specificationNotFound=Specification ''{0}'' not found. 41 templateLocationNotFound=Template location ''{0}'' not found. 42 title=JOMC \u2051 Ant Tasks ${project.version} (${build.date}) 43 transformerNotFound=XSLT document ''{0}'' not found. 44 unimplementedTask=Class ''{0}'' does not override method ''{1}''. 45 unsupportedModletResource=Modlet resource ''{0}'' not supported. 46 unsupportedModuleResource=Module resource ''{0}'' not supported. 47 validatingClasspath=Validating ''{0}'' class path model objects ... 48 validatingModel=Validating model ''{0}'' ... 31 49 validatingModelObjects=Validating ''{0}'' model objects ... 32 validatingClasspath=Validating ''{0}'' class path model objects ...33 modelValidationFailure=Model validation failure.34 modelValidationSuccess=Model validation successful.35 validatingModel=Validating model ''{0}'' ...36 invalidModel=Invalid ''{0}'' model.37 50 writingEncoded=Writing ''{0}'' using encoding ''{1}''. 51 writingInstance=Writing instance ''{0}'' to ''{1}'' ... 38 52 writingModelObjects=Writing ''{0}'' model objects to ''{1}'' ... 39 showingModelObjects=Showing ''{0}'' model objects ... 40 providerExclusion=Provider ''{1}'' from class path resource ''{0}'' ignored. 41 serviceExclusion=Service ''{1}'' from class path resource ''{0}'' ignored. 42 schemaExclusion=Schema ''{1}'' from class path resource ''{0}'' ignored. 43 modletExclusion=Modlet ''{1}'' from class path resource ''{0}'' ignored. 44 unsupportedModuleResource=Module resource ''{0}'' not supported. 45 reading=Reading ''{0}''. 46 unsupportedModletResource=Modlet resource ''{0}'' not supported. 47 moduleResourceNotFound=Module resource ''{0}'' not found. 48 resourceTimeout=Timeout reading resource ''{0}''.{1} 49 resourceFailure=Failed reading resource ''{0}''.{1} 50 modletResourceNotFound=Modlet resource ''{0}'' not found. 51 failedCreatingObject=Failure creating a new ''{0}'' object. 53 writingModule=Writing module ''{0}'' to ''{1}'' ... 54 writingSpecification=Writing specification ''{0}'' to ''{1}'' ... -
TabularUnified jomc/trunk/jomc-ant-tasks/src/site/apt/reference.apt.vm ¶
r4702 r4864 1339 1339 | | write. | | 1340 1340 *---------------------------------------------+--------------------------------------------+------------------------+ 1341 | <<<instanceModelFile>>> | File to write the instance to. | No. | 1342 | | <Since 1.6> | | 1343 *---------------------------------------------+--------------------------------------------+------------------------+ 1341 1344 | <<<model>>> | The public identifier of the model to | No. Defaults to the | 1342 1345 | | process. | JOMC model public id. | … … 1376 1379 | | modules. | | 1377 1380 *---------------------------------------------+--------------------------------------------+------------------------+ 1381 | <<<moduleModelFile>>> | File to write the module to. | No. | 1382 | | <Since 1.6> | | 1383 *---------------------------------------------+--------------------------------------------+------------------------+ 1378 1384 | <<<platformProviderLocation>>> | The location searched for platform | No. {{{H}[H]}} | 1379 1385 | | provider resources. | | … … 1384 1390 | <<<specification>>> | The identifier of a specification to | No. | 1385 1391 | | write. | | 1392 *---------------------------------------------+--------------------------------------------+------------------------+ 1393 | <<<specificationModelFile>>> | File to write the specification to. | No. | 1394 | | <Since 1.6> | | 1386 1395 *---------------------------------------------+--------------------------------------------+------------------------+ 1387 1396 | <<<transformerLocation>>> | The class path location searched for | No. {{{J}[J]}} | -
TabularUnified jomc/trunk/jomc-ant-tasks/src/test/ant/org/jomc/ant/test/write-model-task-test.xml ¶
r4702 r4864 122 122 <target name="test-write-model-all-attributes"> 123 123 <jomc:write-model modelEncoding="US-ASCII" 124 modelFile="${empty.dir}/jomc-model.xml" 125 specification="TEST" 126 implementation="TEST" 127 module="TEST" 128 moduleLocation="TEST" 124 modelFile="${empty.dir}/model.xml" 125 specification="org.jomc.ant.test.ClassFileProcessorTask" 126 specificationModelFile="${empty.dir}/specification.xml" 127 implementation="org.jomc.ant.test.ClassFileProcessorTask" 128 instanceModelFile="${empty.dir}/instance.xml" 129 module="JOMC Ant Tasks Tests" 130 moduleLocation="META-INF/jomc.xml" 131 moduleModelFile="${empty.dir}/module.xml" 129 132 transformerLocation="TEST" 130 133 modelObjectClasspathResolutionEnabled="false"
Note:
See TracChangeset
for help on using the changeset viewer.