Package sino.entities

Examples of sino.entities.UnionStation


            while (scanner.hasNextLine()) {
                logger.debug("Processing line " + lineNumber);
                String line = scanner.nextLine();
                String[] tokens = getTokens(line, "#", 3, lineNumber);
                if (tokens != null) {
                    UnionStation unionStation = new UnionStation();
                    unionStation.setNumber(tokens[0]);
                    unionStation.setRussianName(tokens[1]);
                    unionStation.setChineseName(tokens[2]);
                    this.entityManager.getTransaction().begin();
                    this.unionStationDao.persist(unionStation);
                    this.entityManager.getTransaction().commit();
                    logger.info("Saved union station: " + unionStation);
                }
View Full Code Here

TOP

Related Classes of sino.entities.UnionStation

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.