-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #881 from mattyb678
* pr/881: Polish "Adding field declaration for code generation" Adding field declaration for code generation Closes gh-881
- Loading branch information
Showing
13 changed files
with
969 additions
and
6 deletions.
There are no files selected for viewing
121 changes: 121 additions & 0 deletions
121
.../src/main/java/io/spring/initializr/generator/language/groovy/GroovyFieldDeclaration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/* | ||
* Copyright 2012-2019 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.spring.initializr.generator.language.groovy; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
import io.spring.initializr.generator.language.Annotatable; | ||
import io.spring.initializr.generator.language.Annotation; | ||
|
||
/** | ||
* Declaration of a field written in Groovy. | ||
* | ||
* @author Matt Berteaux | ||
*/ | ||
public final class GroovyFieldDeclaration implements Annotatable { | ||
|
||
private final List<Annotation> annotations = new ArrayList<>(); | ||
|
||
private final int modifiers; | ||
|
||
private final String name; | ||
|
||
private final String returnType; | ||
|
||
private final Object value; | ||
|
||
private final boolean initialized; | ||
|
||
private GroovyFieldDeclaration(Builder builder) { | ||
this.modifiers = builder.modifiers; | ||
this.name = builder.name; | ||
this.returnType = builder.returnType; | ||
this.value = builder.value; | ||
this.initialized = builder.initialized; | ||
} | ||
|
||
public static Builder field(String name) { | ||
return new Builder(name); | ||
} | ||
|
||
@Override | ||
public void annotate(Annotation annotation) { | ||
this.annotations.add(annotation); | ||
} | ||
|
||
@Override | ||
public List<Annotation> getAnnotations() { | ||
return Collections.unmodifiableList(this.annotations); | ||
} | ||
|
||
public int getModifiers() { | ||
return this.modifiers; | ||
} | ||
|
||
public String getName() { | ||
return this.name; | ||
} | ||
|
||
public String getReturnType() { | ||
return this.returnType; | ||
} | ||
|
||
public Object getValue() { | ||
return this.value; | ||
} | ||
|
||
public boolean isInitialized() { | ||
return this.initialized; | ||
} | ||
|
||
public static final class Builder { | ||
|
||
private final String name; | ||
|
||
private String returnType; | ||
|
||
private int modifiers; | ||
|
||
private Object value; | ||
|
||
private boolean initialized; | ||
|
||
private Builder(String name) { | ||
this.name = name; | ||
} | ||
|
||
public Builder modifiers(int modifiers) { | ||
this.modifiers = modifiers; | ||
return this; | ||
} | ||
|
||
public Builder value(Object value) { | ||
this.value = value; | ||
this.initialized = true; | ||
return this; | ||
} | ||
|
||
public GroovyFieldDeclaration returning(String returnType) { | ||
this.returnType = returnType; | ||
return new GroovyFieldDeclaration(this); | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
124 changes: 124 additions & 0 deletions
124
...ator/src/main/java/io/spring/initializr/generator/language/java/JavaFieldDeclaration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
/* | ||
* Copyright 2012-2019 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.spring.initializr.generator.language.java; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
import io.spring.initializr.generator.language.Annotatable; | ||
import io.spring.initializr.generator.language.Annotation; | ||
|
||
/** | ||
* Declaration of a field written in Java. | ||
* | ||
* @author Matt Berteaux | ||
*/ | ||
public final class JavaFieldDeclaration implements Annotatable { | ||
|
||
private final List<Annotation> annotations = new ArrayList<>(); | ||
|
||
private final int modifiers; | ||
|
||
private final String name; | ||
|
||
private final String returnType; | ||
|
||
private final Object value; | ||
|
||
private final boolean initialized; | ||
|
||
private JavaFieldDeclaration(Builder builder) { | ||
this.modifiers = builder.modifiers; | ||
this.name = builder.name; | ||
this.returnType = builder.returnType; | ||
this.value = builder.value; | ||
this.initialized = builder.initialized; | ||
} | ||
|
||
public static Builder field(String name) { | ||
return new Builder(name); | ||
} | ||
|
||
@Override | ||
public void annotate(Annotation annotation) { | ||
this.annotations.add(annotation); | ||
} | ||
|
||
@Override | ||
public List<Annotation> getAnnotations() { | ||
return Collections.unmodifiableList(this.annotations); | ||
} | ||
|
||
public int getModifiers() { | ||
return this.modifiers; | ||
} | ||
|
||
public String getName() { | ||
return this.name; | ||
} | ||
|
||
public String getReturnType() { | ||
return this.returnType; | ||
} | ||
|
||
public Object getValue() { | ||
return this.value; | ||
} | ||
|
||
public boolean isInitialized() { | ||
return this.initialized; | ||
} | ||
|
||
/** | ||
* Builder for creating a {@link JavaFieldDeclaration}. | ||
*/ | ||
public static final class Builder { | ||
|
||
private final String name; | ||
|
||
private String returnType; | ||
|
||
private int modifiers; | ||
|
||
private Object value; | ||
|
||
private boolean initialized; | ||
|
||
private Builder(String name) { | ||
this.name = name; | ||
} | ||
|
||
public Builder modifiers(int modifiers) { | ||
this.modifiers = modifiers; | ||
return this; | ||
} | ||
|
||
public Builder value(Object value) { | ||
this.value = value; | ||
this.initialized = true; | ||
return this; | ||
} | ||
|
||
public JavaFieldDeclaration returning(String returnType) { | ||
this.returnType = returnType; | ||
return new JavaFieldDeclaration(this); | ||
} | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.