Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[releng] Switch to Sirius 7.4.1-S20240319-042018 #798

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2018, 2020 Thales Global Services S.A.S.
* Copyright (c) 2018, 2024 Thales Global Services S.A.S.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
Expand Down Expand Up @@ -47,17 +47,25 @@ private static void initDisplayConverterCache() {
displayConverterCache = new HashMap<>();

displayConverterCache.put(Literals.EBOOLEAN.getName(), new DefaultBooleanDisplayConverter());
displayConverterCache.put(Literals.EBOOLEAN_OBJECT.getName(), new DefaultBooleanDisplayConverter());
displayConverterCache.put(Literals.ECHAR.getName(), new DefaultCharacterDisplayConverter());
displayConverterCache.put(Literals.ECHARACTER_OBJECT.getName(), new DefaultCharacterDisplayConverter());
displayConverterCache.put(Literals.EDATE.getName(), new DefaultDateDisplayConverter());
displayConverterCache.put(Literals.ESTRING.getName(), new DefaultDisplayConverter());
displayConverterCache.put(Literals.EBIG_DECIMAL.getName(), new DefaultBigDecimalDisplayConverter());
displayConverterCache.put(Literals.EDOUBLE.getName(), new DefaultDoubleDisplayConverter());
displayConverterCache.put(Literals.EDOUBLE_OBJECT.getName(), new DefaultDoubleDisplayConverter());
displayConverterCache.put(Literals.EFLOAT.getName(), new DefaultFloatDisplayConverter());
displayConverterCache.put(Literals.EFLOAT_OBJECT.getName(), new DefaultFloatDisplayConverter());
displayConverterCache.put(Literals.EBYTE.getName(), new DefaultByteDisplayConverter());
displayConverterCache.put(Literals.EBYTE_OBJECT.getName(), new DefaultByteDisplayConverter());
displayConverterCache.put(Literals.EINT.getName(), new DefaultIntegerDisplayConverter());
displayConverterCache.put(Literals.EINTEGER_OBJECT.getName(), new DefaultIntegerDisplayConverter());
displayConverterCache.put(Literals.ELONG.getName(), new DefaultLongDisplayConverter());
displayConverterCache.put(Literals.ELONG_OBJECT.getName(), new DefaultLongDisplayConverter());
displayConverterCache.put(Literals.EBIG_INTEGER.getName(), new DefaultBigIntegerDisplayConverter());
displayConverterCache.put(Literals.ESHORT.getName(), new DefaultShortDisplayConverter());
displayConverterCache.put(Literals.ESHORT_OBJECT.getName(), new DefaultShortDisplayConverter());
}

// method sends Null if no display is found
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*******************************************************************************/
target "kitalpha" with source, requirements

include "https://download.eclipse.org/sirius/updates/stable/7.3.0-S20230929-065140/2023-03/targets/modules/gmf-runtime-1.16.tpd"
include "https://download.eclipse.org/sirius/updates/stable/7.4.1-S20240319-042018/2023-03/targets/modules/gmf-runtime-1.16.tpd"

location Eclipse-2021-12 "https://download.eclipse.org/releases/2021-12/" {
org.eclipse.cvs.feature.group lazy
Expand Down Expand Up @@ -96,7 +96,7 @@ location acceleo "https://download.eclipse.org/acceleo/updates/releases/3.7/" {
org.eclipse.acceleo.doc [3.7.11,3.7.12)
}

location sirius "https://download.eclipse.org/sirius/updates/stable/7.3.0-S20230929-065140/2023-03" {
location sirius "https://download.eclipse.org/sirius/updates/stable/7.4.1-S20240319-042018/2023-03" {
org.eclipse.sirius.doc.feature.feature.group lazy
org.eclipse.sirius.runtime.source.feature.group lazy
org.eclipse.sirius.runtime.acceleo.feature.group lazy
Expand Down
Loading