Skip to content
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
8 changes: 7 additions & 1 deletion projo/src/main/java/pro/projo/$template/Factory.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
// limitations under the License. //
// //
package pro.projo.$template;
/*#*/

/* *#* The following import will only appear in generated files: *#/
import javax.annotation.Generated;
/* */
/*#*/// These imports will be removed from generated files:
import pro.projo.template.annotation.Template;
import pro.projo.template.configuration.ProjoFactoryTemplateConfiguration;
/*#*/
Expand All @@ -35,6 +39,8 @@
*
*#*/
@Template(input=ProjoFactoryTemplateConfiguration.class)/*#*/
/* *#* The following will only appear in generated files: *#/
@Generated("pro.projo.generation.ProjoTemplateFactoryProcessor") /* */
public interface Factory<_Artifact_, $AdditionalTypeParameters> extends pro.projo.Factory
{
/*#*/ interface $First {/**/} /*#*/
Expand Down
7 changes: 6 additions & 1 deletion projo/src/main/java/pro/projo/$template/Intermediate.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@
package pro.projo.$template;

import java.util.function.Function;
/* *#* The following import will only appear in generated files: *#/
import javax.annotation.Generated;
/* */
import pro.projo.internal.Prototype;
/*#*/
/*#*/// These imports will be removed from generated files:
import pro.projo.template.annotation.Template;
import pro.projo.template.configuration.ProjoIntermediateTemplateConfiguration;
/*#*/
Expand All @@ -35,6 +38,8 @@
*
*#*/
@Template(input=ProjoIntermediateTemplateConfiguration.class)/*#*/
/* *#* The following will only appear in generated files: *#/
@Generated("pro.projo.generation.ProjoTemplateFactoryProcessor") /* */
public interface Intermediate<_Artifact_> extends Prototype<_Artifact_>
{
/*#*/ interface $First {/**/} /*#*/
Expand Down
Loading