Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/**
 *  soapUI, copyright (C) 2004-2012 smartbear.com 
 *
 *  soapUI is free software; you can redistribute it and/or modify it under the 
 *  terms of version 2.1 of the GNU Lesser General Public License as published by 
 *  the Free Software Foundation.
 *
 *  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
 *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
 *  See the GNU Lesser General Public License for more details at gnu.org.
 */

import java.io.IOException;
import java.io.LineNumberReader;
import java.io.StringReader;

import java.util.ArrayList;

import java.util.List;

public class Main {
    public static List<String> splitLines(String string) {
        try {
            ArrayList<String> list = new ArrayList<String>();

            LineNumberReader reader = new LineNumberReader(new StringReader(string));
            String s;
            while ((s = reader.readLine()) != null) {
                list.add(s);
            }
            return list;
        } catch (IOException e) {
            // I don't think this can really happen with a StringReader.
            throw new RuntimeException(e);
        }
    }
}