Subversion Repositories bacoAlunos

Rev

Rev 1306 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 fvelez 1
package pt.estgp.estgweb.domain;
2
 
3
import java.io.Serializable;
4
 
5
/**
6
 * @author Jorge Machado
7
 * @date 2/Mar/2008
8
 * @time 10:27:25
9
 * @see pt.estgp.estgweb.domain
10
 */
11
public class ImageImpl extends 1.5.0/docs/api/java/awt/Image.html">Image
12
{
297 jmachado 13
 
14
    private byte[] image;
15
 
16
    public 1.5.0/docs/api/java/io/Serializable.html">Serializable getSerializable()
1 fvelez 17
    {
18
        return getId();
19
    }
20
 
297 jmachado 21
 
22
    public byte[] getImage()
23
    {
24
        return image;
25
    }
26
 
27
    public void setImage(byte[] image)
28
    {
29
        this.image = image;
30
    }
1 fvelez 31
}