Interface Command
public interface Command
Represents a Command in a Chain of Responsibility Pattern
-
Method Summary
Modifier and TypeMethodDescriptionboolean
execute
(ProjectModel pm) Given a context, performs an operationboolean
Post Processing, implementing a Filter Pattern.
-
Method Details
-
execute
Given a context, performs an operation- Parameters:
pm
- Context (Project Model) to use- Returns:
- true if the execution was successful *AND* the chain must end
- Throws:
URISyntaxException
IOException
XMLStreamException
-
postProcess
Post Processing, implementing a Filter Pattern.- Parameters:
c
- ProjectModel for post-processing.- Returns:
- true if post-processing was successful.
- Throws:
XMLStreamException
-