FreeMarker代码分析(6)

FreeMarker代码分析(6),第1张

FreeMarker代码分析(6)

2021SC@SDUSC

**内容非常主观,可能出现错漏,慎重参考

_ParserConfigurationWithInheritedFormat.java

package freemarker.core;

import freemarker.template.Version;

 
public final class _ParserConfigurationWithInheritedFormat implements ParserConfiguration {

    private final OutputFormat outputFormat;
    private final Integer autoEscapingPolicy;
    private final ParserConfiguration wrappedPCfg;

    public _ParserConfigurationWithInheritedFormat(ParserConfiguration wrappedPCfg, OutputFormat outputFormat,
            Integer autoEscapingPolicy) {
        this.outputFormat = outputFormat;
        this.autoEscapingPolicy = autoEscapingPolicy;
        this.wrappedPCfg = wrappedPCfg;
    }

    @Override
    public boolean getWhitespaceStripping() {
        return wrappedPCfg.getWhitespaceStripping();
    }

    @Override
    public int getTagSyntax() {
        return wrappedPCfg.getTagSyntax();
    }

    @Override
    public int getInterpolationSyntax() {
        return wrappedPCfg.getInterpolationSyntax();
    }

    @Override
    public boolean getStrictSyntaxMode() {
        return wrappedPCfg.getStrictSyntaxMode();
    }

    @Override
    public OutputFormat getOutputFormat() {
        return outputFormat != null ? outputFormat : wrappedPCfg.getOutputFormat();
    }

    @Override
    public boolean getRecognizeStandardFileExtensions() {
        return false;
    }

    @Override
    public int getNamingConvention() {
        return wrappedPCfg.getNamingConvention();
    }

    @Override
    public Version getIncompatibleImprovements() {
        return wrappedPCfg.getIncompatibleImprovements();
    }

    @Override
    public int getAutoEscapingPolicy() {
        return autoEscapingPolicy != null ? autoEscapingPolicy.intValue() : wrappedPCfg.getAutoEscapingPolicy();
    }

    @Override
    public ArithmeticEngine getArithmeticEngine() {
        return wrappedPCfg.getArithmeticEngine();
    }

    @Override
    public int getTabSize() {
        return wrappedPCfg.getTabSize();
    }
    
}

_ParserConfigurationWithInheritedFormat.java

package freemarker.core;

import freemarker.template.Version;

 
public final class _ParserConfigurationWithInheritedFormat implements ParserConfiguration {

    private final OutputFormat outputFormat;
    private final Integer autoEscapingPolicy;
    private final ParserConfiguration wrappedPCfg;

    public _ParserConfigurationWithInheritedFormat(ParserConfiguration wrappedPCfg, OutputFormat outputFormat,
            Integer autoEscapingPolicy) {
        this.outputFormat = outputFormat;
        this.autoEscapingPolicy = autoEscapingPolicy;
        this.wrappedPCfg = wrappedPCfg;
    }

    @Override
    public boolean getWhitespaceStripping() {
        return wrappedPCfg.getWhitespaceStripping();
    }

    @Override
    public int getTagSyntax() {
        return wrappedPCfg.getTagSyntax();
    }

    @Override
    public int getInterpolationSyntax() {
        return wrappedPCfg.getInterpolationSyntax();
    }

    @Override
    public boolean getStrictSyntaxMode() {
        return wrappedPCfg.getStrictSyntaxMode();
    }

    @Override
    public OutputFormat getOutputFormat() {
        return outputFormat != null ? outputFormat : wrappedPCfg.getOutputFormat();
    }

    @Override
    public boolean getRecognizeStandardFileExtensions() {
        return false;
    }

    @Override
    public int getNamingConvention() {
        return wrappedPCfg.getNamingConvention();
    }

    @Override
    public Version getIncompatibleImprovements() {
        return wrappedPCfg.getIncompatibleImprovements();
    }

    @Override
    public int getAutoEscapingPolicy() {
        return autoEscapingPolicy != null ? autoEscapingPolicy.intValue() : wrappedPCfg.getAutoEscapingPolicy();
    }

    @Override
    public ArithmeticEngine getArithmeticEngine() {
        return wrappedPCfg.getArithmeticEngine();
    }

    @Override
    public int getTabSize() {
        return wrappedPCfg.getTabSize();
    }
    
}

_SettingevaluationEnvironment.java

package freemarker.core;

import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;


public class _SortedArraySet extends _UnmodifiableSet {

    private final E[] array;

    public _SortedArraySet(E[] array) {
        this.array = array;
    }

    @Override
    public int size() {
        return array.length;
    }

    @Override
    public boolean contains(Object o) {
        return Arrays.binarySearch(array, o) >= 0;
    }

    @Override
    public Iterator iterator() {
        return new _ArrayIterator(array);
    }

    @Override
    public boolean add(E o) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean remove(Object o) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean addAll(Collection c) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean removeAll(Collection c) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean retainAll(Collection c) {
        throw new UnsupportedOperationException();
    }

    @Override
    public void clear() {
        throw new UnsupportedOperationException();
    }
    
}

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5481541.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存