A C D E G J K M N O R S T V W

A

AntExecutionRequest - Class in org.jomc.ant.test.support
Request to execute a target on an Ant project.
AntExecutionRequest(Project, String) - Constructor for class org.jomc.ant.test.support.AntExecutionRequest
Creates a new AntExecutionRequest taking a project and a target.
AntExecutionResult - Class in org.jomc.ant.test.support
Result of an execution of an Ant target.
AntExecutionResult() - Constructor for class org.jomc.ant.test.support.AntExecutionResult
Creates a new AntExecutionResult.
AntExecutor - Interface in org.jomc.ant.test.support
Interface to Ant.
Assert - Class in org.jomc.ant.test.support
Provides static methods for testing various assertions related to Ant executions.
Assert() - Constructor for class org.jomc.ant.test.support.Assert
Creates a new Assert instance.
assertException(AntExecutionResult, Class<? extends Throwable>) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have thrown an exception of a given type.
assertException(AntExecutionResult, Class<? extends Throwable>, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have thrown an exception of a given type taking a reason.
assertExceptionInstance(AntExecutionResult, Class<? extends Throwable>) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have thrown an instance of a given exception.
assertExceptionInstance(AntExecutionResult, Class<? extends Throwable>, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have thrown an instance of a given exception taking a reason.
assertExceptionMessage(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have thrown an exception with a given message.
assertExceptionMessage(AntExecutionResult, CharSequence, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have thrown an exception with a given message taking a reason.
assertExceptionMessageContaining(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have thrown an exception with a message containing a given string.
assertExceptionMessageContaining(AntExecutionResult, CharSequence, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have thrown an exception with a message containing a given string taking a reason.
assertMessageLogged(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have fired a messageLogged event holding a given message.
assertMessageLogged(AntExecutionResult, CharSequence, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have fired a messageLogged event holding a given message taking a reason.
assertMessageLogged(AntExecutionResult, CharSequence, int) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have fired a messageLogged event holding a given message with a given priority.
assertMessageLogged(AntExecutionResult, CharSequence, int, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have fired a messageLogged event holding a given message with a given priority taking a reason.
assertMessageLoggedContaining(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have fired a messageLogged event holding a message containing a given text.
assertMessageLoggedContaining(AntExecutionResult, CharSequence, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have fired a messageLogged event holding a message containing a given text taking a reason.
assertMessageLoggedContaining(AntExecutionResult, CharSequence, int) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have fired a messageLogged event holding a message containing a given text with a given priority.
assertMessageLoggedContaining(AntExecutionResult, CharSequence, int, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have fired a messageLogged event holding a message containing a given text with a given priority taking a reason.
assertMessageNotLogged(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to not have fired a messageLogged event holding a given message.
assertMessageNotLogged(AntExecutionResult, CharSequence, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to not have fired a messageLogged event holding a given message taking a reason.
assertMessageNotLoggedContaining(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to not have fired a messageLogged event holding a message containing a given text.
assertMessageNotLoggedContaining(AntExecutionResult, CharSequence, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to not have fired a messageLogged event holding a message containing a given text taking a reason.
assertNoException(AntExecutionResult) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to not have thrown an exception.
assertNoException(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to not have thrown an exception taking a reason.
assertSystemErrorContaining(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have written a given text to the system error stream.
assertSystemErrorContaining(AntExecutionResult, CharSequence, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have written a given text to the system error stream taking a reason.
assertSystemOutputContaining(AntExecutionResult, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have written a given text to the system output stream.
assertSystemOutputContaining(AntExecutionResult, CharSequence, CharSequence) - Static method in class org.jomc.ant.test.support.Assert
Tests an Ant execution to have written a given text to the system output stream taking a reason.

C

ClassFileProcessorTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.ClassFileProcessorTask.
ClassFileProcessorTaskTest() - Constructor for class org.jomc.ant.test.ClassFileProcessorTaskTest
Creates a new ClassFileProcessorTaskTest instance.
ClassProcessingExceptionTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.ClassProcessingException.
ClassProcessingExceptionTest() - Constructor for class org.jomc.ant.test.ClassProcessingExceptionTest
Creates a new ClassProcessingExceptionTest instance.
CommitClassesTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.CommitClassesTask.
CommitClassesTaskTest() - Constructor for class org.jomc.ant.test.CommitClassesTaskTest
Creates a new CommitClassesTaskTest instance.

D

DefaultAntExecutor - Class in org.jomc.ant.test.support
Default AntExecutor implementation.
DefaultAntExecutor() - Constructor for class org.jomc.ant.test.support.DefaultAntExecutor
Creates a new DefaultAntExecutor.

E

executeAnt(AntExecutionRequest) - Method in interface org.jomc.ant.test.support.AntExecutor
Executes Ant.
executeAnt(AntExecutionRequest) - Method in class org.jomc.ant.test.support.DefaultAntExecutor
 
executeTarget(String) - Method in class org.jomc.ant.test.JomcTaskTest
Executes an Ant target.

G

GenerateResourcesTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.GenerateResourcesTask.
GenerateResourcesTaskTest() - Constructor for class org.jomc.ant.test.GenerateResourcesTaskTest
Creates a new GenerateResourcesTaskTest instance.
getAntExecutor() - Method in class org.jomc.ant.test.JomcTaskTest
Gets the AntExecutor instance backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.ClassFileProcessorTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.CommitClassesTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.JomcModelTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.JomcTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.JomcToolTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.MergeModletsTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.MergeModulesTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.ResourceFileProcessorTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.SourceFileProcessorTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.ValidateModelTaskTest
Gets the name of the build file backing the test.
getBuildFileName() - Method in class org.jomc.ant.test.WriteModelTaskTest
Gets the name of the build file backing the test.
getBuildFinishedEvents() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the list of buildFinished events fired during execution of the target.
getBuildStartedEvents() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the list of buildStarted events fired during execution of the target.
getJomcTask() - Method in class org.jomc.ant.test.ClassFileProcessorTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.CommitClassesTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.JomcModelTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.JomcTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.JomcToolTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.MergeModletsTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.MergeModulesTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.ResourceFileProcessorTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.SourceFileProcessorTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.ValidateModelTaskTest
Gets the JomcTask instance tests are performed with.
getJomcTask() - Method in class org.jomc.ant.test.WriteModelTaskTest
Gets the JomcTask instance tests are performed with.
getMessageLoggedEvents() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the list of messageLogged events fired during execution of the target.
getOutputDirectory() - Method in class org.jomc.ant.test.JomcTaskTest
Gets the output directory of instance.
getProject() - Method in class org.jomc.ant.test.JomcTaskTest
Gets the Project backing the test.
getProject() - Method in class org.jomc.ant.test.support.AntExecutionRequest
Gets the Project to execute a target of.
getSystemError() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the characters written to the system error stream during execution of the target.
getSystemOutput() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the characters written to the system output stream during execution of the target.
getTarget() - Method in class org.jomc.ant.test.support.AntExecutionRequest
Gets the identifier of the target to execute.
getTargetFinishedEvents() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the list of targetFinished events fired during execution of the target.
getTargetStartedEvents() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the list of targetStarted events fired during execution of the target.
getTaskFinishedEvents() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the list of taskFinished events fired during execution of the target.
getTaskStartedEvents() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the list of taskStarted events fired during execution of the target.
getThrowable() - Method in class org.jomc.ant.test.support.AntExecutionResult
Gets the throwable thrown by the execution of the target.

J

JomcModelTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.JomcModelTask.
JomcModelTaskTest() - Constructor for class org.jomc.ant.test.JomcModelTaskTest
Creates a new JomcModelTaskTest instance.
JomcTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.JomcTask.
JomcTaskTest() - Constructor for class org.jomc.ant.test.JomcTaskTest
Creates a new JomcTaskTest instance.
JomcToolTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.JomcToolTask.
JomcToolTaskTest() - Constructor for class org.jomc.ant.test.JomcToolTaskTest
Creates a new JomcToolTaskTest instance.

K

KeyValueTypeTest - Class in org.jomc.ant.types.test
Test cases for class org.jomc.ant.types.KeyValueType.
KeyValueTypeTest() - Constructor for class org.jomc.ant.types.test.KeyValueTypeTest
Creates a new KeyValueTypeTest instance.

M

ManageSourcesTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.ManageSourcesTask.
ManageSourcesTaskTest() - Constructor for class org.jomc.ant.test.ManageSourcesTaskTest
Creates a new ManageSourcesTaskTest instance.
MergeModletsTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.MergeModletsTask.
MergeModletsTaskTest() - Constructor for class org.jomc.ant.test.MergeModletsTaskTest
Creates a new MergeModletsTaskTest instance.
MergeModulesTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.MergeModulesTask.
MergeModulesTaskTest() - Constructor for class org.jomc.ant.test.MergeModulesTaskTest
Creates a new MergeModulesTaskTest instance.

N

newAntExecutor() - Method in class org.jomc.ant.test.JomcTaskTest
Creates a new AntExecutor instance backing the test.
newJomcTask() - Method in class org.jomc.ant.test.ClassFileProcessorTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.CommitClassesTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.JomcModelTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.JomcTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.JomcToolTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.MergeModletsTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.MergeModulesTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.ResourceFileProcessorTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.SourceFileProcessorTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.ValidateModelTaskTest
Creates a new JomcTask instance to test.
newJomcTask() - Method in class org.jomc.ant.test.WriteModelTaskTest
Creates a new JomcTask instance to test.
newProject() - Method in class org.jomc.ant.test.JomcTaskTest
Creates and configures a new Project instance backing the test.

O

org.jomc.ant.test - package org.jomc.ant.test
Object management and configuration tasks test classes.
org.jomc.ant.test.support - package org.jomc.ant.test.support
Object management and configuration tasks test suite support classes.
org.jomc.ant.types.test - package org.jomc.ant.types.test
Object management and configuration task data type test classes.

R

ResourceFileProcessorTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.ResourceFileProcessorTask.
ResourceFileProcessorTaskTest() - Constructor for class org.jomc.ant.test.ResourceFileProcessorTaskTest
Creates a new ResourceFileProcessorTaskTest instance.
ResourceProcessingExceptionTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.ResourceProcessingException.
ResourceProcessingExceptionTest() - Constructor for class org.jomc.ant.test.ResourceProcessingExceptionTest
Creates a new ResourceProcessingExceptionTest instance.

S

setSystemError(String) - Method in class org.jomc.ant.test.support.AntExecutionResult
Set the characters written to the system error stream during execution of the target.
setSystemOutput(String) - Method in class org.jomc.ant.test.support.AntExecutionResult
Set the characters written to the system output stream during execution of the target.
setThrowable(Throwable) - Method in class org.jomc.ant.test.support.AntExecutionResult
Sets the throwable thrown by the execution of the target.
setUp() - Method in class org.jomc.ant.test.JomcTaskTest
 
SourceFileProcessorTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.SourceFileProcessorTask.
SourceFileProcessorTaskTest() - Constructor for class org.jomc.ant.test.SourceFileProcessorTaskTest
Creates a new SourceFileProcessorTaskTest instance.
SourceProcessingExceptionTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.SourceProcessingException.
SourceProcessingExceptionTest() - Constructor for class org.jomc.ant.test.SourceProcessingExceptionTest
Creates a new SourceProcessingExceptionTest instance.

T

tearDown() - Method in class org.jomc.ant.test.JomcTaskTest
 
testAssertKeysNotNull() - Method in class org.jomc.ant.test.JomcTaskTest
 
testAssertLocationsNotNull() - Method in class org.jomc.ant.test.JomcTaskTest
 
testAssertNamesNotNull() - Method in class org.jomc.ant.test.JomcTaskTest
 
testAssertNotNull() - Method in class org.jomc.ant.test.JomcTaskTest
 
testClassProcessingDisabled() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testClassProcessingDisabled() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testClassProcessingDisabled() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testClassProcessingException() - Method in class org.jomc.ant.test.ClassProcessingExceptionTest
 
testCloneable() - Method in class org.jomc.ant.test.JomcTaskTest
 
testCommitAntTasks() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitAntTasksAllAttributes() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitAntTasksBrokenModel() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitAntTasksWithClasspathref() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitAntTasksWithNestedClasspath() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitAntTasksWithNoopStylesheet() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitAntTasksWithRedundantResources() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitOneImplementation() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitOneImplementationWithNoopStylesheet() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitOneModule() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitOneModuleWithNoopStylesheet() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitOneSpecification() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testCommitOneSpecificationWithNoopStylesheet() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testConfigureJomcTool() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testExclusionMissingModletName() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testExclusionMissingModuleName() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testExecuteTask() - Method in class org.jomc.ant.test.JomcTaskTest
 
testExecuteTaskIf() - Method in class org.jomc.ant.test.JomcTaskTest
 
testExecuteTaskUnless() - Method in class org.jomc.ant.test.JomcTaskTest
 
testGenerateAntTaskResources() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGenerateAntTaskResourcesAllAttributes() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGenerateAntTaskResourcesBrokenModel() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGenerateAntTaskResourcesWithClasspathref() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGenerateAntTaskResourcesWithNestedClasspath() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGenerateAntTaskResourcesWithRedundantResources() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGenerateOneImplementation() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGenerateOneModule() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGenerateOneSpecification() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testGetImplementation() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testGetModel() - Method in class org.jomc.ant.test.JomcTaskTest
 
testGetModule() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testGetProperties() - Method in class org.jomc.ant.test.JomcTaskTest
 
testGetResource() - Method in class org.jomc.ant.test.JomcTaskTest
 
testGetSpecification() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testGetTransformer() - Method in class org.jomc.ant.test.JomcTaskTest
 
testGetValue() - Method in class org.jomc.ant.types.test.KeyValueTypeTest
 
testImplementationNotFound() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testImplementationNotFound() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testImplementationNotFound() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testImplementationNotFound() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testImplementationNotFound() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testImplementationNotFound() - Method in class org.jomc.ant.test.WriteModelTaskTest
 
testInclusionMissingModletName() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testInclusionMissingModuleName() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testInvalidMultipleLocaleElements() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testIsModletExcluded() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testIsModletIncluded() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testIsModuleExcluded() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testIsModuleIncluded() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testManageAntTaskSources() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testManageAntTaskSourcesAllAttributes() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testManageAntTaskSourcesBrokenModel() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testManageAntTaskSourcesWithClasspathref() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testManageAntTaskSourcesWithNestedClasspath() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testManageAntTaskSourcesWithRedundantResources() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testManageOneImplementation() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testManageOneModule() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testManageOneSpecification() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testMergeModlets() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMergeModletsAllAttributes() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMergeModletsExclusion() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMergeModletsInclusion() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMergeModletsUnsupportedResource() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMergeModletsWithIllegalTransformationResultStylesheet() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMergeModletsWithNoopStylesheet() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMergeModletsWithRedundantResources() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMergeModules() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMergeModulesAllAttributes() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMergeModulesExclusion() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMergeModulesInclusion() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMergeModulesUnsupportedResource() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMergeModulesWithIllegalTransformationResultStylesheet() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMergeModulesWithNoopStylesheet() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMergeModulesWithRedundantResources() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMissingClassesDirectory() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testMissingClassesDirectory() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testMissingModletFile() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMissingModletName() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testMissingModuleFile() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMissingModuleName() - Method in class org.jomc.ant.test.MergeModulesTaskTest
 
testMissingResourcesDirectory() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testMissingSourcesDirectory() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testModelContextAttributeMissingKey() - Method in class org.jomc.ant.test.JomcTaskTest
 
testModletResourceMissingLocation() - Method in class org.jomc.ant.test.MergeModletsTaskTest
 
testModuleNotFound() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testModuleNotFound() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testModuleNotFound() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testModuleNotFound() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testModuleNotFound() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testModuleNotFound() - Method in class org.jomc.ant.test.WriteModelTaskTest
 
testModuleResourceMissingLocation() - Method in class org.jomc.ant.test.JomcModelTaskTest
 
testOptionalStylesheetNotFound() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testResourceProcessingDisabled() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testResourceProcessingException() - Method in class org.jomc.ant.test.ResourceProcessingExceptionTest
 
testSourceProcessingDisabled() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testSourceProcessingException() - Method in class org.jomc.ant.test.SourceProcessingExceptionTest
 
testSpecificationNotFound() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testSpecificationNotFound() - Method in class org.jomc.ant.test.GenerateResourcesTaskTest
 
testSpecificationNotFound() - Method in class org.jomc.ant.test.ManageSourcesTaskTest
 
testSpecificationNotFound() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testSpecificationNotFound() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testSpecificationNotFound() - Method in class org.jomc.ant.test.WriteModelTaskTest
 
testStylesheetMissingLocationKey() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testStylesheetNotFound() - Method in class org.jomc.ant.test.CommitClassesTaskTest
 
testTemplateParameterMissingKey() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testTemplateParameterResourceMissingLocation() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testTransformationOutputPropertyMissingKey() - Method in class org.jomc.ant.test.JomcTaskTest
 
testTransformationParameterMissingKey() - Method in class org.jomc.ant.test.JomcTaskTest
 
testTransformationParameterResourceMissingLocation() - Method in class org.jomc.ant.test.JomcTaskTest
 
testValidateAntTasks() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateAntTasks() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateAntTasksAllAttributes() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateAntTasksAllAttributes() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateAntTasksBrokenModel() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateAntTasksBrokenModel() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateAntTasksWithClasspathref() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateAntTasksWithClasspathref() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateAntTasksWithNestedClasspath() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateAntTasksWithNestedClasspath() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateAntTasksWithRedundantResources() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateAntTasksWithRedundantResources() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateIllegalAntTasks() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateIllegalAntTasks() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateModel() - Method in class org.jomc.ant.test.ValidateModelTaskTest
 
testValidateModelWithBrokenModel() - Method in class org.jomc.ant.test.ValidateModelTaskTest
 
testValidateModelWithRedundantResources() - Method in class org.jomc.ant.test.ValidateModelTaskTest
 
testValidateOneIllegalImplementation() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateOneIllegalImplementation() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateOneIllegalModule() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateOneIllegalModule() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateOneIllegalSpecification() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateOneIllegalSpecification() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateOneImplementation() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateOneImplementation() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateOneModule() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateOneModule() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testValidateOneSpecification() - Method in class org.jomc.ant.test.ValidateClassesTaskTest
 
testValidateOneSpecification() - Method in class org.jomc.ant.test.ValidateClasspathTaskTest
 
testVelocityPropertyMissingKey() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testVelocityPropertyResourceMissingLocation() - Method in class org.jomc.ant.test.JomcToolTaskTest
 
testWriteModelAllAttributes() - Method in class org.jomc.ant.test.WriteModelTaskTest
 

V

ValidateClassesTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.ValidateClassesTask.
ValidateClassesTaskTest() - Constructor for class org.jomc.ant.test.ValidateClassesTaskTest
Creates a new ValidateClassesTaskTest instance.
ValidateClasspathTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.ValidateClasspathTask.
ValidateClasspathTaskTest() - Constructor for class org.jomc.ant.test.ValidateClasspathTaskTest
Creates a new ValidateClasspathTaskTest instance.
ValidateModelTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.ValidateModelTask.
ValidateModelTaskTest() - Constructor for class org.jomc.ant.test.ValidateModelTaskTest
Creates a new ValidateModelTaskTest instance.

W

WriteModelTaskTest - Class in org.jomc.ant.test
Test cases for class org.jomc.ant.WriteModelTask.
WriteModelTaskTest() - Constructor for class org.jomc.ant.test.WriteModelTaskTest
Creates a new WriteModelTaskTest instance.

A C D E G J K M N O R S T V W

Copyright © 2005-2012 The JOMC Project. All Rights Reserved.Get JOMC at SourceForge.net. Fast, secure and Free Open Source software downloads
Please note that this documentation is maintained by non-native english speaking authors. As such, you may encounter phrases or wordings which seem imprecise or may even have a totally different meaning to native english speaking readers than what the individual author was trying to express. If you are a native english speaking reader and find any such phrases or wordings we kindly ask you to send an email to the corresponding author and help us improve this documentation in order to avoid misunderstandings. You will find the authors' email addresses at the top of each class. Please accept our apologies for any inconvenience caused.