Readme aktualisiert, Hinweis für Heapspace (OpenCCM Ticket 12)
git-svn-id: https://svn.libreccm.org/ccm/trunk@670 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
715e500fe8
commit
9a4a3caef0
|
|
@ -99,6 +99,7 @@ public class ArticleInCollectedVolume extends Publication {
|
|||
|
||||
collection.next();
|
||||
dobj = collection.getDataObject();
|
||||
collection.close();
|
||||
|
||||
return (CollectedVolume)DomainObjectFactory.newInstance(dobj);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -96,6 +96,7 @@ public class ArticleInJournal extends Publication {
|
|||
|
||||
collection.next();
|
||||
dobj = collection.getDataObject();
|
||||
collection.close();
|
||||
|
||||
return (Journal) DomainObjectFactory.newInstance(dobj);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -144,6 +144,7 @@ public class SciDepartment extends GenericOrganizationalUnit {
|
|||
|
||||
collection.next();
|
||||
dobj = collection.getDataObject();
|
||||
collection.close();
|
||||
|
||||
return new SciDepartment(dobj);
|
||||
}
|
||||
|
|
@ -183,6 +184,7 @@ public class SciDepartment extends GenericOrganizationalUnit {
|
|||
|
||||
collection.next();
|
||||
dobj = collection.getDataObject();
|
||||
collection.close();
|
||||
|
||||
return new SciOrganization(dobj);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -246,6 +246,7 @@ public class SciProject extends GenericOrganizationalUnit {
|
|||
getTitle()));
|
||||
collection.next();
|
||||
dobj = collection.getDataObject();
|
||||
collection.close();
|
||||
|
||||
return new SciProject(dobj);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -128,7 +128,15 @@ Eclipse:
|
|||
(if aplaws doesn't appear in Debug configurations)
|
||||
Debug > Debug configurations > aplaws > Debug
|
||||
|
||||
Heap space:
|
||||
If you have problems with the heap space, you can enlarge you
|
||||
heap space using these command line on Unix system with Bash:
|
||||
|
||||
ANT_OPTS="-Xms256M -Xmx256M" ant <target>
|
||||
|
||||
|
||||
5. CONTACTS
|
||||
|
||||
Send any queries to the "Developing on APLAWS+" forum at
|
||||
http://sourceforge.net/forum/forum.php?forum_id=368401
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue