Class TImage

java.lang.Object
  |
  +--TObject
        |
        +--TVCpn
              |
              +--TImage

public class TImage
extends TVCpn

Type Image: Class TImage is a visual component that displays an image.

Since:
First release

Field Summary
 java.lang.String imageFile
          The file used as image.
 
Fields inherited from class TVCpn
height, visible, width, x, y
 
Constructor Summary
TImage()
          Instanciates a new Type Image.
TImage(java.lang.String imageFile)
          Instanciates a new Type Image.
 
Method Summary
 java.lang.String getImageFile()
          Returns the file used as image.
 void setImageFile(java.lang.String imageFile)
          Sets the file used as image.
 
Methods inherited from class TVCpn
getHeight, getVisible, getWidth, getX, getY, move, setDim, setHeight, setVisible, setWidth, setX, setY
 
Methods inherited from class TObject
clone, Destroy, equals, toString
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

imageFile

public java.lang.String imageFile
The file used as image.

Constructor Detail

TImage

public TImage()
Instanciates a new Type Image.

Since:
First release

TImage

public TImage(java.lang.String imageFile)
Instanciates a new Type Image.

Parameters:
imageFile - The file used as image.
Since:
First release
Method Detail

setImageFile

public void setImageFile(java.lang.String imageFile)
Sets the file used as image.

Parameters:
imageFile - The file used as image.
Since:
First release

getImageFile

public java.lang.String getImageFile()
Returns the file used as image.

Returns:
imageFile: The file used as image.
Since:
First release