net.sf.mmm.code.impl.java.JavaFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-code-java-impl Show documentation
Show all versions of mmm-code-java-impl Show documentation
Implementation of mmm-code-api for Java.
package net.sf.mmm.code.impl.java;
import net.sf.mmm.code.base.BaseFactory;
import net.sf.mmm.code.base.expression.BaseExpression;
import net.sf.mmm.code.impl.java.expression.constant.JavaConstant;
/**
* Implementation of {@link BaseFactory} for Java.
*
* @since 1.0.0
*/
public class JavaFactory extends BaseFactory {
@Override
public BaseExpression createExpression(Object value, boolean primitive) {
return JavaConstant.of(value, primitive);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy