net.anidb
Class Creator

java.lang.Object
  extended by net.anidb.Creator

public class Creator
extends java.lang.Object

The creator of an anime.

Version:
1.0, 19.12.2009
Author:
grizzlyxp (http://anidb.net/perl-bin/animedb.pl?show=userpage&uid=63935)

Constructor Summary
Creator()
          Creates a creator.
Creator(java.lang.Long creatorId, java.lang.String kanjiName, java.lang.String nameTranscription, java.lang.Integer type, java.lang.String picname, java.lang.String urlEnglish, java.lang.String urlJapanese, java.lang.String wikiUrlEnglish, java.lang.String wikiUrlJapanese, java.lang.Long lastUpdateDate)
          Creates a creator.
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 java.lang.Long getCreatorId()
          Returns the creator Id.
 java.lang.String getKanjiName()
          Returns the kanji name.
 java.lang.Long getLastUpdateDate()
          Returns the date of the last update.
 java.lang.String getNameTranscription()
          Returns the name transcription.
 java.lang.String getPicname()
          Returns the picname.
 java.lang.Integer getType()
          Returns the type.
 java.lang.String getUrlEnglish()
          Returns the english URL.
 java.lang.String getUrlJapanese()
          Returns the japanese URL.
 java.lang.String getWikiUrlEnglish()
          Returns the english Wiki URL.
 java.lang.String getWikiUrlJapanese()
          Returns the japanese Wiki URL.
 int hashCode()
           
 void setCreatorId(java.lang.Long creatorId)
          Sets the creator Id.
 void setKanjiName(java.lang.String kanjiName)
          Sets the kanji name.
 void setLastUpdateDate(java.lang.Long lastUpdateDate)
          Sets the date of the last update.
 void setNameTranscription(java.lang.String nameTranscription)
          Sets the name transcription.
 void setPicname(java.lang.String picname)
          Sets the picname.
 void setType(java.lang.Integer type)
          Sets the type.
 void setUrlEnglish(java.lang.String urlEnglish)
          Sets the english URL.
 void setUrlJapanese(java.lang.String urlJapanese)
          Sets the japanese URL.
 void setWikiUrlEnglish(java.lang.String wikiUrlEnglish)
          Sets the english Wiki URL.
 void setWikiUrlJapanese(java.lang.String wikiUrlJapanese)
          Sets the japanese Wiki URL.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Creator

public Creator()
Creates a creator.


Creator

public Creator(java.lang.Long creatorId,
               java.lang.String kanjiName,
               java.lang.String nameTranscription,
               java.lang.Integer type,
               java.lang.String picname,
               java.lang.String urlEnglish,
               java.lang.String urlJapanese,
               java.lang.String wikiUrlEnglish,
               java.lang.String wikiUrlJapanese,
               java.lang.Long lastUpdateDate)
Creates a creator.

Parameters:
creatorId - The creator Id.
kanjiName - The kanji name.
nameTranscription - The name transcription.
type - The type.
picname - The picname.
urlEnglish - The english URL.
urlJapanese - The japanese URL.
wikiUrlEnglish - The english Wiki URL.
wikiUrlJapanese - The japanese Wiki URL.
lastUpdateDate - The date of the last update.
Method Detail

getCreatorId

public java.lang.Long getCreatorId()
Returns the creator Id.

Returns:
The creator Id or null, if the creator Id isn't set.

setCreatorId

public void setCreatorId(java.lang.Long creatorId)
Sets the creator Id.

Parameters:
creatorId - The creator Id.

getKanjiName

public java.lang.String getKanjiName()
Returns the kanji name.

Returns:
The kanji name or null, if the kanji name isn't set.

setKanjiName

public void setKanjiName(java.lang.String kanjiName)
Sets the kanji name.

Parameters:
kanjiName - The kanji name.

getNameTranscription

public java.lang.String getNameTranscription()
Returns the name transcription.

Returns:
The name transcription or null, if the name transcription isn't set.

setNameTranscription

public void setNameTranscription(java.lang.String nameTranscription)
Sets the name transcription.

Parameters:
nameTranscription - The name transcription.

getType

public java.lang.Integer getType()
Returns the type.

Returns:
The type or null, if the type isn't set.
See Also:
CreatorType

setType

public void setType(java.lang.Integer type)
Sets the type.

Parameters:
type - The type.
See Also:
CreatorType

getPicname

public java.lang.String getPicname()
Returns the picname.

Returns:
The picname or null, if the picname isn't set.

setPicname

public void setPicname(java.lang.String picname)
Sets the picname.

Parameters:
picname - The picname.

getUrlEnglish

public java.lang.String getUrlEnglish()
Returns the english URL.

Returns:
The english URL or null, if the english URL isn't set.

setUrlEnglish

public void setUrlEnglish(java.lang.String urlEnglish)
Sets the english URL.

Parameters:
urlEnglish - The english URL.

getUrlJapanese

public java.lang.String getUrlJapanese()
Returns the japanese URL.

Returns:
The japanese URL or null, if the japanese URL isn't set.

setUrlJapanese

public void setUrlJapanese(java.lang.String urlJapanese)
Sets the japanese URL.

Parameters:
urlJapanese - The japanese URL.

getWikiUrlEnglish

public java.lang.String getWikiUrlEnglish()
Returns the english Wiki URL.

Returns:
The english Wiki URL or null, if the english Wiki URL isn't set.

setWikiUrlEnglish

public void setWikiUrlEnglish(java.lang.String wikiUrlEnglish)
Sets the english Wiki URL.

Parameters:
wikiUrlEnglish - The english Wiki URL.

getWikiUrlJapanese

public java.lang.String getWikiUrlJapanese()
Returns the japanese Wiki URL.

Returns:
The japanese Wiki URL or null, if the japanese Wiki URL isn't set.

setWikiUrlJapanese

public void setWikiUrlJapanese(java.lang.String wikiUrlJapanese)
Sets the japanese Wiki URL.

Parameters:
wikiUrlJapanese - The japanese Wiki URL.

getLastUpdateDate

public java.lang.Long getLastUpdateDate()
Returns the date of the last update.

Returns:
The date or null, if the date isn't set.

setLastUpdateDate

public void setLastUpdateDate(java.lang.Long lastUpdateDate)
Sets the date of the last update.

Parameters:
lastUpdateDate - The date.

hashCode

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

equals

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