Package trams.data

Examples of trams.data.Distances


   
    private void createAndStoreDistances ( String name, Map<String, Integer> distances ) {
      Session session = HibernateUtil.getSessionFactory().getCurrentSession();
        session.beginTransaction();
       
        Distances theDistances = new Distances();
        theDistances.setStopName(name);
        theDistances.setDistanceTimes(distances);
       
        session.save(theDistances);
        session.getTransaction().commit();
    }
View Full Code Here

TOP

Related Classes of trams.data.Distances

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.