com.github.mustachejava.reflect.MissingWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Implementation of mustache.js for Java
package com.github.mustachejava.reflect;
/**
* Used to mark a wrapper this is only guarding a complete miss.
*/
public class MissingWrapper extends GuardedWrapper {
public MissingWrapper(Guard[] guard) {
super(guard);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy