Package org.springframework.ide.eclipse.boot.core

Examples of org.springframework.ide.eclipse.boot.core.StarterId


            // that a user may have inserted via manual edits.
            String aid = getTextValue(findChild(c, ARTIFACT_ID));
            String gid = getTextValue(findChild(c, GROUP_ID));
            if (aid!=null && gid!=null) { //ignore invalid entries that don't have gid or aid
              if (aid.startsWith(SpringBootStarter.AID_PREFIX)) {
                StarterId id = new StarterId(gid, aid);
                boolean keep = starters.remove(id);
                if (!keep) {
                  depsEl.removeChild(c);
                }
              }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.boot.core.StarterId

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.