a few small improvements to the javadoc source code documentation #138

Merged
Starfish merged 2 commits from eUgEntOptIc44/TinyWeatherForecastGermany:javadoc-package-info into master 2022-10-03 10:09:26 +00:00
5 changed files with 17 additions and 6 deletions

View File

@ -281,7 +281,7 @@ public class ZoomableImageView {
*
* The focus is the visible center coordinate.<br>
*
* * @return absolute x coordinate
* @return absolute x coordinate
*/
public float getXFocus(){
@ -293,7 +293,7 @@ public class ZoomableImageView {
*
* The focus is the visible center coordinate.
*
* * @return absolute y coordinate
* @return absolute y coordinate
*/
public float getYFocus(){

View File

@ -0,0 +1,4 @@
/**
* main component of TinyWeatherForecastGermany
*/
package de.kaffeemitkoffein.tinyweatherforecastgermany;

View File

@ -0,0 +1,4 @@
/**
* contains the WeatherSpec class retrieved from Gadgetbridge
*/
package nodomain.freeyourgadget.gadgetbridge.model;

View File

@ -1,4 +1,3 @@
/**
*
* Copyright (C) 2010-2012, Helmut Lehmeyer <helmut.lehmeyer@gmail.com>
@ -23,7 +22,7 @@
*
* Astronomical Calculations and and helper Classes
*
* java Source code based on the javascript by Arnold Barmettler, www.astronomie.info / www.CalSky.com
* java source code based on the javascript by Arnold Barmettler, www.astronomie.info / www.CalSky.com
* based on algorithms by Peter Duffett-Smith's great and easy book 'Practical Astronomy with your Calculator'.
*
* @author Helmut Lehmeyer
@ -120,8 +119,8 @@ public class Astronomy
* @return the name <code>String</code> of a sign
*/
public static String sign(double lon) {
String[] signs = {"Widder", "Stier", "Zwillinge", "Krebs", "Löwe", "Jungfrau",
"Waage", "Skorpion", "Schütze", "Steinbock", "Wassermann", "Fische"};
String[] signs = {"Widder", "Stier", "Zwillinge", "Krebs", "Loewe", "Jungfrau",
"Waage", "Skorpion", "Schuetze", "Steinbock", "Wassermann", "Fische"};
return( signs[Int(Math.floor(lon*RAD/30))] );
}

View File

@ -0,0 +1,4 @@
/**
* contains a class for astronomical calculations
*/
package org.astronomie.info;