Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/Else.java')
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/Else.java72
1 files changed, 72 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/Else.java b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/Else.java
new file mode 100644
index 00000000000..d261779cae7
--- /dev/null
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/editors/automake/Else.java
@@ -0,0 +1,72 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2006, 2007 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - Initial API and implementation
+ * Red Hat Inc. - modified for Automake editor usage
+ *******************************************************************************/
+package org.eclipse.cdt.internal.autotools.ui.editors.automake;
+
+import java.io.File;
+import java.io.IOException;
+
+public class Else extends Conditional implements IAutomakeConditional, ICommand {
+
+ private boolean isAutomake;
+ private Rule[] rules;
+
+ public Else(Directive parent) {
+ super(parent);
+ }
+
+ public boolean isAutomake() {
+ return isAutomake;
+ }
+
+ public Rule[] getRules() {
+ if (rules != null)
+ return rules.clone();
+ return rules;
+ }
+
+ public void setRules(Rule[] rules) {
+ if (rules != null)
+ this.rules = rules.clone();
+ else
+ this.rules = rules;
+ }
+
+ public void setAutomake(boolean value) {
+ isAutomake = value;
+ }
+
+ public boolean isElse() {
+ return true;
+ }
+
+ public String toString() {
+ return GNUMakefileConstants.CONDITIONAL_ELSE;
+ }
+
+ // ICommand methods so Automake else can be a child of an IRule
+ public Process execute(String shell, String[] envp, File dir)
+ throws IOException {
+ return null;
+ }
+
+ public boolean shouldBeSilent() {
+ return false;
+ }
+
+ public boolean shouldIgnoreError() {
+ return false;
+ }
+
+ public boolean shouldExecute() {
+ return false;
+ }
+}

Back to the top