|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--FSC.FilmStock
FilmStock is the class that defines one type of film stock. It includes the name, the frame size, and the frame speed.
Constructor Summary | |
FilmStock()
This is the default constructor. |
|
FilmStock(java.lang.String name,
int frameSize,
int frameSpeed)
This constructor allows a FilmStock object to be created with all properties defined in one method call. |
Method Summary | |
int |
getFrameSize()
This method will return the size of the frame in millimeters (mm). |
int |
getFrameSpeed()
This method will return the speed of the frames traveling through the camera in feet per minute. |
java.lang.String |
getName()
This method will return the name of the film stock. |
void |
setFrameSize(int value)
This method will set the frame size in millimeters (mm). |
void |
setFrameSpeed(int value)
This method will set the frame speed in feet per minute. |
void |
setName(java.lang.String value)
This method will set the name of the film stock. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public FilmStock()
public FilmStock(java.lang.String name, int frameSize, int frameSpeed)
name
- the display name of the film stock.frameSize
- the size of the frame in millimeters (mm).frameSpeed
- the speed of the frames traveling through the
camera in feet per minute.Method Detail |
public java.lang.String getName()
public void setName(java.lang.String value)
public int getFrameSize()
public void setFrameSize(int value)
public int getFrameSpeed()
public void setFrameSpeed(int value)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |