Readme aktualisiert, Hinweis für Heapspace (OpenCCM Ticket 12)

git-svn-id: https://svn.libreccm.org/ccm/trunk@670 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2011-01-06 12:05:50 +00:00
parent 715e500fe8
commit 9a4a3caef0
5 changed files with 13 additions and 0 deletions

View File

@ -99,6 +99,7 @@ public class ArticleInCollectedVolume extends Publication {
collection.next();
dobj = collection.getDataObject();
collection.close();
return (CollectedVolume)DomainObjectFactory.newInstance(dobj);
}

View File

@ -96,6 +96,7 @@ public class ArticleInJournal extends Publication {
collection.next();
dobj = collection.getDataObject();
collection.close();
return (Journal) DomainObjectFactory.newInstance(dobj);
}

View File

@ -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);
}

View File

@ -246,6 +246,7 @@ public class SciProject extends GenericOrganizationalUnit {
getTitle()));
collection.next();
dobj = collection.getDataObject();
collection.close();
return new SciProject(dobj);
}

View File

@ -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