◆ OldRelatedEntry()
org.turro.related.OldRelatedEntry.OldRelatedEntry |
( |
String |
origin, |
|
|
String |
destination, |
|
|
String |
description, |
|
|
boolean |
unbreakable, |
|
|
Date |
creation |
|
) |
| |
Definition at line 35 of file OldRelatedEntry.java.
37 this.destination = destination;
38 this.description = description;
39 this.unbreakable = unbreakable;
40 this.creation = creation;
◆ getCreation()
Date org.turro.related.OldRelatedEntry.getCreation |
( |
| ) |
|
◆ getDescription()
String org.turro.related.OldRelatedEntry.getDescription |
( |
| ) |
|
◆ getDestination()
String org.turro.related.OldRelatedEntry.getDestination |
( |
| ) |
|
◆ getOrigin()
String org.turro.related.OldRelatedEntry.getOrigin |
( |
| ) |
|
◆ isUnbreakable()
boolean org.turro.related.OldRelatedEntry.isUnbreakable |
( |
| ) |
|
◆ migrate()
void org.turro.related.OldRelatedEntry.migrate |
( |
Dao |
dao | ) |
|
Definition at line 63 of file OldRelatedEntry.java.
64 Related related =
new Related();
65 related.setCreation(creation);
66 related.setDescription(description);
67 related.setDestination(destination);
68 related.setOrigin(origin);
69 related.setUnbreakable(unbreakable);
70 dao.saveObject(related);
The documentation for this class was generated from the following file: