Package net.sourceforge.cruisecontrol.distributed

Examples of net.sourceforge.cruisecontrol.distributed.PropertyEntry


        searchString.replace(',', ';');
        final StringTokenizer tokenizer = new StringTokenizer(searchString.trim(), ";");
        final List entriesList = new ArrayList();
        while (tokenizer.hasMoreElements()) {
            final String token = tokenizer.nextToken();
            final PropertyEntry entry = new PropertyEntry();
            entry.name = token.substring(0, token.indexOf("=")).trim();
            entry.value = token.substring(token.indexOf("=") + 1).trim();
            entriesList.add(entry);
        }
View Full Code Here

TOP

Related Classes of net.sourceforge.cruisecontrol.distributed.PropertyEntry

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.