Package org.springframework.ide.eclipse.beans.ui.namespaces.DefaultNamespaceDefinition

Examples of org.springframework.ide.eclipse.beans.ui.namespaces.DefaultNamespaceDefinition.Version


    return namespaceDefinitions;
  }
 
  private static boolean isSpring31(String locationUri) {
    Version minimum = new Version("3.1");
    Version temp = Version.MINIMUM_VERSION;
    Matcher matcher = DefaultNamespaceDefinition.VERSION_PATTERN.matcher(locationUri);
    if (matcher.matches()) {
      temp = new Version(matcher.group(1));
    }
    if (temp.compareTo(minimum) >= 0) {
      return true;
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.beans.ui.namespaces.DefaultNamespaceDefinition.Version

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.