Desktop tool for browsing account info from EVE-Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EveApi.java 358B

12345678910111213141516171819202122
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package uk.co.md87.evetool.api;
  6. import java.sql.Connection;
  7. /**
  8. *
  9. * @author chris
  10. */
  11. public class EveApi {
  12. private final Connection sqlConnection;
  13. public EveApi(Connection sqlConnection) {
  14. this.sqlConnection = sqlConnection;
  15. }
  16. }