javadocs: document the ZoneStatus class

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@564 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-02-20 01:36:50 +00:00
parent d21f73e186
commit 4b145e0682

View file

@ -8,12 +8,23 @@
package micropolisj.engine;
/**
* Contains the information generated by the query tool.
* The numbers have very limited use, they are interpreted directly
* by the showZoneStatus() method of NotificationPane.
*/
public class ZoneStatus
{
/** Number from 0 to 27, identifying the type of building. */
public int building;
/** Number from 1 to 4, 1=Low, 2=Medium, 3=High, 4=Very High. */
public int popDensity;
/** Number from 5 to 8, 5=Slum, 6=Lower Class, etc. */
public int landValue;
/** Number from 9 to 12, 9=Safe, 10=Light, 11=Moderate, etc. */
public int crimeLevel;
/** Number from 13 to 16, 13=None, 14=Moderate, 15=Heavy, etc. */
public int pollution;
/** Number from 17 to 20, 17=Declining, 18=Stable, etc. */
public int growthRate;
}