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
package com.dooapp.template.builder; | |
import spoon.template.Local; | |
import spoon.template.Parameter; | |
import spoon.template.Template; | |
public class DefaultConstantTemplate implements Template { | |
@Parameter() | |
static String _name_; | |
@Parameter("_NAME_") | |
String __NAME_; | |
public static final String DEFAULT__NAME__VALUE = _name_; | |
@Local | |
public DefaultConstantTemplate(String name) { | |
_name_ = "defaultValue." + name; | |
__NAME_ = name.toUpperCase(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment