dk.vajhoej.model.core
Class Picture

java.lang.Object
  extended by dk.vajhoej.model.core.Picture
All Implemented Interfaces:
Duplicatable, Persistable, java.io.Serializable

public class Picture
extends java.lang.Object
implements Persistable, Duplicatable, java.io.Serializable

Class Picture represents a picture with no functionality.

See Also:
Serialized Form

Constructor Summary
Picture()
          Create instance of Picture.
Picture(java.lang.String picfnm)
          Create instance of Picture.
 
Method Summary
 Picture duplicate()
          Duplicate object.
 boolean equals(java.lang.Object o)
           
 NameValuePairList getAttributes()
          Get all single value fields.
 java.util.List<java.util.List<Persistable>> getChildren()
          Get all multi value fields.
 java.lang.String getFilename()
          Get picture filename.
 java.lang.String getId()
          Get id identifying object.
 java.lang.String getType()
          Get type (XML element name / database table name not Java class name).
 int hashCode()
           
 void setAttributes(NameValuePairList attr)
          Set all single value fields.
 void setChildren(java.util.List<java.util.List<Persistable>> childs)
          Set all multi value fields.
 void setFilename(java.lang.String filename)
          Set picture filename.
 void setId(int id)
          Set ID.
 void setId(java.lang.String id)
          Set ID.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Picture

public Picture()
Create instance of Picture.


Picture

public Picture(java.lang.String picfnm)
Create instance of Picture.

Parameters:
picfnm - picture filename
Method Detail

getFilename

public java.lang.String getFilename()
Get picture filename.

Returns:
picture filename.

setFilename

public void setFilename(java.lang.String filename)
Set picture filename.

Parameters:
filename - picture filename

setId

public void setId(java.lang.String id)
Set ID.

Parameters:
id - id

setId

public void setId(int id)
Set ID.

Parameters:
id - id

duplicate

public Picture duplicate()
Description copied from interface: Duplicatable
Duplicate object. The result will have the same characteristics as the original but may not be equal to it.

Specified by:
duplicate in interface Duplicatable
Returns:
duplicate

getId

public java.lang.String getId()
Description copied from interface: Persistable
Get id identifying object.

Specified by:
getId in interface Persistable
Returns:
id

getType

public java.lang.String getType()
Description copied from interface: Persistable
Get type (XML element name / database table name not Java class name).

Specified by:
getType in interface Persistable
Returns:
type

getAttributes

public NameValuePairList getAttributes()
Description copied from interface: Persistable
Get all single value fields.

Specified by:
getAttributes in interface Persistable
Returns:
name value pair list

getChildren

public java.util.List<java.util.List<Persistable>> getChildren()
Description copied from interface: Persistable
Get all multi value fields.

Specified by:
getChildren in interface Persistable
Returns:
list of list of persistable objects

setAttributes

public void setAttributes(NameValuePairList attr)
                   throws ModelException
Description copied from interface: Persistable
Set all single value fields.

Specified by:
setAttributes in interface Persistable
Parameters:
attr - value pair list
Throws:
ModelException - if problems

setChildren

public void setChildren(java.util.List<java.util.List<Persistable>> childs)
Description copied from interface: Persistable
Set all multi value fields.

Specified by:
setChildren in interface Persistable
Parameters:
childs - list of list of persistable objects

equals

public boolean equals(java.lang.Object o)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object