]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.issues/src/org/simantics/issues/preferences/IssuePreferences.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.issues / src / org / simantics / issues / preferences / IssuePreferences.java
index 3b3b154cbd94dae1823c712f4c67f9fcd9f745ab..9d9b49d8bc73b60d3ce7b201bccce9ebcd99358f 100644 (file)
@@ -1,43 +1,43 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.issues.preferences;\r
-\r
-/**\r
- * Constant definitions for plug-in preferences\r
- */\r
-public final class IssuePreferences {\r
-\r
-    public static final String           P_ISSUES_ENABLED       = "issues.enabled";\r
-\r
-    /**\r
-     * Preference for the maximum amount of issues to write during a batch\r
-     * validation operation. This is used to keep the amount of written issues\r
-     * down to tolerable levels performance-wise.\r
-     */\r
-    public static final String           P_MAX_BATCH_ISSUES_TO_WRITE = "issues.batch.write.max";\r
-\r
-    public static final boolean          DEFAULT_ISSUES_ENABLED = true;\r
-\r
-    public static final int              DEFAULT_MAX_BATCH_ISSUES_TO_WRITE = 1000;\r
-\r
-    public static final IssuePreferences DEFAULT                = new IssuePreferences(DEFAULT_ISSUES_ENABLED, DEFAULT_MAX_BATCH_ISSUES_TO_WRITE);\r
-\r
-    public final boolean                 enabled;\r
-\r
-    public final int                     maxBatchIssuesToWrite;\r
-\r
-    public IssuePreferences(boolean enabled, int maxBatchIssuesToWrite) {\r
-        this.enabled = enabled;\r
-        this.maxBatchIssuesToWrite = maxBatchIssuesToWrite;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.issues.preferences;
+
+/**
+ * Constant definitions for plug-in preferences
+ */
+public final class IssuePreferences {
+
+    public static final String           P_ISSUES_ENABLED       = "issues.enabled";
+
+    /**
+     * Preference for the maximum amount of issues to write during a batch
+     * validation operation. This is used to keep the amount of written issues
+     * down to tolerable levels performance-wise.
+     */
+    public static final String           P_MAX_BATCH_ISSUES_TO_WRITE = "issues.batch.write.max";
+
+    public static final boolean          DEFAULT_ISSUES_ENABLED = true;
+
+    public static final int              DEFAULT_MAX_BATCH_ISSUES_TO_WRITE = 1000;
+
+    public static final IssuePreferences DEFAULT                = new IssuePreferences(DEFAULT_ISSUES_ENABLED, DEFAULT_MAX_BATCH_ISSUES_TO_WRITE);
+
+    public final boolean                 enabled;
+
+    public final int                     maxBatchIssuesToWrite;
+
+    public IssuePreferences(boolean enabled, int maxBatchIssuesToWrite) {
+        this.enabled = enabled;
+        this.maxBatchIssuesToWrite = maxBatchIssuesToWrite;
+    }
+
+}