(LoadContext context, Class<T> cl, String value, String args)
| 47 | private Class<T> refClass; |
| 48 | |
| 49 | @Override |
| 50 | public boolean initialize(LoadContext context, Class<T> cl, String value, String args) |
| 51 | { |
| 52 | Logging.deprecationPrint("FEAT=x is deprecated in CHOOSE, " + "please use ABILITY=FEAT[x]"); |
| 53 | if (args != null) |
| 54 | { |
| 55 | return false; |
| 56 | } |
| 57 | ref = context.getReferenceContext().getManufacturerId(AbilityCategory.FEAT).getReference(value); |
| 58 | refClass = cl; |
| 59 | return true; |
| 60 | } |
| 61 | |
| 62 | @Override |
| 63 | public String getTokenName() |
nothing calls this directly
no test coverage detected