Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/ChangeReportRequest.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/ChangeReportRequest.java66
1 files changed, 33 insertions, 33 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/ChangeReportRequest.java b/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/ChangeReportRequest.java
index 63702b2f614..3bf8a0b8d40 100644
--- a/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/ChangeReportRequest.java
+++ b/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/ChangeReportRequest.java
@@ -1,33 +1,33 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.core.message;
-
-/**
- * @author Jeff C. Phillips
- */
-public class ChangeReportRequest {
- private final int srcTx;
- private final int destTx;
-
- public ChangeReportRequest(int srcTx, int destTx) {
- super();
- this.srcTx = srcTx;
- this.destTx = destTx;
- }
-
- public int getSourceTx() {
- return srcTx;
- }
-
- public int getDestinationTx() {
- return destTx;
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.core.message;
+
+/**
+ * @author Jeff C. Phillips
+ */
+public class ChangeReportRequest {
+ private final int srcTx;
+ private final int destTx;
+
+ public ChangeReportRequest(int srcTx, int destTx) {
+ super();
+ this.srcTx = srcTx;
+ this.destTx = destTx;
+ }
+
+ public int getSourceTx() {
+ return srcTx;
+ }
+
+ public int getDestinationTx() {
+ return destTx;
+ }
+}

Back to the top