| 1 | package de.uka.ipd.sdq.cip.runtime; |
| 2 | |
| 3 | public class ConstantsContainer { |
| 4 | |
| 5 | // Completion detail view template |
| 6 | public static final String HTML_TOOLTIP = "/template/tooltip.xhtml"; |
| 7 | |
| 8 | public static final String MARK_MODEL_CAPTION = "Select &Mark model:"; |
| 9 | public static final String MARK_METAMODEL_CAPTION = "Select Mark m&etamodel:"; |
| 10 | |
| 11 | public static final String COMPLETION_FILE_CAPTION = "Select the &Completion QVT file"; |
| 12 | |
| 13 | public static final String[] COMPLETION_FILE_EXTENSIONS_QVTR = {"*.qvt","*.qvtr"}; |
| 14 | |
| 15 | // file extensions for qvto transformations |
| 16 | public static final String[] COMPLETION_FILE_EXTENSIONS_QVTO = {"*.qvt","*.qvto"}; |
| 17 | |
| 18 | /** optional model to be pushed in the transformation */ |
| 19 | public static final String OPTIONAL_MODEL_CAPTION = "Optional model for the transformation."; |
| 20 | |
| 21 | |
| 22 | public static final String FEATURECONFIG_FILE_CAPTION = "Select &Featureconfig file:"; |
| 23 | |
| 24 | public static final String[] FEATURECONFIG_FILE_EXTENSIONS = {"*.featureconfig"}; |
| 25 | |
| 26 | } |