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

se.javasoft.framework.development.meta.model.impl.ExtensionHelper Maven / Gradle / Ivy

The newest version!
package se.javasoft.framework.development.meta.model.impl;

import se.javasoft.framework.development.meta.model.IModelDatatype;

import java.util.Collection;
import java.util.HashSet;


public class ExtensionHelper {
    private static Collection extensions = new HashSet();

    static {
        extensions.add(new DatatypeSelectoneExt());
        extensions.add(new DatatypeListExt());
        extensions.add(new DatatypeSetExt());
    }

    public static Collection getExtensions() {
        return extensions;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy