Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Villiger2015-11-04 16:59:51 +0000
committerMatthias Villiger2015-11-04 16:59:51 +0000
commit6b6649ef6bac9912f7fb1426d11034f49e511e1b (patch)
tree5e788f9e186684c6ad71ef6810fa9a572896772b
parent20c05d20a3b839533ac2b36517d4a69f64200c71 (diff)
downloadorg.eclipse.scout.sdk-releases/3.10.x.tar.gz
org.eclipse.scout.sdk-releases/3.10.x.tar.xz
org.eclipse.scout.sdk-releases/3.10.x.zip
Fix to find supertypes in forms only creating sub DTOsLuna_3.10_SR1_R17Luna_3.10_SR1_R16releases/3.10.x
-rw-r--r--org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/internal/workspace/dto/DtoUtility.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/internal/workspace/dto/DtoUtility.java b/org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/internal/workspace/dto/DtoUtility.java
index fed3499b7..31bad58ec 100644
--- a/org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/internal/workspace/dto/DtoUtility.java
+++ b/org.eclipse.scout.sdk/src/org/eclipse/scout/sdk/internal/workspace/dto/DtoUtility.java
@@ -350,7 +350,7 @@ public final class DtoUtility {
IType declaringType = recursiveDeclaringType.getDeclaringType();
if (declaringType == null) {
// primary type
- if (FormDataAnnotation.isSdkCommandCreate(formDataAnnotation) || FormDataAnnotation.isSdkCommandUse(formDataAnnotation)) {
+ if (FormDataAnnotation.isCreate(formDataAnnotation) || FormDataAnnotation.isSdkCommandUse(formDataAnnotation)) {
return TypeUtility.getTypeBySignature(formDataAnnotation.getFormDataTypeSignature());
}
return null;

Back to the top