|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjadex.micro.examples.mandelbrot.AreaData
public class AreaData
Struct for calculation of a specific mandelbrot cutout.
| Field Summary | |
|---|---|
protected int[][] |
data
The result data. |
protected Object |
id
The id. |
protected int |
max
The max value where iteration is stopped. |
protected int |
par
The number of parallel workers. |
protected int |
sizex
The x size. |
protected int |
sizey
The y size. |
protected int |
tasksize
The tasksize of a task (in pixel/points). |
protected double |
xend
The x end. |
protected double |
xstart
The x start. |
protected double |
yend
The y end. |
protected double |
ystart
The y start. |
| Constructor Summary | |
|---|---|
AreaData(double xstart,
double xend,
double ystart,
double yend,
int sizex,
int sizey,
int max)
Create a new area data. |
|
AreaData(double xstart,
double xend,
double ystart,
double yend,
int sizex,
int sizey,
int max,
int par,
int tasksize)
Create a new area data. |
|
AreaData(double xstart,
double xend,
double ystart,
double yend,
int sizex,
int sizey,
int max,
int par,
int tasksize,
Object id,
int[][] data)
Create a new area data. |
|
| Method Summary | |
|---|---|
int[][] |
getData()
Get the data. |
Object |
getId()
Get the id. |
int |
getMax()
Get the max value. |
int |
getParallel()
Get the par. |
int |
getSizeX()
Get the sizex. |
int |
getSizeY()
Get the sizey. |
int |
getTaskSize()
Get the tasksize. |
double |
getXEnd()
Get the xend. |
double |
getXStart()
Get the xstart. |
double |
getYEnd()
Get the yend. |
double |
getYStart()
Get the ystart. |
void |
setData(int[][] data)
Set the data. |
void |
setId(Object id)
Set the id. |
void |
setMax(int max)
Set the max value. |
void |
setParallel(int par)
Set the par. |
void |
setSizeX(int sizex)
Set the sizex. |
void |
setSizeY(int sizey)
Set the sizey. |
void |
setTaskSize(int tasksize)
Set the tasksize. |
void |
setXEnd(double xend)
Set the xend. |
void |
setXStart(double xstart)
Set the xstart. |
void |
setYEnd(double yend)
Set the yend. |
void |
setYStart(double ystart)
Set the ystart. |
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected double xstart
protected double xend
protected double ystart
protected double yend
protected int sizex
protected int sizey
protected int max
protected int par
protected Object id
protected int tasksize
protected int[][] data
| Constructor Detail |
|---|
public AreaData(double xstart,
double xend,
double ystart,
double yend,
int sizex,
int sizey,
int max)
public AreaData(double xstart,
double xend,
double ystart,
double yend,
int sizex,
int sizey,
int max,
int par,
int tasksize)
public AreaData(double xstart,
double xend,
double ystart,
double yend,
int sizex,
int sizey,
int max,
int par,
int tasksize,
Object id,
int[][] data)
| Method Detail |
|---|
public double getXStart()
public void setXStart(double xstart)
xstart - The xstart to set.public double getXEnd()
public void setXEnd(double xend)
xend - The xend to set.public double getYStart()
public void setYStart(double ystart)
ystart - The ystart to set.public double getYEnd()
public void setYEnd(double yend)
yend - The yend to set.public int getSizeX()
public void setSizeX(int sizex)
sizex - The sizex to set.public int getSizeY()
public void setSizeY(int sizey)
sizey - The sizey to set.public int getMax()
public void setMax(int max)
max - The max value to set.public int[][] getData()
public void setData(int[][] data)
data - The data to set.public int getParallel()
public void setParallel(int par)
par - The par to set.public Object getId()
public void setId(Object id)
id - The id to set.public int getTaskSize()
public void setTaskSize(int tasksize)
tasksize - The tasksize to set.public String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||