Android Open Source - VO-Miner Static






From Project

Back to project page VO-Miner.

License

The source code is released under:

GNU General Public License

If you think the Android project VO-Miner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Static.java//from   w  w  w  .  j  a  v a  2s. c  o m
 * Copyright (C) 2011 Steve "Uru" West <uruwolf@gmail.com>
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This program 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 */
package com.uruwolf.vominer.data;

import java.util.ArrayList;
import java.util.Arrays;

public class Static {
  
  public static final ArrayList<String> mineralList = new ArrayList<String>(Arrays.asList(
    "Apicene",
      "Aquean",
      "Carbonic",
      "Denic",
      "Ferric",
      "Heliocene",
      "Ishik",
      "Lanthanic",
      "Pentric",
      "Pyronic",
      "Silicate",
      "VanAzek",
      "Xithricite"
    ));
  
  public static final ArrayList<String> systemList = new ArrayList<String>(Arrays.asList(
    "Arta Caelestis",
      "Artana Aquilus",
      "Azek",
      "Betheshee",
      "Bractus",
      "Cantus",
      "Dantia",
      "Dau",
      "Deneb",
      "Divinia",
      "Edras",
      "Eo",
      "Geira Rutilus",
      "Helios",
      "Initros",
      "Itan",
      "Jallik",
      "Latos",
      "Metana",
      "Nyrius",
      "Odia",
      "Pelatus",
      "Pherona",
      "Pyronis",
      "Rhamus",
      "Sedina",
      "Setalli Shinas",
      "Sol II",
      "Ukari",
      "Verasi"
  ));
  
  public static final ArrayList<String> alphaCoordList = new ArrayList<String>(Arrays.asList(
    "A",
      "B",
      "C",
      "D",
      "E",
      "F",
      "G",
      "H",
      "I",
      "J",
      "K",
      "L",
      "M",
      "N",
      "O",
      "P"
  ));
  
  public static final ArrayList<String> numCoordList = new ArrayList<String>(Arrays.asList(
    "1",
      "2",
      "3",
      "4",
      "5",
      "6",
      "7",
      "8",
      "9",
      "10",
      "11",
      "12",
      "13",
      "14",
      "15",
      "16"
  ));
}




Java Source Code List

com.uruwolf.vominer.MineralSearchActivity.java
com.uruwolf.vominer.SectorListActivity.java
com.uruwolf.vominer.SectorNotesActivity.java
com.uruwolf.vominer.VoMinerActivity.java
com.uruwolf.vominer.data.Mineral.java
com.uruwolf.vominer.data.SQLiteHelper.java
com.uruwolf.vominer.data.SectorDataSource.java
com.uruwolf.vominer.data.Sector.java
com.uruwolf.vominer.data.Static.java