Back to project page SSPIA.
The source code is released under:
MIT License
If you think the Android project SSPIA listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fiec.sspia.db; // w w w.j av a 2 s . co m public class Satellites extends Celestial{ public Satellites(String n, String[] inf, int pid, int imgres, String extra) { super(n, inf, pid, imgres, extra); } @Override public String getName() { return NAME; } @Override public String[] getinf() { return INFO; } @Override public int getPid() { return PID; } @Override public int getImgres() { return IMGREG; } @Override public SolarDb getDb() { return DB; } }