Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.reviews.connector/src/org/eclipse/mylyn/reviews/connector/EmfConfiguration.java')
-rw-r--r--org.eclipse.mylyn.reviews.connector/src/org/eclipse/mylyn/reviews/connector/EmfConfiguration.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.reviews.connector/src/org/eclipse/mylyn/reviews/connector/EmfConfiguration.java b/org.eclipse.mylyn.reviews.connector/src/org/eclipse/mylyn/reviews/connector/EmfConfiguration.java
new file mode 100644
index 00000000..bd251fd5
--- /dev/null
+++ b/org.eclipse.mylyn.reviews.connector/src/org/eclipse/mylyn/reviews/connector/EmfConfiguration.java
@@ -0,0 +1,37 @@
+/*******************************************************************************
+ * Copyright (c) 2012 Ericsson AB 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
+ *
+ * Description:
+ *
+ * Contributors:
+ * Miles Parker, Tasktop Technologies - Initial API and Implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.reviews.connector;
+
+import java.io.Serializable;
+
+/**
+ * @author MilesParker
+ */
+public final class EmfConfiguration implements Serializable {
+
+ /**
+ *
+ */
+ private static final long serialVersionUID = 1L;
+
+ public EmfConfiguration() {
+ // ignore
+ }
+
+ public void refresh() {
+ // ignore
+
+ }
+}

Back to the top