-
Notifications
You must be signed in to change notification settings - Fork 123
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 #770 from gnanaprakash-ravi/ZEIssue230Annotations
Update the Setter functions generated code in annotations
- Loading branch information
Showing
4 changed files
with
124 additions
and
39 deletions.
There are no files selected for viewing
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
22 changes: 22 additions & 0 deletions
22
common/py/src/main/java/zingg/common/py/processors/ProcessorContext.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,22 @@ | ||
package zingg.common.py.processors; | ||
|
||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class ProcessorContext { | ||
private static final ProcessorContext INSTANCE = new ProcessorContext(); | ||
|
||
private Map<String, List<String>> classMethodsMap = new HashMap<>(); | ||
|
||
private ProcessorContext() { | ||
} | ||
|
||
public static ProcessorContext getInstance() { | ||
return INSTANCE; | ||
} | ||
|
||
public Map<String, List<String>> getClassMethodsMap() { | ||
return classMethodsMap; | ||
} | ||
} |
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