]> git.uio.no Git - ifi-stolz-refaktor.git/blobdiff - case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/WhileFlowInfo.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / core refactoring / org / eclipse / jdt / internal / corext / refactoring / code / flow / WhileFlowInfo.java
diff --git a/case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/WhileFlowInfo.java b/case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/WhileFlowInfo.java
new file mode 100644 (file)
index 0000000..07eb339
--- /dev/null
@@ -0,0 +1,31 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2008 IBM Corporation 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:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.jdt.internal.corext.refactoring.code.flow;
+
+class WhileFlowInfo extends FlowInfo {
+
+       public void mergeCondition(FlowInfo info, FlowContext context) {
+               if (info == null)
+                       return;
+
+               mergeAccessModeSequential(info, context);
+       }
+
+       public void mergeAction(FlowInfo info, FlowContext context) {
+               if (info == null)
+                       return;
+
+               info.mergeEmptyCondition(context);
+
+               mergeSequential(info, context);
+       }
+}
+