Changeset 61
- Timestamp:
- 08/08/07 03:02:07 (6 years ago)
- Files:
-
- 4 added
- 33 edited
-
bbtracker/trunk/.settings/org.eclipse.jdt.ui.prefs (added)
-
bbtracker/trunk/COPYING (added)
-
bbtracker/trunk/src/org/bbtracker/mobile/BBTracker.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/IconManager.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/Preferences.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/TrackListener.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/TrackManager.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/TrackStore.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/exporter/GpxTrackExporter.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/exporter/KmlTrackExporter.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/exporter/TrackExporter.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/AboutForm.java (modified) (2 diffs)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/AxisPlotterTile.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/BrowseForm.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/DataProvider.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/ElevationPlotterTile.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/MainCanvas.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/NewTrackForm.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/OptionsForm.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/PlotterTile.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/SpeedPlotterTile.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/StatusTile.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/Tile.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/TrackTile.java (modified) (1 diff)
-
bbtracker/trunk/src/org/bbtracker/mobile/gui/TracksForm.java (modified) (1 diff)
-
bbtracker_common/trunk/.settings/org.eclipse.jdt.ui.prefs (added)
-
bbtracker_common/trunk/COPYING (added)
-
bbtracker_common/trunk/src/org/bbtracker/ImperialUnitConverter.java (modified) (1 diff)
-
bbtracker_common/trunk/src/org/bbtracker/MMath.java (modified) (1 diff)
-
bbtracker_common/trunk/src/org/bbtracker/MetricUnitConverter.java (modified) (1 diff)
-
bbtracker_common/trunk/src/org/bbtracker/Track.java (modified) (1 diff)
-
bbtracker_common/trunk/src/org/bbtracker/TrackPoint.java (modified) (1 diff)
-
bbtracker_common/trunk/src/org/bbtracker/TrackSegment.java (modified) (1 diff)
-
bbtracker_common/trunk/src/org/bbtracker/UnitConverter.java (modified) (1 diff)
-
bbtracker_common/trunk/src/org/bbtracker/Utils.java (modified) (1 diff)
-
bbtracker_common/trunk/tests/org/bbtracker/MMathTest.java (modified) (1 diff)
-
bbtracker_common/trunk/tests/org/bbtracker/UtilsTest.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bbtracker/trunk/src/org/bbtracker/mobile/BBTracker.java
r56 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/IconManager.java
r21 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/Preferences.java
r56 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/TrackListener.java
r14 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/TrackManager.java
r55 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/TrackStore.java
r54 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/exporter/GpxTrackExporter.java
r17 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.exporter; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/exporter/KmlTrackExporter.java
r15 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.exporter; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/exporter/TrackExporter.java
r7 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.exporter; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/AboutForm.java
r23 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 … … 13 30 super("About " + BBTracker.getName()); 14 31 append(new StringItem("Version: ", BBTracker.getVersion())); 32 append(new StringItem("License: ", 33 "bbTracker is released under the GNU General Public License v2. See http://www.gnu.org/licenses/.")); 15 34 append("Icons have been taken (and sometimes modified) from the Tango Project (http://tango-project.org/) and the Human Icon Theme (Copyright 2004-2006 Canonical Ltd.). Both projects release their icons under the Creative Commons Attribution-ShareAlike 2.5 license. Any modifications I did on those icons are released under the same license."); 16 35 addCommand(new Command("Back", Command.BACK, 0)); -
bbtracker/trunk/src/org/bbtracker/mobile/gui/AxisPlotterTile.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/BrowseForm.java
r49 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/DataProvider.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/ElevationPlotterTile.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/MainCanvas.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/NewTrackForm.java
r7 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/OptionsForm.java
r47 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/PlotterTile.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/SpeedPlotterTile.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/StatusTile.java
r59 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/Tile.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/TrackTile.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker/trunk/src/org/bbtracker/mobile/gui/TracksForm.java
r58 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker.mobile.gui; 2 19 -
bbtracker_common/trunk/src/org/bbtracker/ImperialUnitConverter.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19 -
bbtracker_common/trunk/src/org/bbtracker/MMath.java
r46 r61 1 /* 2 * Copyright 2006 Richard Carless 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19 3 20 /* 4 21 * mMath.java 5 * 22 * 23 * Originally found at http://discussion.forum.nokia.com/forum/showthread.php?t=72840 24 * 6 25 * Created on 14 January 2006, 20:00 7 * 26 * 8 27 * (c) 2006 Richard Carless 9 * 28 * 10 29 * Fills holes in the java maths library 11 30 */ -
bbtracker_common/trunk/src/org/bbtracker/MetricUnitConverter.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19 -
bbtracker_common/trunk/src/org/bbtracker/Track.java
r53 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19 -
bbtracker_common/trunk/src/org/bbtracker/TrackPoint.java
r48 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19 -
bbtracker_common/trunk/src/org/bbtracker/TrackSegment.java
r40 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19 -
bbtracker_common/trunk/src/org/bbtracker/UnitConverter.java
r60 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19 -
bbtracker_common/trunk/src/org/bbtracker/Utils.java
r57 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * Copyright 2002-2006 Chriss Veness (vincenty formula in distance()) 4 * 5 * This file is part of bbTracker. 6 * 7 * bbTracker is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as 9 * published by the Free Software Foundation. 10 * 11 * bbTracker is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 */ 1 19 package org.bbtracker; 2 20 -
bbtracker_common/trunk/tests/org/bbtracker/MMathTest.java
r4 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19 -
bbtracker_common/trunk/tests/org/bbtracker/UtilsTest.java
r4 r61 1 /* 2 * Copyright 2007 Joachim Sauer 3 * 4 * This file is part of bbTracker. 5 * 6 * bbTracker is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * bbTracker is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 1 18 package org.bbtracker; 2 19
Note: See TracChangeset
for help on using the changeset viewer.