![JAR search and dependency download from the Maven repository](/logo.png)
se.javasoft.framework.development.meta.model.impl.ExtensionHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metamodel Show documentation
Show all versions of metamodel Show documentation
The meta model for javasoft.se development framework
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