a few small improvements to the javadoc source code documentation #138
|
@ -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(){
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* main component of TinyWeatherForecastGermany
|
||||
*/
|
||||
package de.kaffeemitkoffein.tinyweatherforecastgermany;
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* contains the WeatherSpec class retrieved from Gadgetbridge
|
||||
*/
|
||||
package nodomain.freeyourgadget.gadgetbridge.model;
|
|
@ -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))] );
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* contains a class for astronomical calculations
|
||||
*/
|
||||
package org.astronomie.info;
|
Loading…
Reference in New Issue