]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling/src/org/simantics/modeling/preferences/CSVPreferences.java
Fixed ComponentTypeCommands.setUnit to support unit == null
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / preferences / CSVPreferences.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.modeling.preferences;
13
14 import org.simantics.history.csv.ExportInterpolation;
15
16 /**
17  * TODO: duplicate of org.simantics.simulation.export. Reorganize to remove duplication.
18  */
19 public class CSVPreferences {
20
21         public static final String P_NODE                       = "org.simantics.modeling";
22
23         // Comma separated value
24         public static final String P_CSV_DECIMAL_SEPARATOR      = "csv.decimal.separator";      //$NON-NLS-1$
25         public static final String P_CSV_FILE_EXTENSION         = "csv.file.extension";         //$NON-NLS-1$
26         public static final String P_CSV_COLUMN_SEPARATOR       = "csv.value.separator";        //$NON-NLS-1$
27         public static final String P_CSV_START_TIME             = "csv.start";                   //$NON-NLS-1$
28         public static final String P_CSV_TIME_STEP              = "csv.step";                   //$NON-NLS-1$
29         
30         public static final String P_CSV_RESAMPLE               = "csv.resample";                   //$NON-NLS-1$
31         public static final String P_CSV_SAMPLING_MODE          = "csv.sampling.mode";                   //$NON-NLS-1$
32
33         public static final String P_CSV_TIME_DIGITS            = "csv.format.time.digits";     //$NON-NLS-1$
34         public static final String P_CSV_FLOAT_DIGITS           = "csv.format.float.digits";    //$NON-NLS-1$
35         public static final String P_CSV_DOUBLE_DIGITS          = "csv.format.double.digits";   //$NON-NLS-1$
36
37         public static final Double DEFAULT_CSV_START_TIME       = 0.0; // seconds
38         public static final Double DEFAULT_CSV_TIME_STEP        = 1.0; // seconds
39         public static final String DEFAULT_FILE_EXTENSION       = ".txt";
40         
41         public static final Boolean DEFAULT_CSV_RESAMPLE        = true;
42         public static final String DEFAULT_CSV_SAMPLING_MODE    = ExportInterpolation.getDefault().toPreference();
43
44         public static final int    DEFAULT_CSV_TIME_DIGITS      = 9; // From MathContext#DEFAULT_DIGITS
45         public static final int    DEFAULT_CSV_FLOAT_DIGITS     = 7;
46         public static final int    DEFAULT_CSV_DOUBLE_DIGITS    = 15;
47
48 }