Package com.sosnoski.seismic.common

Examples of com.sosnoski.seismic.common.Region


                int mark = line.indexOf(' ');
                int index = Integer.parseInt(line.substring(0, mark));
                line = line.substring(mark+1).trim();
                mark = line.indexOf(' ');
                int owner = Integer.parseInt(line.substring(0, mark));
                Region region =
                    new Region(owner, index, line.substring(mark+1).trim());
                m_regions[index-1] = region;
                m_seismicInfos[owner-1].m_regionList.add(region);
               
            }
        }
View Full Code Here

TOP

Related Classes of com.sosnoski.seismic.common.Region

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.