]> git.uio.no Git - ifi-stolz-refaktor.git/blobdiff - case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/TryFlowInfo.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 / TryFlowInfo.java
diff --git a/case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/TryFlowInfo.java b/case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/TryFlowInfo.java
new file mode 100644 (file)
index 0000000..3ebd5b7
--- /dev/null
@@ -0,0 +1,40 @@
+/*******************************************************************************
+ * 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 TryFlowInfo extends FlowInfo {
+
+       public TryFlowInfo() {
+               super();
+       }
+
+       public void mergeTry(FlowInfo info, FlowContext context) {
+               if (info == null)
+                       return;
+
+               assign(info);
+       }
+
+       public void mergeCatch(FlowInfo info, FlowContext context) {
+               if (info == null)
+                       return;
+
+               mergeConditional(info, context);
+       }
+
+       public void mergeFinally(FlowInfo info, FlowContext context) {
+               if (info == null)
+                       return;
+
+               mergeSequential(info, context);
+       }
+}
+