| Constructor: |
public DateTime(DateCell dc) {
super(dc);
}
A constructor called by the worksheet when creating a writable version
of a spreadsheet that has been read in Parameters:
dc - the date to copy
|
public DateTime(int c,
int r,
Date d) {
super(c, r, d);
}
Parameters:
c - the column
r - the row
d - the date
|
protected DateTime(int col,
int row,
DateTime dt) {
super(col, row, dt);
}
Copy constructor used for deep copying Parameters:
col - the column
row - the row
dt - the date to copy
|
public DateTime(int c,
int r,
Date d,
GMTDate a) {
super(c, r, d, a);
}
Constructor, which adjusts the specified date to take timezone
considerations into account Parameters:
c - the column
r - the row
d - the date
a - dummy overload
|
public DateTime(int c,
int r,
Date d,
CellFormat st) {
super(c, r, d, st);
}
Constructor which takes the format for this cell Parameters:
c - the column
r - the row
st - the format
d - the date
|
public DateTime(int c,
int r,
Date d,
CellFormat st,
GMTDate a) {
super(c, r, d, st, a);
}
Constructor, which adjusts the specified date to take timezone
considerations into account Parameters:
c - the column
r - the row
d - the date
st - the cell format
a - the cummy overload
|
public DateTime(int c,
int r,
Date d,
CellFormat st,
boolean tim) {
super(c, r, d, st, tim);
}
Constructor which takes the format for the cell and an indicator
as to whether this cell is a full date time or purely just a time
eg. if the spreadsheet is to contain the world record for 100m, then the
value would be 9.83s, which would be indicated as just a time Parameters:
c - the column
r - the row
st - the style
tim - flag indicating that this represents a time
d - the date
|