Skip to content
Snippets Groups Projects
Commit debdf69b authored by Alberto Debiasi's avatar Alberto Debiasi
Browse files

in the export to .oss, added the possibility to use real type


Change-Id: I21f4a59f3566ea5462cff25f8395592ebe5feebf
Signed-off-by: default avatarAlberto Debiasi <adebiasi@fbk.eu>
parent 0f49d7e9
No related branches found
No related tags found
No related merge requests found
......@@ -298,6 +298,13 @@ public class EntityUtil {
return false;
}
public boolean isRealAttribute(Property umlProperty) {
if (umlProperty.getType() != null) {
return (umlProperty.getType().getName().compareTo("Real") == 0);
}
return false;
}
public boolean isIntegerAttribute(Property umlProperty) {
if (umlProperty.getType() != null) {
return (umlProperty.getType().getName().compareTo("Integer") == 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment