Advertisement
Guest User

Untitled

a guest
Jun 1st, 2017
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 89.36 KB | None | 0 0
  1. INFO 245 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#init - Initialise GroupDAO
  2. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO$Query_GetGroup#compile - RdbmsOperation with SQL [
  3. SELECT mailinglist, name
  4. FROM groups WHERE mailinglist=?
  5. ] compiled
  6. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO$Query_GetGroupByName#compile - RdbmsOperation with SQL [
  7. SELECT mailinglist, name
  8. FROM groups WHERE name=?
  9. ] compiled
  10. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO$Query_GetAllGroups#compile - RdbmsOperation with SQL [
  11. SELECT name, mailinglist FROM groups
  12. ] compiled
  13. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO$Query_SaveGroup#compile - RdbmsOperation with SQL [
  14. INSERT INTO groups (mailinglist, name)
  15. VALUES (?, ?)
  16. ] compiled
  17. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO$Query_UpdateGroup#compile - RdbmsOperation with SQL [
  18. UPDATE groups SET name=?
  19. WHERE mailinglist=?
  20. ] compiled
  21. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO$Query_DeleteGroup#compile - RdbmsOperation with SQL [DELETE FROM groups WHERE mailinglist=?] compiled
  22. INFO 241 :org.bitbucket.openminds.dao.JdbcObjectGroupCreatorDAO#init - Initialise GroupCreatorDAO
  23. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectGroupCreatorDAO$Query_GetGroupsByCreator#compile - RdbmsOperation with SQL [
  24. SELECT mailinglist
  25. FROM groupcreator WHERE email=?
  26. ] compiled
  27. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectGroupCreatorDAO$Query_GetCreatorsByGroup#compile - RdbmsOperation with SQL [
  28. SELECT email
  29. FROM groupcreator WHERE mailinglist=?
  30. ] compiled
  31. INFO 219 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#init - Initialise CreatorDAO
  32. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO$Query_GetCreator#compile - RdbmsOperation with SQL [
  33. SELECT email, name
  34. FROM creator WHERE email=?
  35. ] compiled
  36. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO$Query_GetCreatorByName#compile - RdbmsOperation with SQL [
  37. SELECT email, name
  38. FROM creator WHERE name=?
  39. ] compiled
  40. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO$Query_UpdateCreator#compile - RdbmsOperation with SQL [
  41. UPDATE creator SET name=?
  42. WHERE email=?
  43. ] compiled
  44. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO$Query_DeleteCreator#compile - RdbmsOperation with SQL [DELETE FROM creator WHERE email=?] compiled
  45. INFO 274 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#init - Initialise CategoryDAO
  46. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO$Query_GetCategory#compile - RdbmsOperation with SQL [
  47. SELECT id, name, icon, color
  48. FROM Category
  49. WHERE id=?
  50. ] compiled
  51. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO$Query_GetCategoryByName#compile - RdbmsOperation with SQL [
  52. SELECT id, name, icon, color
  53. FROM Category
  54. WHERE name=?
  55. ] compiled
  56. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO$Query_GetAllCategories#compile - RdbmsOperation with SQL [
  57. SELECT id, name, icon, color
  58. FROM Category
  59. ] compiled
  60. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO$Query_GetCategoryID#compile - RdbmsOperation with SQL [CALL IDENTITY()] compiled
  61. INFO 255 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#init - Initialise CreatorDAO
  62. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectTagDAO$Query_GetTagsByItem#compile - RdbmsOperation with SQL [
  63. select text, item from
  64. tag where item=?
  65. ] compiled
  66. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectTagDAO$Query_GetItemsByTag#compile - RdbmsOperation with SQL [
  67. select text, item from
  68. tag where text=?
  69. ] compiled
  70. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectTagDAO$Query_SaveTag#compile - RdbmsOperation with SQL [
  71. INSERT INTO tag (text, item)
  72. values (?, ?)
  73. ] compiled
  74. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectTagDAO$Query_DeleteTag#compile - RdbmsOperation with SQL [DELETE FROM tag WHERE text=?] compiled
  75. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectTagDAO$Query_DeleteTagsByItem#compile - RdbmsOperation with SQL [DELETE FROM tag WHERE item=?] compiled
  76. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectTagDAO$Query_GetAllTags#compile - RdbmsOperation with SQL [
  77. select text, item from tag
  78. ] compiled
  79. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectTagDAO$Query_GetTag#compile - RdbmsOperation with SQL [
  80. select text, item from tag where text=?
  81. ] compiled
  82. INFO 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#init - Initialise ItemDAO
  83. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_GetItem#compile - RdbmsOperation with SQL [
  84. SELECT id, text, email, name, time, validfrom, validthru,
  85. creator, parent, category, prev, comment, posindex
  86. FROM item WHERE id=?
  87. ] compiled
  88. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_GetChildren#compile - RdbmsOperation with SQL [
  89. SELECT id, text, email, name, time, validfrom, validthru,
  90. creator, parent, category, prev, comment, posindex
  91. FROM item WHERE parent=?
  92. ] compiled
  93. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_GetItemByMindmap#compile - RdbmsOperation with SQL [
  94. SELECT id, text, email, name, time, validfrom, validthru,
  95. creator, parent, category, prev, comment, posindex
  96. FROM item where email=? and name=? and time=? AND ? BETWEEN validthru AND validfrom
  97. ] compiled
  98. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_InsertItem#compile - RdbmsOperation with SQL [
  99. INSERT INTO item (id, text, email, name, time, validfrom, validthru, creator, parent, category, prev, comment, posindex)
  100. VALUES (NULL, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
  101. ] compiled
  102. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_GetItemID#compile - RdbmsOperation with SQL [CALL IDENTITY()] compiled
  103. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_UpdateItem#compile - RdbmsOperation with SQL [
  104. UPDATE item SET text=?, email=?, name=?, time=?, validFrom=?, validThru=?,
  105. creator=?, parent=?, category=?, prev=?, comment=?, posindex=?
  106. WHERE id=?
  107. ] compiled
  108. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_DeleteItem#compile - RdbmsOperation with SQL [DELETE FROM item WHERE id=?] compiled
  109. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_GetRootItem#compile - RdbmsOperation with SQL [
  110. SELECT id, text, email, name, time, validfrom, validthru,
  111. creator, parent, category, prev, comment, posindex
  112. FROM item
  113. WHERE email=? AND name=? AND time=? AND parent IS NULL AND ? BETWEEN validfrom AND validthru
  114. ] compiled
  115. INFO 324 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#init - Initialise MindmapDAO
  116. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO$Query_GetMindmap#compile - RdbmsOperation with SQL [
  117. SELECT email, name, time, version, mailinglist
  118. FROM mindmap WHERE name=? and email=? and time=?
  119. ] compiled
  120. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO$Query_GetAllMindmaps#compile - RdbmsOperation with SQL [
  121. SELECT email, name, time, version, mailinglist FROM mindmap
  122. ] compiled
  123. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO$Query_GetMindmapBetween#compile - RdbmsOperation with SQL [
  124. SELECT email, name, time, version, mailinglist FROM mindmap
  125. WHERE time BETWEEN ? AND ?
  126. ] compiled
  127. DEBUG 53 :org.bitbucket.openminds.service.MindmapService#setMindmapDao - Set mindmapDao
  128. DEBUG 62 :org.bitbucket.openminds.service.MindmapService#setGroupDao - Set groupDao
  129. DEBUG 71 :org.bitbucket.openminds.service.MindmapService#setCreatorDao - Set creatorDao
  130. DEBUG 80 :org.bitbucket.openminds.service.MindmapService#setItemDao - Set itemDao
  131. DEBUG 89 :org.bitbucket.openminds.service.MindmapService#setCategoryDao - Set categoryDao
  132. DEBUG 98 :org.bitbucket.openminds.service.MindmapService#setTagDao - Set tagDao
  133. INFO 221 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#init - Initialise SettingDAO
  134. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO$Query_GetSetting#compile - RdbmsOperation with SQL [
  135. SELECT setting, value
  136. FROM setting WHERE setting=?
  137. ] compiled
  138. INFO 237 :org.bitbucket.openminds.dao.JdbcObjectFriendDAO#init - Initialise FriendDAO
  139. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectFriendDAO$Query_GetFriend#compile - RdbmsOperation with SQL [
  140. SELECT email, name
  141. FROM friend WHERE email=?
  142. ] compiled
  143. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectFriendDAO$Query_SaveFriend#compile - RdbmsOperation with SQL [
  144. INSERT INTO friend (email, name)
  145. VALUES (?, ?)
  146. ] compiled
  147. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectFriendDAO$Query_GetFriendByName#compile - RdbmsOperation with SQL [
  148. SELECT email, name
  149. FROM friend WHERE name=?
  150. ] compiled
  151. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectFriendDAO$Query_GetAllFriends#compile - RdbmsOperation with SQL [
  152. SELECT name, email FROM friend
  153. ] compiled
  154. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectFriendDAO$Query_UpdateFriend#compile - RdbmsOperation with SQL [
  155. UPDATE friend SET name=?
  156. WHERE email=?
  157. ] compiled
  158. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectFriendDAO$Query_DeleteFriend#compile - RdbmsOperation with SQL [DELETE FROM friend WHERE email=?] compiled
  159. DEBUG 52 :org.bitbucket.openminds.gui.controller.Controller#setMindmapService - Set MindmapService
  160. DEBUG 61 :org.bitbucket.openminds.gui.controller.Controller#setSettingDao - Set SettingDao
  161. DEBUG 67 :org.bitbucket.openminds.gui.controller.Controller#setFriendDao - Set FriendDao
  162. DEBUG 34 :org.bitbucket.openminds.test.gui.App#main - Working Directory = /home/stephan/workspace/openminds
  163. DEBUG 43 :org.bitbucket.openminds.test.gui.App#main - Set look and feel: com.sun.java.swing.plaf.gtk.GTKLookAndFeel
  164. DEBUG 48 :org.bitbucket.openminds.test.gui.App#main - Opening hsqldb-manager
  165. DEBUG 71 :org.bitbucket.openminds.gui.MainFrame#<init> - SettingFrame: org.bitbucket.openminds.service.SettingService@180a1d7b
  166. DEBUG 72 :org.bitbucket.openminds.gui.MainFrame#<init> - Entering constructor MainFrame
  167. INFO 78 :org.bitbucket.openminds.gui.MainFrame#<init> - Trying to load properties ...
  168. DEBUG 69 :org.bitbucket.openminds.helper.Tools#getStreamOfSystemResource - Entering getStreamOfSystemResource: param: resource=properties/gui/openminds.properties
  169. INFO 109 :org.bitbucket.openminds.gui.MainFrame#<init> - Properties loaded
  170. INFO 121 :org.bitbucket.openminds.gui.MainFrame#<init> - Trying to load selected language (en) package
  171. DEBUG 69 :org.bitbucket.openminds.helper.Tools#getStreamOfSystemResource - Entering getStreamOfSystemResource: param: resource=lang/Resources_en.properties
  172. INFO 124 :org.bitbucket.openminds.gui.MainFrame#<init> - Loaded selected language (en) package successfully
  173. DEBUG 435 :org.bitbucket.openminds.service.MindmapService#getAllTags - Get all Tags
  174. INFO 477 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getAllTags - Get all Tags
  175. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Tag - [asdf]
  176. INFO 499 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getItemsByTag - Get Items by Tag text = asdf
  177. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 2
  178. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Item - [2: null]
  179. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  180. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Creator - [null]
  181. INFO 387 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getGroups - Get Groups for creator email = anonymous@nowhere.com
  182. INFO 363 :org.bitbucket.openminds.dao.JdbcObjectGroupCreatorDAO#getGroupsByCreator - Get GroupCreator references Creator email = anonymous@nowhere.com
  183. DEBUG 365 :org.bitbucket.openminds.dao.JdbcObjectGroupCreatorDAO#getGroupsByCreator - Group list contains 0 groups of creator email=anonymous@nowhere.com
  184. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [anonymous]
  185. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  186. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 0
  187. DEBUG 539 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - No Item data
  188. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 0
  189. DEBUG 539 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - No Item data
  190. INFO 440 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getCategory - Get Category ID = 0
  191. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Category - [0]
  192. DEBUG 67 :org.bitbucket.openminds.domain.Category#setIcon - Icon set to:bell.png
  193. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Category - [0]
  194. DEBUG 444 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getCategory - Returning Category "default 0"
  195. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  196. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  197. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  198. INFO 502 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Get Mindmap name = s3
  199. DEBUG 503 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Initialize SQL Parameters
  200. DEBUG 509 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Executing SQL
  201. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  202. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  203. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  204. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  205. INFO 407 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Get Group mailinglist = anonymousGroup@nowhere.com
  206. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  207. INFO 450 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getMembers - Get Members for group mailinglist = anonymousGroup@nowhere.com
  208. INFO 356 :org.bitbucket.openminds.dao.JdbcObjectGroupCreatorDAO#getCreatorsByGroup - Get Creators in Group mailinglist = anonymousGroup@nowhere.com
  209. DEBUG 358 :org.bitbucket.openminds.dao.JdbcObjectGroupCreatorDAO#getCreatorsByGroup - Creator list contains0 creators from group mailinglist=anonymousGroup@nowhere.com
  210. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  211. DEBUG 411 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Returning Group "anonymousGroup@nowhere.com default"
  212. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  213. INFO 643 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getRootItem - Get root item for Mindmap = s3
  214. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Item - [2: null]
  215. DEBUG 653 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getRootItem - Returning Item "2 Root of new mindmap"
  216. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  217. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Returning Map "s3"
  218. INFO 488 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Get Tags by Item id = 2
  219. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdf]
  220. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Tag - [asdff]
  221. INFO 499 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getItemsByTag - Get Items by Tag text = asdff
  222. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 2
  223. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Item - [2: null]
  224. DEBUG 536 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Returning Item "Root of new mindmap"
  225. DEBUG 501 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getItemsByTag - Item list contains 1 items tagged with Tag text = asdff
  226. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdff]
  227. DEBUG 490 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Tag list contains 2 tags of Item id = 2
  228. INFO 520 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getChildrenForVersion - Get children of item = Root of new mindmap
  229. DEBUG 366 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_GetChildrenForVersion#checkCompiled - SQL operation not compiled before execution - invoking compile
  230. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectItemDAO$Query_GetChildrenForVersion#compile - RdbmsOperation with SQL [
  231. SELECT id, text, email, name, time, validfrom, validthru,
  232. creator, parent, category, prev, comment, posindex
  233. FROM item WHERE parent=? AND ? BETWEEN validfrom AND validthru
  234. ] compiled
  235. DEBUG 526 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getChildrenForVersion - Item list contains 0 items from parent Root of new mindmap
  236. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Item - [2: Root of new mindmap]
  237. DEBUG 536 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Returning Item "Root of new mindmap"
  238. DEBUG 501 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getItemsByTag - Item list contains 1 items tagged with Tag text = asdf
  239. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdf]
  240. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdff]
  241. DEBUG 479 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getAllTags - Tag list contains 2 tags
  242. ERROR 135 :org.bitbucket.openminds.helper.Tools#getText - Could not get text for key: Category
  243. INFO 460 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getAllCategories - Get all categories
  244. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Category - [0]
  245. DEBUG 462 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getAllCategories - Returning 1
  246. DEBUG 2102:org.bitbucket.openminds.gui.controller.Controller#convertToActionList - Entering convertToActionList
  247. WARN 1896:org.bitbucket.openminds.gui.controller.Controller#getSelected - Currently selected node - no map open
  248. INFO 151 :org.bitbucket.openminds.gui.MainFrame#<init> - Loading necessary settings
  249. INFO 339 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#getSetting - Get Setting setting = name
  250. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Setting - [name: null]
  251. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Setting - [name: anonymous]
  252. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#getSetting - Returning Setting "name anonymous"
  253. INFO 339 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#getSetting - Get Setting setting = email
  254. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Setting - [email: null]
  255. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Setting - [email: anonymous@nowhere.com]
  256. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#getSetting - Returning Setting "email anonymous@nowhere.com"
  257. INFO 339 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#getSetting - Get Setting setting = emailHost
  258. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Setting - [emailHost: null]
  259. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Setting - [emailHost: smtp.googlemail.com]
  260. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#getSetting - Returning Setting "emailHost smtp.googlemail.com"
  261. INFO 162 :org.bitbucket.openminds.gui.MainFrame#<init> - Necessary Settings found - name: anonymous, email: anonymous@nowhere.com, host: smtp.googlemail.com
  262. INFO 177 :org.bitbucket.openminds.gui.MainFrame#<init> - Loading default category
  263. INFO 339 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#getSetting - Get Setting setting = idDefCategory
  264. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Setting - [idDefCategory : null]
  265. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Setting - [idDefCategory : 0]
  266. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectSettingDAO#getSetting - Returning Setting "idDefCategory 0"
  267. DEBUG 185 :org.bitbucket.openminds.gui.MainFrame#<init> - Looking for category with id0
  268. INFO 440 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getCategory - Get Category ID = 0
  269. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Category - [0]
  270. DEBUG 444 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getCategory - Returning Category "default 0"
  271. INFO 187 :org.bitbucket.openminds.gui.MainFrame#<init> - User defined default category found, using it
  272. INFO 210 :org.bitbucket.openminds.gui.MainFrame#<init> - User defined default category found - using it
  273. INFO 217 :org.bitbucket.openminds.gui.MainFrame#<init> - Loading default group
  274. INFO 407 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Get Group mailinglist = anonymousGroup@nowhere.com
  275. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  276. DEBUG 411 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Returning Group "anonymousGroup@nowhere.com default"
  277. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  278. INFO 235 :org.bitbucket.openminds.gui.MainFrame#<init> - Default group loaded from database
  279. DEBUG 3765:org.bitbucket.openminds.gui.controller.Controller$LoadVersionAction#actionPerformed - called actionPerformed: Load other Version
  280. INFO 427 :org.bitbucket.openminds.gui.MainFrame#out - Cannot load other version open mindmap first
  281. DEBUG 3604:org.bitbucket.openminds.gui.controller.Controller$LoadAction#actionPerformed - called actionPerformed: Load Mindmap
  282. DEBUG 739 :org.bitbucket.openminds.gui.controller.Controller#load - entering method: load
  283. Konstruktor AConfirmFrame
  284. DEBUG 50 :org.bitbucket.openminds.gui.frame.AConfirmFrame#<init> - new ConfirmFrame
  285. DEBUG 306 :org.bitbucket.openminds.service.MindmapService#getAllMindmaps - Get all Mindmaps
  286. INFO 620 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getAllMindmaps - Get all Mindmaps
  287. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  288. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  289. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  290. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Mindmap - [name:as1]
  291. INFO 407 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Get Group mailinglist = anonymousGroup@nowhere.com
  292. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  293. DEBUG 411 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Returning Group "anonymousGroup@nowhere.com default"
  294. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  295. INFO 643 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getRootItem - Get root item for Mindmap = as1
  296. DEBUG 657 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getRootItem - zero ore more than one Root item
  297. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:as1]
  298. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  299. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  300. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  301. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Mindmap - [name:d3]
  302. INFO 407 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Get Group mailinglist = anonymousGroup@nowhere.com
  303. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  304. DEBUG 411 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Returning Group "anonymousGroup@nowhere.com default"
  305. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  306. INFO 643 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getRootItem - Get root item for Mindmap = d3
  307. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Item - [1: null]
  308. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  309. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  310. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  311. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 0
  312. DEBUG 539 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - No Item data
  313. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 0
  314. DEBUG 539 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - No Item data
  315. INFO 440 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getCategory - Get Category ID = 0
  316. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Category - [0]
  317. DEBUG 444 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getCategory - Returning Category "default 0"
  318. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  319. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  320. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  321. INFO 502 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Get Mindmap name = d3
  322. DEBUG 503 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Initialize SQL Parameters
  323. DEBUG 509 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Executing SQL
  324. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  325. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  326. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  327. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:d3]
  328. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Returning Map "d3"
  329. INFO 488 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Get Tags by Item id = 1
  330. DEBUG 490 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Tag list contains 0 tags of Item id = 1
  331. INFO 520 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getChildrenForVersion - Get children of item = Root of new mindmap
  332. DEBUG 526 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getChildrenForVersion - Item list contains 0 items from parent Root of new mindmap
  333. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Item - [1: Root of new mindmap]
  334. DEBUG 653 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getRootItem - Returning Item "1 Root of new mindmap"
  335. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:d3]
  336. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  337. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  338. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  339. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  340. DEBUG 622 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getAllMindmaps - Mindmap list contains 3 maps
  341. DEBUG 158 :org.bitbucket.openminds.gui.frame.AConfirmFrame$OkAction#actionPerformed - called actionPerformed: Ok
  342. DEBUG 751 :org.bitbucket.openminds.gui.controller.Controller#load - params: mindmap: [name:s3]
  343. DEBUG 61 :org.bitbucket.openminds.gui.model.MindMapMapModel#<init> - entering constructor(frame=mainFrame)
  344. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  345. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  346. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  347. DEBUG 75 :org.bitbucket.openminds.gui.model.MindMapNodeModel#<init> - entering constructor; params: frame: mainFrame; frame: mainFrame
  348. DEBUG 738 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateModelFromBean - Updating model from bean
  349. DEBUG 246 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updatePosIndexRecursive - Item: Root of new mindmap
  350. DEBUG 259 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updatePosIndexRecursive - Item: Root of new mindmap, received posIndex: -1, nextPosIndexForChild: 0
  351. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:-1: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:New Mindmap]: pre:null: par:null: kids:[]: tags:[]
  352. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  353. DEBUG 730 :org.bitbucket.openminds.gui.model.MindMapNodeModel#setBean - setBean: [2: Root of new mindmap]
  354. DEBUG 738 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateModelFromBean - Updating model from bean
  355. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  356. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  357. DEBUG 3282:org.bitbucket.openminds.gui.controller.Controller$MapModuleManager#newMapModule - method newMapModule; param: map: MindMapMapModel #0
  358. DEBUG 346 :org.bitbucket.openminds.gui.view.MapView#getModel - getModel; map: this is MapView #0 of model MindMapMapModel #0 model: MindMapMapModel #0
  359. DEBUG 225 :org.bitbucket.openminds.gui.model.MindMapMapModel#addTreeModelListener - entering addTreeModelListener; l: org.bitbucket.openminds.gui.view.MapView$MapModelHandler@1effc3eb
  360. DEBUG 346 :org.bitbucket.openminds.gui.view.MapView#getModel - getModel; map: this is MapView #0 of model MindMapMapModel #0 model: MindMapMapModel #0
  361. DEBUG 169 :org.bitbucket.openminds.gui.view.NodeView#newNodeView - Creating new RootNodeView for node Root of new mindmap in map this is MapView #0 of model MindMapMapModel #0
  362. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  363. DEBUG 38 :org.bitbucket.openminds.gui.view.RootNodeView#<init> - new RootNodeView: View of Root of new mindmap
  364. DEBUG 222 :org.bitbucket.openminds.gui.view.NodeView#update - updating text and look of the node color in model java.awt.Color[r=106,g=98,b=88], icon in model src/main/resources/icons/bell.png and repainting it
  365. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  366. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  367. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  368. DEBUG 115 :org.bitbucket.openminds.gui.view.NodeView#insert - creating views for descendants of View of Root of new mindmap
  369. DEBUG 127 :org.bitbucket.openminds.gui.model.MindMapNodeModel#childrenFolded - entering method: childrenFolded
  370. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #0 of model MindMapMapModel #0 rootView: View of Root of new mindmap
  371. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  372. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  373. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  374. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #0 of model MindMapMapModel #0 rootView: View of Root of new mindmap
  375. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  376. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #0 of model MindMapMapModel #0 rootView: View of Root of new mindmap
  377. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  378. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #0 of model MindMapMapModel #0 rootView: View of Root of new mindmap
  379. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  380. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #0 of model MindMapMapModel #0 rootView: View of Root of new mindmap
  381. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  382. DEBUG 346 :org.bitbucket.openminds.gui.view.MapView#getModel - getModel; map: this is MapView #0 of model MindMapMapModel #0 model: MindMapMapModel #0
  383. DEBUG 3341:org.bitbucket.openminds.gui.controller.Controller$MapModuleManager#setMapModule - mapModule.getView():this is MapView #0 of model MindMapMapModel #0
  384. DEBUG 1883:org.bitbucket.openminds.gui.controller.Controller#getView - Currently open map (view) this is MapView #0 of model MindMapMapModel #0
  385. DEBUG 162 :org.bitbucket.openminds.gui.view.MapView#moveToRoot - moveToRoot this is MapView #0 of model MindMapMapModel #0
  386. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #0 of model MindMapMapModel #0 rootView: View of Root of new mindmap
  387. DEBUG 246 :org.bitbucket.openminds.gui.view.MapView#selectAsTheOnlyOneSelected - selectAsTheOnlyOneSelected; this is MapView #0 of model MindMapMapModel #0 params: newSelected: View of Root of new mindmap
  388. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #0 of model MindMapMapModel #0 rootView: View of Root of new mindmap
  389. DEBUG 313 :org.bitbucket.openminds.gui.view.MapView#centerNode - entering method: centerNode; params: node: View of Root of new mindmap; this is MapView #0 of model MindMapMapModel #0
  390. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  391. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  392. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #0 of model MindMapMapModel #0 rootView: View of Root of new mindmap
  393. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  394. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  395. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  396. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  397. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  398. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  399. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  400. DEBUG 3321:org.bitbucket.openminds.gui.controller.Controller$MapModuleManager#mapModuleChanged - entering method mapModuleChanged; WARNING! quite-dummy implementation! (should be ok)
  401. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  402. DEBUG 65 :org.bitbucket.openminds.gui.view.RootNodeView#paint - paint View of Root of new mindmap
  403. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  404. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  405. DEBUG 585 :org.bitbucket.openminds.gui.view.NodeView#paint - Painting node View of Root of new mindmap with sun.java2d.SunGraphics2D[font=java.awt.Font[family=Arial,name=Arial,style=plain,size=12],color=java.awt.Color[r=128,g=128,b=128]]
  406. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  407. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  408. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  409. DEBUG 65 :org.bitbucket.openminds.gui.view.RootNodeView#paint - paint View of Root of new mindmap
  410. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  411. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  412. DEBUG 585 :org.bitbucket.openminds.gui.view.NodeView#paint - Painting node View of Root of new mindmap with sun.java2d.SunGraphics2D[font=java.awt.Font[family=Arial,name=Arial,style=plain,size=12],color=java.awt.Color[r=128,g=128,b=128]]
  413. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  414. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  415. DEBUG 1912:org.bitbucket.openminds.gui.controller.Controller#selectAsTheOnlyOneSelected - Select node Root of new mindmap - in map this is MapView #0 of model MindMapMapModel #0 is in base map
  416. DEBUG 246 :org.bitbucket.openminds.gui.view.MapView#selectAsTheOnlyOneSelected - selectAsTheOnlyOneSelected; this is MapView #0 of model MindMapMapModel #0 params: newSelected: View of Root of new mindmap
  417. DEBUG 300 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0 returning: NodeView: View of Root of new mindmap
  418. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  419. DEBUG 1899:org.bitbucket.openminds.gui.controller.Controller#getSelected - Currently selected node View of Root of new mindmap
  420. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  421. DEBUG 2280:org.bitbucket.openminds.gui.controller.Controller#showPopupMenu - selected model is on LHS and we are NOT in merge view
  422. ERROR 135 :org.bitbucket.openminds.helper.Tools#getText - Could not get text for key: Category
  423. INFO 460 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getAllCategories - Get all categories
  424. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Category - [0]
  425. DEBUG 462 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getAllCategories - Returning 1
  426. DEBUG 2102:org.bitbucket.openminds.gui.controller.Controller#convertToActionList - Entering convertToActionList
  427. DEBUG 1883:org.bitbucket.openminds.gui.controller.Controller#getView - Currently open map (view) this is MapView #0 of model MindMapMapModel #0
  428. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  429. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  430. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  431. DEBUG 1883:org.bitbucket.openminds.gui.controller.Controller#getView - Currently open map (view) this is MapView #0 of model MindMapMapModel #0
  432. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  433. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  434. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  435. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  436. DEBUG 1899:org.bitbucket.openminds.gui.controller.Controller#getSelected - Currently selected node View of Root of new mindmap
  437. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  438. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  439. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  440. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  441. DEBUG 1899:org.bitbucket.openminds.gui.controller.Controller#getSelected - Currently selected node View of Root of new mindmap
  442. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  443. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  444. DEBUG 65 :org.bitbucket.openminds.gui.view.RootNodeView#paint - paint View of Root of new mindmap
  445. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  446. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  447. DEBUG 585 :org.bitbucket.openminds.gui.view.NodeView#paint - Painting node View of Root of new mindmap with sun.java2d.SunGraphics2D[font=java.awt.Font[family=Arial,name=Arial,style=plain,size=12],color=java.awt.Color[r=128,g=128,b=128]]
  448. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  449. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  450. DEBUG 1912:org.bitbucket.openminds.gui.controller.Controller#selectAsTheOnlyOneSelected - Select node Root of new mindmap - in map this is MapView #0 of model MindMapMapModel #0 is in base map
  451. DEBUG 246 :org.bitbucket.openminds.gui.view.MapView#selectAsTheOnlyOneSelected - selectAsTheOnlyOneSelected; this is MapView #0 of model MindMapMapModel #0 params: newSelected: View of Root of new mindmap
  452. DEBUG 300 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0 returning: NodeView: View of Root of new mindmap
  453. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  454. DEBUG 1899:org.bitbucket.openminds.gui.controller.Controller#getSelected - Currently selected node View of Root of new mindmap
  455. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  456. DEBUG 2280:org.bitbucket.openminds.gui.controller.Controller#showPopupMenu - selected model is on LHS and we are NOT in merge view
  457. ERROR 135 :org.bitbucket.openminds.helper.Tools#getText - Could not get text for key: Category
  458. INFO 460 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getAllCategories - Get all categories
  459. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Category - [0]
  460. DEBUG 462 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getAllCategories - Returning 1
  461. DEBUG 2102:org.bitbucket.openminds.gui.controller.Controller#convertToActionList - Entering convertToActionList
  462. DEBUG 1883:org.bitbucket.openminds.gui.controller.Controller#getView - Currently open map (view) this is MapView #0 of model MindMapMapModel #0
  463. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  464. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  465. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  466. DEBUG 1883:org.bitbucket.openminds.gui.controller.Controller#getView - Currently open map (view) this is MapView #0 of model MindMapMapModel #0
  467. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  468. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  469. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  470. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  471. DEBUG 1899:org.bitbucket.openminds.gui.controller.Controller#getSelected - Currently selected node View of Root of new mindmap
  472. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  473. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  474. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  475. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  476. DEBUG 1899:org.bitbucket.openminds.gui.controller.Controller#getSelected - Currently selected node View of Root of new mindmap
  477. DEBUG 289 :org.bitbucket.openminds.gui.view.MapView#getSelected - getSelected; this is MapView #0 of model MindMapMapModel #0
  478. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  479. DEBUG 65 :org.bitbucket.openminds.gui.view.RootNodeView#paint - paint View of Root of new mindmap
  480. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  481. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  482. DEBUG 585 :org.bitbucket.openminds.gui.view.NodeView#paint - Painting node View of Root of new mindmap with sun.java2d.SunGraphics2D[font=java.awt.Font[family=Arial,name=Arial,style=plain,size=12],color=java.awt.Color[r=128,g=128,b=128]]
  483. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  484. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  485. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  486. DEBUG 65 :org.bitbucket.openminds.gui.view.RootNodeView#paint - paint View of Root of new mindmap
  487. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  488. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #0 of model MindMapMapModel #0
  489. DEBUG 585 :org.bitbucket.openminds.gui.view.NodeView#paint - Painting node View of Root of new mindmap with sun.java2d.SunGraphics2D[font=java.awt.Font[family=Arial,name=Arial,style=plain,size=12],color=java.awt.Color[r=128,g=128,b=128]]
  490. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  491. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  492. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  493. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  494. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  495. DEBUG 3750:org.bitbucket.openminds.gui.controller.Controller$CommitMindmapAction#actionPerformed - called actionPerformed: Commit Mindmap
  496. DEBUG 1943:org.bitbucket.openminds.gui.controller.Controller#getModel - Model of currently open map = MindMapMapModel #0
  497. DEBUG 469 :org.bitbucket.openminds.gui.model.MindMapMapModel#getBean - getBean [name:s3] root: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  498. INFO 502 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Get Mindmap name = s3
  499. DEBUG 503 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Initialize SQL Parameters
  500. DEBUG 509 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Executing SQL
  501. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  502. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  503. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  504. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  505. INFO 407 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Get Group mailinglist = anonymousGroup@nowhere.com
  506. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  507. DEBUG 411 :org.bitbucket.openminds.dao.JdbcObjectGroupDAO#getGroup - Returning Group "anonymousGroup@nowhere.com default"
  508. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Group - [anonymousGroup@nowhere.com]
  509. INFO 643 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getRootItem - Get root item for Mindmap = s3
  510. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Item - [2: null]
  511. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  512. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  513. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  514. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 0
  515. DEBUG 539 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - No Item data
  516. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 0
  517. DEBUG 539 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - No Item data
  518. INFO 440 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getCategory - Get Category ID = 0
  519. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Category - [0]
  520. DEBUG 444 :org.bitbucket.openminds.dao.JdbcObjectCategoryDAO#getCategory - Returning Category "default 0"
  521. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  522. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  523. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  524. INFO 502 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Get Mindmap name = s3
  525. DEBUG 503 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Initialize SQL Parameters
  526. DEBUG 509 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Executing SQL
  527. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  528. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  529. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  530. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  531. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Returning Map "s3"
  532. INFO 488 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Get Tags by Item id = 2
  533. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Tag - [asdf]
  534. INFO 499 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getItemsByTag - Get Items by Tag text = asdf
  535. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 2
  536. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Item - [2: null]
  537. DEBUG 536 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Returning Item "Root of new mindmap"
  538. DEBUG 501 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getItemsByTag - Item list contains 1 items tagged with Tag text = asdf
  539. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdf]
  540. DEBUG 31 :org.bitbucket.openminds.helper.ObjectPool#add - Added new Object to Pool: org.bitbucket.openminds.domain.Tag - [asdff]
  541. INFO 499 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getItemsByTag - Get Items by Tag text = asdff
  542. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Get Item ID = 2
  543. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Item - [2: null]
  544. DEBUG 536 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getItem - Returning Item "Root of new mindmap"
  545. DEBUG 501 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getItemsByTag - Item list contains 1 items tagged with Tag text = asdff
  546. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdff]
  547. DEBUG 490 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Tag list contains 2 tags of Item id = 2
  548. INFO 520 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getChildrenForVersion - Get children of item = Root of new mindmap
  549. DEBUG 526 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getChildrenForVersion - Item list contains 0 items from parent Root of new mindmap
  550. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Item - [2: Root of new mindmap]
  551. DEBUG 653 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#getRootItem - Returning Item "2 Root of new mindmap"
  552. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  553. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Returning Map "s3"
  554. INFO 502 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Get Mindmap name = s3
  555. DEBUG 503 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Initialize SQL Parameters
  556. DEBUG 509 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Executing SQL
  557. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  558. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  559. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  560. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  561. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Returning Map "s3"
  562. DEBUG 1943:org.bitbucket.openminds.gui.controller.Controller#getModel - Model of currently open map = MindMapMapModel #0
  563. DEBUG 469 :org.bitbucket.openminds.gui.model.MindMapMapModel#getBean - getBean [name:s3] root: ID:2: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:null: par:null: kids:[]: tags:[[asdf], [asdff]]
  564. INFO 502 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Get Mindmap name = s3
  565. DEBUG 503 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Initialize SQL Parameters
  566. DEBUG 509 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Executing SQL
  567. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  568. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  569. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  570. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  571. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Returning Map "s3"
  572. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  573. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  574. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  575. DEBUG 1943:org.bitbucket.openminds.gui.controller.Controller#getModel - Model of currently open map = MindMapMapModel #0
  576. DEBUG 246 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updatePosIndexRecursive - Item: Root of new mindmap
  577. DEBUG 259 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updatePosIndexRecursive - Item: Root of new mindmap, received posIndex: -1, nextPosIndexForChild: 0
  578. INFO 502 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Get Mindmap name = s3
  579. DEBUG 503 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Initialize SQL Parameters
  580. DEBUG 509 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Executing SQL
  581. INFO 367 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Get Creator email = anonymous@nowhere.com
  582. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Creator - [null]
  583. DEBUG 371 :org.bitbucket.openminds.dao.JdbcObjectCreatorDAO#getCreator - Returning Creator "anonymous@nowhere.com, anonymous"
  584. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Mindmap - [name:s3]
  585. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#getMindmap - Returning Map "s3"
  586. DEBUG 163 :org.bitbucket.openminds.service.MindmapService#commitMindmap - Committing mindmap [name:s3] from version: 0
  587. DEBUG 122 :org.bitbucket.openminds.service.MindmapService#commitItem - No previous version found, committing
  588. INFO 599 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#updateItem - Update Item, ID = 2
  589. DEBUG 600 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#updateItem - Initialise SQL Parameters
  590. DEBUG 616 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#updateItem - Execute Update
  591. DEBUG 618 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#updateItem - Update Successfull
  592. INFO 488 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Get Tags by Item id = 2
  593. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdf]
  594. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdff]
  595. DEBUG 490 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Tag list contains 2 tags of Item id = 2
  596. INFO 462 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#deleteTagsByItem - Delete Tags of item id = 2
  597. DEBUG 463 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#deleteTagsByItem - Executing SQL
  598. ERROR 468 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#deleteTagsByItem - Deleting Tag of item id = 2 failed
  599. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTagsByItem - Add Tags from Item id=2
  600. INFO 488 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Get Tags by Item id = 2
  601. DEBUG 490 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Tag list contains 0 tags of Item id = 2
  602. INFO 512 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Add Tag text = asdf, Item id = 2
  603. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Initialize SQL Parameters
  604. DEBUG 518 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Execute Save
  605. DEBUG 520 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Save successfull
  606. INFO 512 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Add Tag text = asdff, Item id = 2
  607. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Initialize SQL Parameters
  608. DEBUG 518 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Execute Save
  609. DEBUG 520 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Save successfull
  610. DEBUG 542 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTagsByItem - Save successful
  611. INFO 558 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#saveItem - Add Item Text = Root of new mindmap
  612. DEBUG 559 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#saveItem - Initialise SQL Parameters
  613. DEBUG 574 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#saveItem - Initialise Transaction Manager
  614. DEBUG 579 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#doInTransaction - Start Transaction
  615. DEBUG 583 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#doInTransaction - End of Transaction
  616. INFO 590 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#saveItem - Saving item successfull. Return ID from insterted dataset = 3
  617. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTagsByItem - Add Tags from Item id=3
  618. INFO 488 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Get Tags by Item id = 3
  619. DEBUG 490 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Tag list contains 0 tags of Item id = 3
  620. INFO 512 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Add Tag text = asdf, Item id = 3
  621. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Initialize SQL Parameters
  622. DEBUG 518 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Execute Save
  623. DEBUG 520 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Save successfull
  624. INFO 512 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Add Tag text = asdff, Item id = 3
  625. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Initialize SQL Parameters
  626. DEBUG 518 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Execute Save
  627. DEBUG 520 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Save successfull
  628. DEBUG 542 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTagsByItem - Save successful
  629. INFO 599 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#updateItem - Update Item, ID = 2
  630. DEBUG 600 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#updateItem - Initialise SQL Parameters
  631. DEBUG 616 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#updateItem - Execute Update
  632. DEBUG 618 :org.bitbucket.openminds.dao.JdbcObjectItemDAO#updateItem - Update Successfull
  633. INFO 488 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Get Tags by Item id = 2
  634. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdf]
  635. DEBUG 43 :org.bitbucket.openminds.helper.ObjectPool#get - Fetched Object from Pool: org.bitbucket.openminds.domain.Tag - [asdff]
  636. DEBUG 490 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Tag list contains 2 tags of Item id = 2
  637. INFO 462 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#deleteTagsByItem - Delete Tags of item id = 2
  638. DEBUG 463 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#deleteTagsByItem - Executing SQL
  639. ERROR 468 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#deleteTagsByItem - Deleting Tag of item id = 2 failed
  640. INFO 532 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTagsByItem - Add Tags from Item id=2
  641. INFO 488 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Get Tags by Item id = 2
  642. DEBUG 490 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#getTagsByItem - Tag list contains 0 tags of Item id = 2
  643. INFO 512 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Add Tag text = asdf, Item id = 2
  644. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Initialize SQL Parameters
  645. DEBUG 518 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Execute Save
  646. DEBUG 520 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Save successfull
  647. INFO 512 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Add Tag text = asdff, Item id = 2
  648. DEBUG 513 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Initialize SQL Parameters
  649. DEBUG 518 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Execute Save
  650. DEBUG 520 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTag - Save successfull
  651. DEBUG 542 :org.bitbucket.openminds.dao.JdbcObjectTagDAO#saveTagsByItem - Save successful
  652. DEBUG 175 :org.bitbucket.openminds.service.MindmapService#commitMindmap - Mindmap committed to new Version: 1
  653. INFO 594 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#updateMindmap - Update Mindmap name = s3
  654. DEBUG 595 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#updateMindmap - Initialise SQL Parameters
  655. DEBUG 606 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#updateMindmap - Execute Update
  656. DEBUG 366 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO$Query_UpdateMindmap#checkCompiled - SQL operation not compiled before execution - invoking compile
  657. DEBUG 343 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO$Query_UpdateMindmap#compile - RdbmsOperation with SQL [
  658. UPDATE mindmap set email=?, name=?, time=?, version=?, mailinglist=?
  659. WHERE name = ? and email=? and time=?
  660. ] compiled
  661. DEBUG 608 :org.bitbucket.openminds.dao.JdbcObjectMindmapDAO#updateMindmap - Update Successfull
  662. INFO 427 :org.bitbucket.openminds.gui.MainFrame#out - Mindmap is successfully commited
  663. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  664. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  665. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  666. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  667. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  668. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  669. DEBUG 3661:org.bitbucket.openminds.gui.controller.Controller$ImportFromXMLAction#actionPerformed - called actionPerformed: Import From XML
  670. DEBUG 1943:org.bitbucket.openminds.gui.controller.Controller#getModel - Model of currently open map = MindMapMapModel #0
  671. DEBUG 469 :org.bitbucket.openminds.gui.model.MindMapMapModel#getBean - getBean [name:s3] root: ID:2: txt:Root of new mindmap: comm:null: valF:1: valT:1: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:s3]: pre:[3: Root of new mindmap]: par:null: kids:[]: tags:[[asdf], [asdff]]
  672. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #0 of model MindMapMapModel #0, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  673. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #0 of model MindMapMapModel #0 params: source: View of Root of new mindmap
  674. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  675. DEBUG 983 :org.bitbucket.openminds.gui.controller.Controller#importFromXML - exporting aborted
  676. INFO 427 :org.bitbucket.openminds.gui.MainFrame#out - Mindmap import cancelled!
  677. DEBUG 3576:org.bitbucket.openminds.gui.controller.Controller#actionPerformed - entering actionPerformed: New Mindmap
  678. DEBUG 61 :org.bitbucket.openminds.gui.model.MindMapMapModel#<init> - entering constructor(frame=mainFrame)
  679. DEBUG 75 :org.bitbucket.openminds.gui.model.MindMapNodeModel#<init> - entering constructor; params: frame: mainFrame; frame: mainFrame
  680. DEBUG 738 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateModelFromBean - Updating model from bean
  681. DEBUG 246 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updatePosIndexRecursive - Item: Root of new mindmap
  682. DEBUG 259 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updatePosIndexRecursive - Item: Root of new mindmap, received posIndex: -1, nextPosIndexForChild: 0
  683. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:-1: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:New Mindmap]: pre:null: par:null: kids:[]: tags:[]
  684. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  685. DEBUG 3282:org.bitbucket.openminds.gui.controller.Controller$MapModuleManager#newMapModule - method newMapModule; param: map: MindMapMapModel #1
  686. DEBUG 346 :org.bitbucket.openminds.gui.view.MapView#getModel - getModel; map: this is MapView #1 of model MindMapMapModel #1 model: MindMapMapModel #1
  687. DEBUG 225 :org.bitbucket.openminds.gui.model.MindMapMapModel#addTreeModelListener - entering addTreeModelListener; l: org.bitbucket.openminds.gui.view.MapView$MapModelHandler@bbef5e8
  688. DEBUG 346 :org.bitbucket.openminds.gui.view.MapView#getModel - getModel; map: this is MapView #1 of model MindMapMapModel #1 model: MindMapMapModel #1
  689. DEBUG 169 :org.bitbucket.openminds.gui.view.NodeView#newNodeView - Creating new RootNodeView for node Root of new mindmap in map this is MapView #1 of model MindMapMapModel #1
  690. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #1 of model MindMapMapModel #1
  691. DEBUG 38 :org.bitbucket.openminds.gui.view.RootNodeView#<init> - new RootNodeView: View of Root of new mindmap
  692. DEBUG 222 :org.bitbucket.openminds.gui.view.NodeView#update - updating text and look of the node color in model java.awt.Color[r=106,g=98,b=88], icon in model src/main/resources/icons/bell.png and repainting it
  693. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  694. DEBUG 646 :org.bitbucket.openminds.gui.model.MindMapNodeModel#getBean - called getBean! bean: ID:-1: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:New Mindmap]: pre:null: par:null: kids:[]: tags:[]
  695. DEBUG 656 :org.bitbucket.openminds.gui.model.MindMapNodeModel#updateBeanFromModel - ###### updateBeanFromModel
  696. DEBUG 115 :org.bitbucket.openminds.gui.view.NodeView#insert - creating views for descendants of View of Root of new mindmap
  697. DEBUG 127 :org.bitbucket.openminds.gui.model.MindMapNodeModel#childrenFolded - entering method: childrenFolded
  698. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #1 of model MindMapMapModel #1 rootView: View of Root of new mindmap
  699. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  700. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  701. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  702. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #1 of model MindMapMapModel #1 rootView: View of Root of new mindmap
  703. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  704. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #1 of model MindMapMapModel #1 rootView: View of Root of new mindmap
  705. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  706. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #1 of model MindMapMapModel #1 rootView: View of Root of new mindmap
  707. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  708. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #1 of model MindMapMapModel #1 rootView: View of Root of new mindmap
  709. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  710. DEBUG 346 :org.bitbucket.openminds.gui.view.MapView#getModel - getModel; map: this is MapView #1 of model MindMapMapModel #1 model: MindMapMapModel #1
  711. DEBUG 3341:org.bitbucket.openminds.gui.controller.Controller$MapModuleManager#setMapModule - mapModule.getView():this is MapView #1 of model MindMapMapModel #1
  712. DEBUG 1883:org.bitbucket.openminds.gui.controller.Controller#getView - Currently open map (view) this is MapView #1 of model MindMapMapModel #1
  713. DEBUG 162 :org.bitbucket.openminds.gui.view.MapView#moveToRoot - moveToRoot this is MapView #1 of model MindMapMapModel #1
  714. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #1 of model MindMapMapModel #1 rootView: View of Root of new mindmap
  715. DEBUG 246 :org.bitbucket.openminds.gui.view.MapView#selectAsTheOnlyOneSelected - selectAsTheOnlyOneSelected; this is MapView #1 of model MindMapMapModel #1 params: newSelected: View of Root of new mindmap
  716. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #1 of model MindMapMapModel #1 rootView: View of Root of new mindmap
  717. DEBUG 313 :org.bitbucket.openminds.gui.view.MapView#centerNode - entering method: centerNode; params: node: View of Root of new mindmap; this is MapView #1 of model MindMapMapModel #1
  718. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  719. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  720. DEBUG 341 :org.bitbucket.openminds.gui.view.MapView#getRoot - getRoot; map: this is MapView #1 of model MindMapMapModel #1 rootView: View of Root of new mindmap
  721. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  722. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  723. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  724. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  725. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  726. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  727. DEBUG 115 :org.bitbucket.openminds.gui.view.RootNodeView#getPreferredSize - returning: width: 136, heigth: 28
  728. DEBUG 3321:org.bitbucket.openminds.gui.controller.Controller$MapModuleManager#mapModuleChanged - entering method mapModuleChanged; WARNING! quite-dummy implementation! (should be ok)
  729. DEBUG 1943:org.bitbucket.openminds.gui.controller.Controller#getModel - Model of currently open map = MindMapMapModel #1
  730. DEBUG 469 :org.bitbucket.openminds.gui.model.MindMapMapModel#getBean - getBean [name:New Mindmap] root: ID:-1: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:New Mindmap]: pre:null: par:null: kids:[]: tags:[]
  731. DEBUG 1943:org.bitbucket.openminds.gui.controller.Controller#getModel - Model of currently open map = MindMapMapModel #1
  732. DEBUG 469 :org.bitbucket.openminds.gui.model.MindMapMapModel#getBean - getBean [name:New Mindmap] root: ID:-1: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:New Mindmap]: pre:null: par:null: kids:[]: tags:[]
  733. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #1 of model MindMapMapModel #1, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  734. DEBUG 65 :org.bitbucket.openminds.gui.view.RootNodeView#paint - paint View of Root of new mindmap
  735. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #1 of model MindMapMapModel #1
  736. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #1 of model MindMapMapModel #1
  737. DEBUG 585 :org.bitbucket.openminds.gui.view.NodeView#paint - Painting node View of Root of new mindmap with sun.java2d.SunGraphics2D[font=java.awt.Font[family=Arial,name=Arial,style=plain,size=12],color=java.awt.Color[r=128,g=128,b=128]]
  738. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #1 of model MindMapMapModel #1 params: source: View of Root of new mindmap
  739. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  740. DEBUG 425 :org.bitbucket.openminds.gui.view.MapView#paintChildren - entering paintChildren this is MapView #1 of model MindMapMapModel #1, graphics = sun.java2d.SunGraphics2D[font=javax.swing.plaf.FontUIResource[family=DejaVu Sans,name=DejaVu Sans,style=plain,size=13],color=javax.swing.plaf.ColorUIResource[r=60,g=59,b=55]]
  741. DEBUG 65 :org.bitbucket.openminds.gui.view.RootNodeView#paint - paint View of Root of new mindmap
  742. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #1 of model MindMapMapModel #1
  743. DEBUG 336 :org.bitbucket.openminds.gui.view.MapView#getController - getController; this is MapView #1 of model MindMapMapModel #1
  744. DEBUG 585 :org.bitbucket.openminds.gui.view.NodeView#paint - Painting node View of Root of new mindmap with sun.java2d.SunGraphics2D[font=java.awt.Font[family=Arial,name=Arial,style=plain,size=12],color=java.awt.Color[r=128,g=128,b=128]]
  745. DEBUG 486 :org.bitbucket.openminds.gui.view.MapView#paintEdges - entering method: paintEdges; this is MapView #1 of model MindMapMapModel #1 params: source: View of Root of new mindmap
  746. DEBUG 502 :org.bitbucket.openminds.gui.view.NodeView#getChildrenViews - returning 0 childrenviews for node View of Root of new mindmap
  747. DEBUG 3661:org.bitbucket.openminds.gui.controller.Controller$ImportFromXMLAction#actionPerformed - called actionPerformed: Import From XML
  748. DEBUG 1943:org.bitbucket.openminds.gui.controller.Controller#getModel - Model of currently open map = MindMapMapModel #1
  749. DEBUG 469 :org.bitbucket.openminds.gui.model.MindMapMapModel#getBean - getBean [name:New Mindmap] root: ID:-1: txt:Root of new mindmap: comm:null: valF:0: valT:0: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:New Mindmap]: pre:null: par:null: kids:[]: tags:[]
  750. DEBUG 89 :org.bitbucket.openminds.helper.XMLImport#<init> - importing file: /home/stephan/workspace/openminds/New Mindmap.xml
  751. DEBUG 113 :org.bitbucket.openminds.helper.XMLImport#importMindmapFromFile - importing mindmap
  752. DEBUG 385 :org.bitbucket.openminds.helper.XMLImport#generateMindmap - initializing fields
  753. DEBUG 263 :org.bitbucket.openminds.helper.XMLImport#generateCreators - generating creators; mindmapXML: mindmap
  754. DEBUG 271 :org.bitbucket.openminds.helper.XMLImport#generateCreators - email: anonymous@nowhere.com name: anonymous
  755. DEBUG 239 :org.bitbucket.openminds.helper.XMLImport#generateCategories - generating categories
  756. DEBUG 67 :org.bitbucket.openminds.domain.Category#setIcon - Icon set to:bell.png
  757. DEBUG 288 :org.bitbucket.openminds.helper.XMLImport#generateGroup - generating group; mindmapXML: mindmap
  758. DEBUG 392 :org.bitbucket.openminds.helper.XMLImport#generateMindmap - generating new mindmap
  759. DEBUG 325 :org.bitbucket.openminds.helper.XMLImport#generateItem - generating Item: itemXML: 0
  760. DEBUG 375 :org.bitbucket.openminds.helper.XMLImport#generateItem - generated item: ID:0: txt:Root of new mindmap: comm:null: valF:1: valT:1: pos:-1: cat:[0]: creat:[anonymous]: mm:[name:as1]: pre:null: par:null: kids:[]: tags:[[asdf], [adsff]]
  761. Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
  762. at org.bitbucket.openminds.domain.Mindmap.invalidate(Mindmap.java:52)
  763. at org.bitbucket.openminds.gui.controller.Controller.importFromXML(Controller.java:936)
  764. at org.bitbucket.openminds.gui.controller.Controller.access$10(Controller.java:909)
  765. at org.bitbucket.openminds.gui.controller.Controller$ImportFromXMLAction.actionPerformed(Controller.java:3662)
  766. at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2012)
  767. at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2335)
  768. at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:404)
  769. at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
  770. at javax.swing.AbstractButton.doClick(AbstractButton.java:374)
  771. at javax.swing.AbstractButton.doClick(AbstractButton.java:354)
  772. at javax.swing.plaf.basic.BasicMenuItemUI$Actions.actionPerformed(BasicMenuItemUI.java:798)
  773. at javax.swing.SwingUtilities.notifyAction(SwingUtilities.java:1664)
  774. at javax.swing.JComponent.processKeyBinding(JComponent.java:2851)
  775. at javax.swing.JMenuBar.processBindingForKeyStrokeRecursive(JMenuBar.java:687)
  776. at javax.swing.JMenuBar.processBindingForKeyStrokeRecursive(JMenuBar.java:695)
  777. at javax.swing.JMenuBar.processBindingForKeyStrokeRecursive(JMenuBar.java:695)
  778. at javax.swing.JMenuBar.processKeyBinding(JMenuBar.java:666)
  779. at javax.swing.KeyboardManager.fireBinding(KeyboardManager.java:285)
  780. at javax.swing.KeyboardManager.fireKeyboardAction(KeyboardManager.java:272)
  781. at javax.swing.JComponent.processKeyBindingsForAllComponents(JComponent.java:2928)
  782. at javax.swing.JComponent.processKeyBindings(JComponent.java:2920)
  783. at javax.swing.JComponent.processKeyEvent(JComponent.java:2814)
  784. at java.awt.Component.processEvent(Component.java:5885)
  785. at java.awt.Container.processEvent(Container.java:2105)
  786. at java.awt.Component.dispatchEventImpl(Component.java:4469)
  787. at java.awt.Container.dispatchEventImpl(Container.java:2163)
  788. at java.awt.Component.dispatchEvent(Component.java:4295)
  789. at java.awt.KeyboardFocusManager.redispatchEvent(KeyboardFocusManager.java:1881)
  790. at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(DefaultKeyboardFocusManager.java:749)
  791. at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(DefaultKeyboardFocusManager.java:1025)
  792. at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(DefaultKeyboardFocusManager.java:892)
  793. at java.awt.DefaultKeyboardFocusManager.dispatchEvent(DefaultKeyboardFocusManager.java:713)
  794. at java.awt.Component.dispatchEventImpl(Component.java:4339)
  795. at java.awt.Container.dispatchEventImpl(Container.java:2163)
  796. at java.awt.Window.dispatchEventImpl(Window.java:2478)
  797. at java.awt.Component.dispatchEvent(Component.java:4295)
  798. at java.awt.EventQueue.dispatchEvent(EventQueue.java:604)
  799. at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:275)
  800. at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:200)
  801. at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)
  802. at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:185)
  803. at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:177)
  804. at java.awt.EventDispatchThread.run(EventDispatchThread.java:138)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement