diff options
author | Sebastian Struckmann | 2014-10-21 15:23:10 +0000 |
---|---|---|
committer | Sebastian Struckmann | 2014-10-21 15:23:39 +0000 |
commit | f1200943bccb97092f503266e9db025b727c4546 (patch) | |
tree | 570ee46fb1c72dba290a189a0cce2a23e39e944a | |
parent | f2d3ccfc674b355e139fe84b2fecc22dbac6bfa2 (diff) | |
download | org.eclipse.jubula.core-f1200943bccb97092f503266e9db025b727c4546.tar.gz org.eclipse.jubula.core-f1200943bccb97092f503266e9db025b727c4546.tar.xz org.eclipse.jubula.core-f1200943bccb97092f503266e9db025b727c4546.zip |
Sprint task - Java API - Fixed generating of pseudo component identifier for components with default mapping
-rw-r--r-- | org.eclipse.jubula.toolkit.api.gen/templates/ClassGenerator.javajet | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jubula.toolkit.api.gen/templates/ClassGenerator.javajet b/org.eclipse.jubula.toolkit.api.gen/templates/ClassGenerator.javajet index 02c07dbf2..fc4d6337e 100644 --- a/org.eclipse.jubula.toolkit.api.gen/templates/ClassGenerator.javajet +++ b/org.eclipse.jubula.toolkit.api.gen/templates/ClassGenerator.javajet @@ -124,7 +124,7 @@ public <%if (genInterface) {%>interface<%} else {%>class<%}%> <%=className%> <%}%> <%}%> - <%if (!genInterface) {%> + <%if (!genInterface && hasDefaultMapping) {%> protected IComponentIdentifier getPseudoComponentIdentifier() { <%if (hasComponentClass) {%> org.eclipse.jubula.tools.internal.objects.ComponentIdentifier pseudoIdentifier = |