Package org.springframework.ide.eclipse.beans.core.internal.model.namespaces.ToolingAwareNamespacePlugins

Examples of org.springframework.ide.eclipse.beans.core.internal.model.namespaces.ToolingAwareNamespacePlugins.Version


  /**
   * {@inheritDoc}
   */
  protected String getDefaultUri() {
    String defaultUri = null;
    Version version = Version.MINIMUM_VERSION;
    for (String uri : uris) {
      Version tempVersion = Version.MINIMUM_VERSION;
      Matcher matcher = versionPattern.matcher(uri);
      if (matcher.matches()) {
        tempVersion = new Version(matcher.group(1));
      }
      if (tempVersion.compareTo(version) >= 0) {
        version = tempVersion;
        defaultUri = uri;
      }
    }
    return defaultUri;
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.beans.core.internal.model.namespaces.ToolingAwareNamespacePlugins.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.