Skip to content

Commit

Permalink
Merge branch 'dev_javaplugin'
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeSchumacherCapgemini committed Aug 26, 2020
2 parents e066379 + 3f7b0e8 commit 85cc269
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>javaplugin-model</artifactId>
<version>2.2.2</version>
<version>2.2.3</version>
<name>CobiGen Javaplugin Model</name>
<packaging>jar</packaging>
<description>CobiGen - Java Plug-in Model</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>javaplugin</artifactId>
<name>CobiGen - Java Plug-in</name>
<version>2.2.2</version>
<version>2.2.3</version>
<packaging>jar</packaging>
<description>CobiGen - Java Plug-in</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ public void addParameter(FieldDef fieldDef) {
if (currentMethod != null) {
jParam.setExecutable(currentMethod);
} else {
jParam.setExecutable(currentMethod);
jParam.setExecutable(currentConstructor);
}
jParam.setModelWriterFactory(modelWriterFactory);
addJavaDoc(jParam);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
package io.oasp.gastronomy.restaurant.tablemanagement.dataaccess.api;

import javax.annotation.Nonnull;
/**
* Sample Entity without detail variable assignment variables.detail.
*/
public class SampleEntity {

private List<String> testField;

public SampleEntity(@Nonnull io.oasp.gastronomy.restaurant.tablemanagement.dataaccess.api.SampleEntity sampleEntity) {
}
}
2 changes: 1 addition & 1 deletion documentation/master-cobigen.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DISCLAIMER: All Cobigen plugins are compatible with the latest release of Devonf
---

* CobiGen v6.1.2
* CobiGen - Java Plug-in v2.2.2
* CobiGen - Java Plug-in v2.2.3
* CobiGen - XML Plug-in v4.2.0
* CobiGen - TypeScript Plug-in v2.4.3
* CobiGen - Property Plug-in v2.1.0
Expand Down

0 comments on commit 85cc269

Please sign in to comment.