cr/lf

Change-Id: I62ab083bed5800f0c2135d400bedd24a22e27bd3
diff --git a/org.eclipse.scout.sdk.test/resources/operation/formData/formdata.shared/src/formdata/shared/services/pages/BaseTablePageData.java b/org.eclipse.scout.sdk.test/resources/operation/formData/formdata.shared/src/formdata/shared/services/pages/BaseTablePageData.java
index 2c0a7ee..fc8b2e0 100644
--- a/org.eclipse.scout.sdk.test/resources/operation/formData/formdata.shared/src/formdata/shared/services/pages/BaseTablePageData.java
+++ b/org.eclipse.scout.sdk.test/resources/operation/formData/formdata.shared/src/formdata/shared/services/pages/BaseTablePageData.java
@@ -1,75 +1,75 @@
-package formdata.shared.services.pages;

-

-import java.util.Date;

-

-import org.eclipse.scout.rt.shared.data.basic.table.AbstractTableRowData;

-import org.eclipse.scout.rt.shared.data.page.AbstractTablePageData;

-

-public class BaseTablePageData extends AbstractTablePageData {

-  private static final long serialVersionUID = 1L;

-

-  public BaseTablePageData() {

-  }

-

-  @Override

-  public BaseTablePageRowData[] getRows() {

-    return (BaseTablePageRowData[]) super.getRows();

-  }

-

-  public void setRows(BaseTablePageRowData[] rows) {

-    super.setRows(rows);

-  }

-

-  @Override

-  public BaseTablePageRowData addRow() {

-    return (BaseTablePageRowData) super.addRow();

-  }

-

-  @Override

-  public BaseTablePageRowData addRow(int rowState) {

-    return (BaseTablePageRowData) super.addRow(rowState);

-  }

-

-  @Override

-  public BaseTablePageRowData rowAt(int idx) {

-    return (BaseTablePageRowData) super.rowAt(idx);

-  }

-

-  @Override

-  public BaseTablePageRowData createRow() {

-    return new BaseTablePageRowData();

-  }

-

-  @Override

-  public Class<? extends AbstractTableRowData> getRowType() {

-    return BaseTablePageRowData.class;

-  }

-

-  public static class BaseTablePageRowData extends AbstractTableRowData {

-    private static final long serialVersionUID = 1L;

-

-    public BaseTablePageRowData() {

-    }

-

-    public static final String first = "first";

-    public static final String second = "second";

-    private String m_first;

-    private Date m_second;

-

-    public String getFirst() {

-      return m_first;

-    }

-

-    public void setFirst(String first) {

-      m_first = first;

-    }

-

-    public Date getSecond() {

-      return m_second;

-    }

-

-    public void setSecond(Date second) {

-      m_second = second;

-    }

-  }

-}

+package formdata.shared.services.pages;
+
+import java.util.Date;
+
+import org.eclipse.scout.rt.shared.data.basic.table.AbstractTableRowData;
+import org.eclipse.scout.rt.shared.data.page.AbstractTablePageData;
+
+public class BaseTablePageData extends AbstractTablePageData {
+  private static final long serialVersionUID = 1L;
+
+  public BaseTablePageData() {
+  }
+
+  @Override
+  public BaseTablePageRowData[] getRows() {
+    return (BaseTablePageRowData[]) super.getRows();
+  }
+
+  public void setRows(BaseTablePageRowData[] rows) {
+    super.setRows(rows);
+  }
+
+  @Override
+  public BaseTablePageRowData addRow() {
+    return (BaseTablePageRowData) super.addRow();
+  }
+
+  @Override
+  public BaseTablePageRowData addRow(int rowState) {
+    return (BaseTablePageRowData) super.addRow(rowState);
+  }
+
+  @Override
+  public BaseTablePageRowData rowAt(int idx) {
+    return (BaseTablePageRowData) super.rowAt(idx);
+  }
+
+  @Override
+  public BaseTablePageRowData createRow() {
+    return new BaseTablePageRowData();
+  }
+
+  @Override
+  public Class<? extends AbstractTableRowData> getRowType() {
+    return BaseTablePageRowData.class;
+  }
+
+  public static class BaseTablePageRowData extends AbstractTableRowData {
+    private static final long serialVersionUID = 1L;
+
+    public BaseTablePageRowData() {
+    }
+
+    public static final String first = "first";
+    public static final String second = "second";
+    private String m_first;
+    private Date m_second;
+
+    public String getFirst() {
+      return m_first;
+    }
+
+    public void setFirst(String first) {
+      m_first = first;
+    }
+
+    public Date getSecond() {
+      return m_second;
+    }
+
+    public void setSecond(Date second) {
+      m_second = second;
+    }
+  }
+}
diff --git a/org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/IMessageBoxService.java b/org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/IMessageBoxService.java
index 47d6e1b..e3d1300 100644
--- a/org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/IMessageBoxService.java
+++ b/org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/IMessageBoxService.java
@@ -1,43 +1,43 @@
-/*******************************************************************************

- * Copyright (c) 2010 BSI Business Systems Integration AG.

- * 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:

- *     BSI Business Systems Integration AG - initial API and implementation

- ******************************************************************************/

-package org.eclipse.scout.sdk;

-

-/**

- * Service for getting and providing feedback from and to the user, respectively.

- * 

- * @since 3.10.0-M1

- */

-public interface IMessageBoxService {

-

-  public enum YesNo {

-    YES,

-    NO;

-  }

-

-  /**

-   * Shows the given message to the user as well as some means for <em>Yes</em> and <em>No</em>. If the interaction with

-   * the user is not possible, the default answer is returned.

-   * 

-   * @param title

-   * @param message

-   * @param defaultAnswer

-   * @return

-   */

-  YesNo showYesNoQuestion(String title, String message, YesNo defaultAnswer);

-

-  /**

-   * Shows the given warning.

-   * 

-   * @param title

-   * @param message

-   */

-  void showWarning(String title, String message);

-}

+/*******************************************************************************
+ * Copyright (c) 2010 BSI Business Systems Integration AG.
+ * 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:
+ *     BSI Business Systems Integration AG - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.scout.sdk;
+
+/**
+ * Service for getting and providing feedback from and to the user, respectively.
+ * 
+ * @since 3.10.0-M1
+ */
+public interface IMessageBoxService {
+
+  public enum YesNo {
+    YES,
+    NO;
+  }
+
+  /**
+   * Shows the given message to the user as well as some means for <em>Yes</em> and <em>No</em>. If the interaction with
+   * the user is not possible, the default answer is returned.
+   * 
+   * @param title
+   * @param message
+   * @param defaultAnswer
+   * @return
+   */
+  YesNo showYesNoQuestion(String title, String message, YesNo defaultAnswer);
+
+  /**
+   * Shows the given warning.
+   * 
+   * @param title
+   * @param message
+   */
+  void showWarning(String title, String message);
+}