mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
a7a8d608fa
commit
8a36c6376d
1 changed files with 16 additions and 15 deletions
|
@ -25,7 +25,6 @@ import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.w3c.dom.Element;
|
import org.w3c.dom.Element;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class contains methods to get first process block element, next process
|
* This class contains methods to get first process block element, next process
|
||||||
* block element and checks for next process block element.
|
* block element and checks for next process block element.
|
||||||
|
@ -88,7 +87,8 @@ public class Process {
|
||||||
* @return boolean, true if the Process is Ready.
|
* @return boolean, true if the Process is Ready.
|
||||||
*/
|
*/
|
||||||
public boolean isReadyToProcess() {
|
public boolean isReadyToProcess() {
|
||||||
if (processRunner == null || !processRunner.areArgumentsMatchingRequiredParameters(args) || !areAllMacrosExpandable()) {
|
if (processRunner == null || !processRunner.areArgumentsMatchingRequiredParameters(args) ||
|
||||||
|
!areAllMacrosExpandable()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -119,7 +119,8 @@ public class Process {
|
||||||
for (int i= 0; i < args.length; i++) {
|
for (int i= 0; i < args.length; i++) {
|
||||||
ProcessArgument arg = args[i];
|
ProcessArgument arg = args[i];
|
||||||
if ((macro = arg.getFirstNonExpandableMacro()) != null) {
|
if ((macro = arg.getFirstNonExpandableMacro()) != null) {
|
||||||
return TemplateEngineMessages.getString("Process.argument") + arg.getName() + TemplateEngineMessages.getString("Process.expandableMacro") + macro; //$NON-NLS-1$ //$NON-NLS-2$
|
return TemplateEngineMessages.getString("Process.argument") + arg.getName() + //$NON-NLS-1$
|
||||||
|
TemplateEngineMessages.getString("Process.expandableMacro") + macro; //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue