All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zanata.adapter.xliff.XliffCommon Maven / Gradle / Ivy

There is a newer version: 4.6.2
Show newest version
package org.zanata.adapter.xliff;

import java.util.Collection;
import java.util.TreeSet;

public abstract class XliffCommon {
    protected static final String DELIMITER = "::";

    protected static final String ELE_FILE = "file";
    protected static final String ELE_TRANS_UNIT = "trans-unit";
    protected static final String ELE_SOURCE = "source";
    protected static final String ELE_CONTEXT_GROUP = "context-group";
    protected static final String ELE_CONTEXT = "context";
    protected static final String ELE_TARGET = "target";
    protected static final String ELE_BODY = "body";

    private static Collection contentEle = new TreeSet();

    protected static final String ATTRI_SOURCE_LANGUAGE = "source-language";
    protected static final String ATTRI_TARGET_LANGUAGE = "target-language";
    protected static final String ATTRI_ID = "id";
    protected static final String ATTRI_CONTEXT_TYPE = "context-type";
    protected static final String ATTRI_NAME = "name";
    protected static final String ATTRI_DATATYPE = "datatype";
    protected static final String ATTRI_ORIGINAL = "original";

    public static boolean legalInsideContent(String localName) {
        return getContentElementList().contains(localName);
    }

    protected static Collection getContentElementList() {
        if (contentEle.isEmpty()) {
            contentEle.add("g");
            contentEle.add("x");
            contentEle.add("bx");
            contentEle.add("ex");
            contentEle.add("bpt");
            contentEle.add("ept");
            contentEle.add("ph");
            contentEle.add("it");
            contentEle.add("mrk");
        }
        return contentEle;

    }

    public enum ValidationType {
        XSD, CONTENT;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy