From lgiessmann at common-lisp.net Thu Sep 1 16:14:40 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 01 Sep 2011 09:14:40 -0700 Subject: [isidorus-cvs] r814 - branches/gdl-frontend/src/anaToMia/GDL_TopicMaps_Model/src/us/isidor/gdl/anaToMia/TopicMaps/TmEngineModel Message-ID: Author: lgiessmann Date: Thu Sep 1 09:14:39 2011 New Revision: 814 Log: gdl-frontend: TopicMaps_Model: added a new method that exports separated ArrayLists of Topics and Associations to JTM1.1 Modified: branches/gdl-frontend/src/anaToMia/GDL_TopicMaps_Model/src/us/isidor/gdl/anaToMia/TopicMaps/TmEngineModel/TmEngine.java Modified: branches/gdl-frontend/src/anaToMia/GDL_TopicMaps_Model/src/us/isidor/gdl/anaToMia/TopicMaps/TmEngineModel/TmEngine.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_TopicMaps_Model/src/us/isidor/gdl/anaToMia/TopicMaps/TmEngineModel/TmEngine.java Tue Aug 30 06:17:28 2011 (r813) +++ branches/gdl-frontend/src/anaToMia/GDL_TopicMaps_Model/src/us/isidor/gdl/anaToMia/TopicMaps/TmEngineModel/TmEngine.java Thu Sep 1 09:14:39 2011 (r814) @@ -1,5 +1,7 @@ package us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel; +import java.util.ArrayList; + import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Association; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Name; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Occurrence; @@ -25,6 +27,7 @@ public String exportTm(Occurrence occurrence) throws ExporterException; public String exportTm(Association association) throws ExporterException; public String exportTm(Role role) throws ExporterException; + public String exportTm(ArrayList topics, ArrayList associations) throws ExporterException; public TopicMap createTopicMap(String tmLocator); public TopicMap getTopicMap(String tmLocator); public TopicMap[] getTopicMaps(); From lgiessmann at common-lisp.net Thu Sep 1 16:15:04 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 01 Sep 2011 09:15:04 -0700 Subject: [isidorus-cvs] r815 - in branches/gdl-frontend/src/anaToMia/GDL_TmEngine: .gwt lib src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images Message-ID: Author: lgiessmann Date: Thu Sep 1 09:15:03 2011 New Revision: 815 Log: gdl-frontend: TmEngine: fixed some bugs Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/manifest.txt branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/hosted.html branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/junit-standards.html branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/junit.html branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit.nocache.js Modified: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/.gwt/.gwt-log branches/gdl-frontend/src/anaToMia/GDL_TmEngine/lib/GDL_TopicMaps_Model.jar branches/gdl-frontend/src/anaToMia/GDL_TmEngine/src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine/JtmsTmEngine.java Modified: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/.gwt/.gwt-log ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_TmEngine/.gwt/.gwt-log Thu Sep 1 09:14:39 2011 (r814) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/.gwt/.gwt-log Thu Sep 1 09:15:03 2011 (r815) @@ -18238,3 +18238,22822 @@ Translatable source found in... Removing invalidated units Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:89) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:90) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/C:/Program%20Files/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... + [WARN] Error processing classpath URL 'file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar' +java.net.URISyntaxException: Illegal character in path at index 16: file:/C:/Program Files/eclipse/plugins/com.google.gdt.eclipse.designer.hosted.2_2_2.3.2.r36x201106161421/gwt-dev-designtime.jar + at java.net.URI$Parser.fail(Unknown Source) + at java.net.URI$Parser.checkChars(Unknown Source) + at java.net.URI$Parser.parseHierarchical(Unknown Source) + at java.net.URI$Parser.parse(Unknown Source) + at java.net.URI.(Unknown Source) + at java.net.URL.toURI(Unknown Source) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.addAllClassPathEntries(ResourceOracleImpl.java:314) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.getAllClassPathEntries(ResourceOracleImpl.java:352) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:392) + at com.google.gwt.dev.resource.impl.ResourceOracleImpl.(ResourceOracleImpl.java:382) + at com.google.gwt.dev.cfg.ModuleDef.normalize(ModuleDef.java:484) + at com.google.gwt.dev.cfg.ModuleDefLoader.doLoadModule(ModuleDefLoader.java:315) + at com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:151) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.loadModule(HostedModeSupportImpl.java:85) + at com.google.gwt.dev.shell.designtime.HostedModeSupportImpl.createModuleSpaceHost(HostedModeSupportImpl.java:64) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.hosted.tdt.HostedModeSupport.createModuleSpaceHost(HostedModeSupport.java:336) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) + at java.lang.reflect.Method.invoke(Unknown Source) + at org.eclipse.wb.internal.core.utils.reflect.ReflectionUtils.invokeMethod(ReflectionUtils.java:836) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:111) + at com.google.gdt.eclipse.designer.WarmUpSupport.warmUpHostedMode(WarmUpSupport.java:91) + at com.google.gdt.eclipse.designer.WarmUpSupport.doWarmUp(WarmUpSupport.java:70) + at com.google.gdt.eclipse.designer.Activator.earlyStartup(Activator.java:176) + at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87) + at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:73) + at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) + at org.eclipse.ui.internal.Workbench$59.run(Workbench.java:2409) + at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54) +Translatable source found in... +Removing invalidated units +Finding entry point classes Modified: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/lib/GDL_TopicMaps_Model.jar ============================================================================== Binary file (source and/or target). No diff available. Modified: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine/JtmsTmEngine.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_TmEngine/src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine/JtmsTmEngine.java Thu Sep 1 09:14:39 2011 (r814) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine/JtmsTmEngine.java Thu Sep 1 09:15:03 2011 (r815) @@ -1135,6 +1135,7 @@ private String curie(String uri, Prefixes prefixes) throws ExporterException { String qualifier = prefixes.getQualifier(uri); + if(qualifier == null || qualifier.length() == uri.length()) return uri; String suffix = uri.substring(prefixes.getNs(qualifier).length()); return "[" + qualifier + ":" + suffix + "]"; } @@ -1224,6 +1225,42 @@ return json; } + + + @Override + public String exportTm(ArrayList topics, ArrayList associations) throws ExporterException { + Prefixes prefixes = new Prefixes(topics, associations); + String json = "{"; + + // version + json += exportVersion11() + ","; + + // prefixes + json += exportJsonValue(prefixes.toJSON(), "prefixes") + ","; + + // item_type + json += exportValue("topicmap", "item_type") + ","; + + // item_identifiers + json += exportValue("null", "item_identifiers") + ","; + + // reifier + json += exportValue("null", "reifier") + ","; + + // topics + ArrayList topicStrings = new ArrayList(); + for (Topic topic : topics) + topicStrings.add(exportJTM11(topic, prefixes, false)); + json += exportJsonArrayValues(topicStrings, "topics") + ","; + + // associations + ArrayList associationStrings = new ArrayList(); + for (Association assoc : associations) + associationStrings.add(exportJTM11(assoc, prefixes, false)); + json += exportJsonArrayValues(associationStrings, "associations") + "}"; + + return json; + } private String exportJTM11(Topic topic, Prefixes prefixes, boolean standalone) throws ExporterException{ @@ -1618,6 +1655,21 @@ initPrefixes(prefixes, tm); } + + public Prefixes (ArrayList topics, ArrayList associations) throws ExporterException { + this(); + if(topics != null){ + for (Topic topic : topics) + this.initPrefixes(prefixes, topic); + } + + if(associations != null){ + for (Association assoc : associations) { + this.initPrefixes(prefixes, assoc); + } + } + } + private void initPrefixes(ArrayList prefixes, TopicMap tm) throws ExporterException{ // item_identifiers @@ -1848,7 +1900,7 @@ private void addPrefixOfIdentifier(ArrayList prefixes, Locator loc){ String uriPrefix = splitUriByLastFragment(loc.getReference())[0]; - addIfNew(prefixes, uriPrefix); + if(uriPrefix.length() != loc.getReference().length()) addIfNew(prefixes, uriPrefix); } @@ -1873,9 +1925,13 @@ private String[] splitUriByLastFragment(String uri) { + if(uri == null) return new String[]{null, null}; + int idxSlash = uri.lastIndexOf("/"); int idxSharp = uri.lastIndexOf("#"); int lastPos = idxSlash < idxSharp ? idxSharp : idxSlash; + if(lastPos <= 0) return new String[]{uri, null}; + String prefix = uri.substring(0, lastPos + 1); String suffix = uri.substring(lastPos); suffix = suffix == null ? "" : suffix; @@ -1884,17 +1940,18 @@ } - public String getQualifier(String uri) throws ExporterException{ + public String getQualifier(String uri){ String prefix = splitUriByLastFragment(uri)[0]; - for (String[] item : prefixes) { - if(item[1].equals(prefix)){ - return item[0]; + if(prefix.length() != uri.length()){ + for (String[] item : prefixes) { + if(item[1].equals(prefix)){ + return item[0]; + } } } - - // no match => throw an exception - throw new ExporterException("could not find a qualifier for the name space \"" + uri + "\""); + + return null; } Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/manifest.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/manifest.txt Thu Sep 1 09:15:03 2011 (r815) @@ -0,0 +1,2 @@ +# Module us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit +# RPC service class, partial path of RPC policy file Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/clean.css ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/clean.css Thu Sep 1 09:15:03 2011 (r815) @@ -0,0 +1,1263 @@ +/** + * The file contains styles for GWT widgets in the Clean theme. + * + * In order to maintain cross-browser compatibility, the following syntax is + * used to create IE6 specific style rules: + * .gwt-Widget { + * property: rule applies to all browsers + * -property: rule applies only to IE6 (overrides previous rule) + * } + * * html .gwt-Widget { + * property: rule applies to all versions of IE + * } + */ + +body, table td, select, button { + font-family: Arial Unicode MS, Arial, sans-serif; + font-size: small; +} +pre { + font-family: "courier new", courier; + font-size: small; +} +body { + color: black; + margin: 10px; + border: 0px; + padding: 0px; + background: #fff; + direction: ltr; +} +a, a:visited { + color: #0066cc; + text-decoration:none; +} + +a:hover { + color: #0066cc; + text-decoration:underline; +} + +select { + background: white; +} + +/** + * The reference theme can be used to determine when this style sheet has + * loaded. Create a hidden div element with absolute position, assign the style + * name below, and attach it to the DOM. Use a timer to detect when the + * element's height and width are set to 5px. + */ +.gwt-Reference-clean { + height: 5px; + width: 5px; + zoom: 1; +} + +.gwt-Button { + margin: 0; + padding: 5px 7px; + text-decoration: none; + cursor: pointer; + cursor: hand; + font-size:small; + background: url("images/hborder.png") repeat-x 0px -2077px; + border:1px solid #bbb; + border-bottom: 1px solid #a0a0a0; + border-radius: 3px; + -moz-border-radius: 3px; +} +.gwt-Button:active { + border: 1px inset #ccc; +} +.gwt-Button:hover { + border-color: #939393; +} +.gwt-Button[disabled] { + cursor: default; + color: #888; +} +.gwt-Button[disabled]:hover { + border: 1px outset #ccc; +} + +.gwt-CheckBox { +} +.gwt-CheckBox-disabled { + color: #888; +} + +.gwt-DecoratorPanel { +} +.gwt-DecoratorPanel .topCenter { + border-top: 1px solid #bbb; + line-height: 0px; +} +.gwt-DecoratorPanel .bottomCenter { + border-bottom: 1px solid #bbb; + line-height: 0px; +} +.gwt-DecoratorPanel .topCenterInner, +.gwt-DecoratorPanel .bottomCenterInner { + height: 1px; + line-height: 0px; + font-size: 1px; +} +.gwt-DecoratorPanel .middleLeft { + border-left: 1px solid #bbb; +} +.gwt-DecoratorPanel .middleRight { + border-right: 1px solid #bbb; +} +.gwt-DecoratorPanel .middleLeftInner, +.gwt-DecoratorPanel .middleRightInner { + width: 1px; + line-height: 1px; +} +.gwt-DecoratorPanel .topLeftInner, +.gwt-DecoratorPanel .topRightInner, +.gwt-DecoratorPanel .bottomLeftInner, +.gwt-DecoratorPanel .bottomRightInner { + width: 5px; + height: 5px; + zoom: 1; + font-size: 1px; + overflow: hidden; +} +.gwt-DecoratorPanel .topLeft { + line-height: 0px; + background: url(images/circles.png) no-repeat 0px -6px; + -background: url(images/circles_ie6.png) no-repeat 0px -6px; +} +.gwt-DecoratorPanel .topRight { + line-height: 0px; + background: url(images/circles.png) no-repeat -5px -6px; + -background: url(images/circles_ie6.png) no-repeat -5px -6px; +} +.gwt-DecoratorPanel .bottomLeft { + line-height: 0px; + background: url(images/circles.png) no-repeat 0px -11px; + -background: url(images/circles_ie6.png) no-repeat 0px -11px; +} +.gwt-DecoratorPanel .bottomRight { + line-height: 0px; + background: url(images/circles.png) no-repeat -5px -11px; + -background: url(images/circles_ie6.png) no-repeat -5px -11px; +} +* html .gwt-DecoratorPanel .topLeftInner, +* html .gwt-DecoratorPanel .topRightInner, +* html .gwt-DecoratorPanel .bottomLeftInner, +* html .gwt-DecoratorPanel .bottomRightInner { + width: 5px; + height: 5px; + overflow: hidden; +} + +.gwt-DialogBox .Caption { + background: #F1F1F1; + padding: 4px 8px 4px 4px; + cursor: default; + font-family: Arial Unicode MS, Arial, sans-serif; + font-weight: bold; + border-bottom: 1px solid #bbbbbb; + border-top: 1px solid #D2D2D2; +} +.gwt-DialogBox .dialogContent { +} +.gwt-DialogBox .dialogMiddleCenter { + padding: 3px; + background: white; +} +.gwt-DialogBox .dialogBottomCenter { + background: url(images/hborder.png) repeat-x 0px -2945px; + -background: url(images/hborder_ie6.png) repeat-x 0px -2144px; +} +.gwt-DialogBox .dialogMiddleLeft { + background: url(images/vborder.png) repeat-y -31px 0px; +} +.gwt-DialogBox .dialogMiddleRight { + background: url(images/vborder.png) repeat-y -32px 0px; + -background: url(images/vborder_ie6.png) repeat-y -32px 0px; +} +.gwt-DialogBox .dialogTopLeftInner { + width: 10px; + height: 8px; + zoom: 1; +} +.gwt-DialogBox .dialogTopRightInner { + width: 12px; + zoom: 1; +} +.gwt-DialogBox .dialogBottomLeftInner { + width: 10px; + height: 12px; + zoom: 1; +} +.gwt-DialogBox .dialogBottomRightInner { + width: 12px; + height: 12px; + zoom: 1; +} +.gwt-DialogBox .dialogTopLeft { + background: url(images/circles.png) no-repeat -20px 0px; + -background: url(images/circles_ie6.png) no-repeat -20px 0px; +} +.gwt-DialogBox .dialogTopRight { + background: url(images/circles.png) no-repeat -28px 0px; + -background: url(images/circles_ie6.png) no-repeat -28px 0px; +} +.gwt-DialogBox .dialogBottomLeft { + background: url(images/circles.png) no-repeat 0px -36px; + -background: url(images/circles_ie6.png) no-repeat 0px -36px; +} +.gwt-DialogBox .dialogBottomRight { + background: url(images/circles.png) no-repeat -8px -36px; + -background: url(images/circles_ie6.png) no-repeat -8px -36px; +} +* html .gwt-DialogBox .dialogTopLeftInner { + width: 10px; + overflow: hidden; +} +* html .gwt-DialogBox .dialogTopRightInner { + width: 12px; + overflow: hidden; +} +* html .gwt-DialogBox .dialogBottomLeftInner { + width: 10px; + height: 12px; + overflow: hidden; +} +* html .gwt-DialogBox .dialogBottomRightInner { + width: 12px; + height: 12px; + overflow: hidden; +} + +.gwt-DisclosurePanel { +} +.gwt-DisclosurePanel-open { +} +.gwt-DisclosurePanel-closed { +} +.gwt-DisclosurePanel .header, +.gwt-DisclosurePanel .header a, +.gwt-DisclosurePanel .header td { + text-decoration: none; /* Remove underline from header */ + color: black; + cursor: pointer; + cursor: hand; +} +.gwt-DisclosurePanel .content { + border-left: 3px solid #e7e7e7; + padding: 4px 0px 4px 8px; + margin-left: 6px; +} + +.gwt-FileUpload { +} + +.gwt-Frame { + border-top: 2px solid #666; + border-left: 2px solid #666; + border-right: 2px solid #bbb; + border-bottom: 2px solid #bbb; +} + +.gwt-HorizontalSplitPanel { +} +.gwt-HorizontalSplitPanel .hsplitter { + cursor: move; + border: 0px; + background: #e7e7e7; + line-height: 0px; +} +.gwt-VerticalSplitPanel { +} +.gwt-VerticalSplitPanel .vsplitter { + cursor: move; + border: 0px; + background: #e7e7e7; + line-height: 0px; +} + +.gwt-HTML { + padding: 0 0px; +} + +.gwt-Hyperlink { +} + +.gwt-Image { +} + +.gwt-Label { +} + +.gwt-ListBox { +} + +.gwt-MenuBar { + cursor: default; +} +.gwt-MenuBar .gwt-MenuItem { + cursor: default; + font-family: Arial Unicode MS, Arial, sans-serif; +} +.gwt-MenuBar .gwt-MenuItem-selected { + background: #E3E8F3; +} +.gwt-MenuBar-horizontal { + background: #e3e8f3 url(images/hborder.png) repeat-x 0px -2003px; + border: 1px solid #e0e0e0; +} +.gwt-MenuBar-horizontal .gwt-MenuItem { + padding: 5px 10px; + vertical-align: bottom; + color: #000; + font-weight: bold; +} +.gwt-MenuBar-horizontal .gwt-MenuItemSeparator { + width: 1px; + padding: 0px; + margin: 0px; + border: 0px; + border-left: 1px solid #ccc; + background: white; +} +.gwt-MenuBar-horizontal .gwt-MenuItemSeparator .menuSeparatorInner { + width: 1px; + height: 1px; + background: white; +} +.gwt-MenuBar-vertical { + margin-top: 0px; + margin-left: 0px; + background: white; +} +.gwt-MenuBar-vertical table { + border-collapse: collapse; +} +.gwt-MenuBar-vertical .gwt-MenuItem { + padding: 2px 40px 2px 1px; +} +.gwt-MenuBar-vertical .gwt-MenuItemSeparator { + padding: 2px 0px; +} +.gwt-MenuBar-vertical .gwt-MenuItemSeparator .menuSeparatorInner { + height: 1px; + padding: 0px; + border: 0px; + border-top: 1px solid #ccc; + overflow: hidden; +} +.gwt-MenuBar-vertical .subMenuIcon { + padding-right: 4px; +} +.gwt-MenuBar-vertical .subMenuIcon-selected { + background: #E3E8F3; +} +.gwt-MenuBarPopup { + margin: 0px 0px 0px 3px; +} +.gwt-MenuBarPopup .menuPopupTopCenter { + background: url(images/hborder.png) 0px -12px repeat-x; +} +.gwt-MenuBarPopup .menuPopupBottomCenter { + background: url(images/hborder.png) 0px -13px repeat-x; + -background: url(images/hborder_ie6.png) 0px -13px repeat-x; +} +.gwt-MenuBarPopup .menuPopupMiddleLeft { + background: url(images/vborder.png) -12px 0px repeat-y; + -background: url(images/vborder_ie6.png) -12px 0px repeat-y; +} +.gwt-MenuBarPopup .menuPopupMiddleRight { + background: url(images/vborder.png) -13px 0px repeat-y; + -background: url(images/vborder_ie6.png) -13px 0px repeat-y; +} +.gwt-MenuBarPopup .menuPopupTopLeftInner { + width: 5px; + height: 5px; + zoom: 1; +} +.gwt-MenuBarPopup .menuPopupTopRightInner { + width: 8px; + height: 5px; + zoom: 1; +} +.gwt-MenuBarPopup .menuPopupBottomLeftInner { + width: 5px; + height: 8px; + zoom: 1; +} +.gwt-MenuBarPopup .menuPopupBottomRightInner { + width: 8px; + height: 8px; + zoom: 1; +} +.gwt-MenuBarPopup .menuPopupTopLeft { + background: url(images/corner.png) no-repeat 0px -36px; + -background: url(images/corner_ie6.png) no-repeat 0px -36px; +} +.gwt-MenuBarPopup .menuPopupTopRight { + background: url(images/corner.png) no-repeat -5px -36px; + -background: url(images/corner_ie6.png) no-repeat -5px -36px; +} +.gwt-MenuBarPopup .menuPopupBottomLeft { + background: url(images/corner.png) no-repeat 0px -41px; + -background: url(images/corner_ie6.png) no-repeat 0px -41px; +} +.gwt-MenuBarPopup .menuPopupBottomRight { + background: url(images/corner.png) no-repeat -5px -41px; + -background: url(images/corner_ie6.png) no-repeat -5px -41px; +} +* html .gwt-MenuBarPopup .menuPopupTopLeftInner { + width: 5px; + height: 5px; + overflow: hidden; +} +* html .gwt-MenuBarPopup .menuPopupTopRightInner { + width: 8px; + height: 5px; + overflow: hidden; +} +* html .gwt-MenuBarPopup .menuPopupBottomLeftInner { + width: 5px; + height: 8px; + overflow: hidden; +} +* html .gwt-MenuBarPopup .menuPopupBottomRightInner { + width: 8px; + height: 8px; + overflow: hidden; +} + +.gwt-PasswordTextBox { + padding: 5px 4px; + border: 1px solid #ccc; + border-top: 1px solid #999; + font-size: 100%; +} +.gwt-PasswordTextBox-readonly { + color: #888; +} + +.gwt-PopupPanel { + border: 3px solid #e7e7e7; + padding: 3px; + background: white; +} + +.gwt-DecoratedPopupPanel .popupContent { +} +.gwt-DecoratedPopupPanel .popupMiddleCenter { + padding: 3px; + background: #f1f1f1; +} +.gwt-DecoratedPopupPanel .popupTopCenter { + background: url(images/hborder.png) 0px -2937px repeat-x; +} +.gwt-DecoratedPopupPanel .popupBottomCenter { + background: url(images/hborder.png) repeat-x 0px -2938px; + -background: url(images/hborder_ie6.png) repeat-x 0px -2138px; +} +.gwt-DecoratedPopupPanel .popupMiddleLeft { + background: url(images/vborder.png) -21px 0px repeat-y; +} +.gwt-DecoratedPopupPanel .popupMiddleRight { + background: url(images/vborder.png) repeat-y -24px 0px; + -background: url(images/vborder_ie6.png) repeat-y -24px 0px; +} +.gwt-DecoratedPopupPanel .popupTopLeftInner { + width: 6px; + height: 5px; + zoom: 1; +} +.gwt-DecoratedPopupPanel .popupTopRightInner { + width: 6px; + height: 5px; + zoom: 1; +} +.gwt-DecoratedPopupPanel .popupBottomLeftInner { + width: 6px; + height: 6px; + zoom: 1; +} +.gwt-DecoratedPopupPanel .popupBottomRightInner { + width: 6px; + height: 6px; + zoom: 1; +} +.gwt-DecoratedPopupPanel .popupTopLeft { + background: url(images/circles.png) no-repeat 0px -16px; + -background: url(images/circles_ie6.png) no-repeat 0px -16px; +} +.gwt-DecoratedPopupPanel .popupTopRight { + background: url(images/circles.png) no-repeat -6px -16px; + -background: url(images/circles_ie6.png) no-repeat -6px -16px; +} +.gwt-DecoratedPopupPanel .popupBottomLeft { + background: url(images/circles.png) no-repeat 0px -21px; + -background: url(images/circles_ie6.png) no-repeat 0px -21px; +} +.gwt-DecoratedPopupPanel .popupBottomRight { + background: url(images/circles.png) no-repeat -6px -21px; + -background: url(images/circles_ie6.png) no-repeat -6px -21px; +} +* html .gwt-DecoratedPopupPanel .popupTopLeftInner { + width: 6px; + height: 5px; + overflow: hidden; +} +* html .gwt-DecoratedPopupPanel .popupTopRightInner { + width: 6px; + height: 5px; + overflow: hidden; +} +* html .gwt-DecoratedPopupPanel .popupBottomLeftInner { + width: 6px; + height: 6px; + overflow: hidden; +} +* html .gwt-DecoratedPopupPanel .popupBottomRightInner { + width: 6px; + height: 6px; + overflow: hidden; +} + +.gwt-PopupPanelGlass { + background-color: #000; + opacity: 0.3; + filter: alpha(opacity=30); +} + +.gwt-PushButton-up, +.gwt-PushButton-up-hovering, +.gwt-PushButton-up-disabled, +.gwt-PushButton-down, +.gwt-PushButton-down-hovering, +.gwt-PushButton-down-disabled { + margin: 0; + text-decoration: none; + background: url("images/hborder.png") repeat-x 0px -27px; + border-radius: 2px; + -moz-border-radius: 2px; +} +.gwt-PushButton-up, +.gwt-PushButton-up-hovering, +.gwt-PushButton-up-disabled { + padding: 3px 5px 3px 5px; +} +.gwt-PushButton-up { + border:1px solid #bbb; + border-bottom: 1px solid #a0a0a0; + cursor: pointer; + cursor: hand; +} +.gwt-PushButton-up-hovering { + border: 1px solid; + border-color: #939393; + cursor: pointer; + cursor: hand; +} +.gwt-PushButton-up-disabled { + border: 1px solid #bbb; + cursor: default; + opacity: .5; + filter: alpha(opacity=45); + zoom: 1; +} +.gwt-PushButton-down, +.gwt-PushButton-down-hovering, +.gwt-PushButton-down-disabled { + padding: 4px 4px 2px 6px; + outline:none; +} +.gwt-PushButton-down { + border: 1px inset #666; + cursor: pointer; + cursor: hand; +} +.gwt-PushButton-down-hovering { + border: 1px solid #939393; + border-top: 1px solid #333333; + cursor: pointer; + cursor: hand; +} +.gwt-PushButton-down-disabled { + border: 1px outset #ccc; + cursor: default; + opacity: 0.5; + filter: alpha(opacity=45); + zoom: 1; +} + +.gwt-RadioButton { +} +.gwt-RadioButton-disabled { + color: #888; +} + +.gwt-RichTextArea { +} +.hasRichTextToolbar { + border: 0px; +} +.gwt-RichTextToolbar { + background: #e3e8f3 url(images/hborder.png) repeat-x 0px -2003px; + border-bottom: 1px solid #BBBBBB; + padding: 3px; + margin: 0px; +} +.gwt-RichTextToolbar .gwt-PushButton-up { + padding: 0px 1px 0px 0px; + margin-right: 4px; + margin-bottom: 4px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-PushButton-up-hovering { + margin-right: 4px; + margin-bottom: 4px; + padding: 0px 1px 0px 0px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-PushButton-down { + margin-right: 4px; + margin-bottom: 4px; + padding: 0px 0px 0px 1px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-PushButton-down-hovering { + margin-right: 4px; + margin-bottom: 4px; + padding: 0px 0px 0px 1px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-ToggleButton-up { + margin-right: 4px; + margin-bottom: 4px; + padding: 0px 1px 0px 0px; + border:1px solid #bbb; + border-bottom: 1px solid #a0a0a0; +} +.gwt-RichTextToolbar .gwt-ToggleButton-up-hovering { + margin-right: 4px; + margin-bottom: 4px; + padding: 0px 1px 0px 0px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-ToggleButton-down { + margin-right: 4px; + margin-bottom: 4px; + padding: 0px 0px 0px 1px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-ToggleButton-down-hovering { + margin-right: 4px; + margin-bottom: 4px; + padding: 0px 0px 0px 1px; + border-width: 1px; +} + +.gwt-StackPanel { + border-bottom: 1px solid #bbbbbb; +} +.gwt-StackPanel .gwt-StackPanelItem { + cursor: pointer; + cursor: hand; + font-weight: bold; + font-size: 1.3em; + padding: 3px; + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; +} +.gwt-StackPanel .gwt-StackPanelContent { + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: white; + padding: 2px 2px 10px 5px; +} + +.gwt-DecoratedStackPanel { + border-bottom: 1px solid #bbbbbb; +} +.gwt-DecoratedStackPanel .gwt-StackPanelContent { + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: white; + padding: 2px 2px 10px 5px; +} +.gwt-DecoratedStackPanel .gwt-StackPanelItem { + cursor: pointer; + cursor: hand; +} +.gwt-DecoratedStackPanel .stackItemTopLeft, +.gwt-DecoratedStackPanel .stackItemTopRight { + height: 6px; + width: 6px; + zoom: 1; +} +.gwt-DecoratedStackPanel .stackItemTopLeft { + border-left: 1px solid #bbbbbb; + background: #d3def6 url(images/corner.png) no-repeat 0px -49px; + -background: #d3def6 url(images/corner_ie6.png) no-repeat 0px -49px; +} +.gwt-DecoratedStackPanel .stackItemTopRight { + border-right: 1px solid #bbbbbb; + background: #d3def6 url(images/corner.png) no-repeat -6px -49px; + -background: #d3def6 url(images/corner_ie6.png) no-repeat -6px -49px; +} +.gwt-DecoratedStackPanel .stackItemTopLeftInner, +.gwt-DecoratedStackPanel .stackItemTopRightInner { + width: 1px; + height: 1px; +} +* html .gwt-DecoratedStackPanel .stackItemTopLeftInner, +* html .gwt-DecoratedStackPanel .stackItemTopRightInner { + width: 6px; + height: 6px; + overflow: hidden; +} +.gwt-DecoratedStackPanel .stackItemTopCenter { + background: url(images/hborder.png) 0px -21px repeat-x; +} +.gwt-DecoratedStackPanel .stackItemMiddleLeft { + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; + border-left: 1px solid #bbbbbb; +} +.gwt-DecoratedStackPanel .stackItemMiddleLeftInner, +.gwt-DecoratedStackPanel .stackItemMiddleRightInner { + width: 1px; + height: 1px; +} +.gwt-DecoratedStackPanel .stackItemMiddleRight { + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; + border-right: 1px solid #bbbbbb; +} +.gwt-DecoratedStackPanel .stackItemMiddleCenter { + font-weight: bold; + font-size: 1.3em; + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; +} +.gwt-DecoratedStackPanel .gwt-StackPanelItem-first .stackItemTopRight, +.gwt-DecoratedStackPanel .gwt-StackPanelItem-first .stackItemTopLeft { + border: 0px; + background-color: white; +} +.gwt-DecoratedStackPanel .gwt-StackPanelItem-below-selected .stackItemTopLeft, +.gwt-DecoratedStackPanel .gwt-StackPanelItem-below-selected .stackItemTopRight { + background-color: white; +} + +.gwt-SuggestBox { + padding: 5px 4px; + border: 1px solid #ccc; + border-top: 1px solid #999; + font-size: 100%; + font-family: Arial Unicode MS, Arial, sans-serif; +} + +.gwt-SuggestBoxPopup { +} + +.gwt-SuggestBoxPopup .item { + padding: 2px 6px; + color: #000; + cursor: default; + font-size: 110%; +} +.gwt-SuggestBoxPopup .item-selected { + background: #D5E2FF; +} +.gwt-SuggestBoxPopup .suggestPopupContent { + background: white; +} +.gwt-SuggestBoxPopup .suggestPopupTopCenter { + border-top: 1px solid #bbb; +} +.gwt-SuggestBoxPopup .suggestPopupBottomCenter { + border-bottom: 1px solid #bbb; +} +.gwt-SuggestBoxPopup .suggestPopupTopCenterInner, +.gwt-SuggestBoxPopup .suggestPopupBottomCenterInner { + height: 1px; + line-height: 1px; +} +.gwt-SuggestBoxPopup .suggestPopupMiddleLeft { + border-left: 1px solid #bbb; +} +.gwt-SuggestBoxPopup .suggestPopupMiddleRight { + border-right: 1px solid #bbb; +} +.gwt-SuggestBoxPopup .suggestPopupMiddleLeftInner, +.gwt-SuggestBoxPopup .suggestPopupMiddleRightInner { + width: 1px; + line-height: 1px; +} +.gwt-SuggestBoxPopup .suggestPopupTopLeftInner { + width: 0px; + height: 0px; + zoom: 1; +} +.gwt-SuggestBoxPopup .suggestPopupTopRightInner { + width: 0px; + height: 0px; + zoom: 1; +} +.gwt-SuggestBoxPopup .suggestPopupBottomLeftInner { + width: 0px; + height: 0px; + zoom: 1; +} +.gwt-SuggestBoxPopup .suggestPopupBottomRightInner { + width: 0px; + height: 0px; + zoom: 1; +} +.gwt-SuggestBoxPopup .suggestPopupTopLeft { + background: url(images/circles.png) no-repeat 0px -6px; + -background: url(images/circles_ie6.png) no-repeat 0px -6px; + width:5px; + height:5px; +} +.gwt-SuggestBoxPopup .suggestPopupTopRight { + background: url(images/circles.png) no-repeat -5px -6px; + -background: url(images/circles_ie6.png) no-repeat -5px -6px; + width:5px; + height:5px; +} +.gwt-SuggestBoxPopup .suggestPopupBottomLeft { + background: url(images/circles.png) no-repeat 0px -11px; + -background: url(images/circles_ie6.png) no-repeat 0px -11px; + width:5px; + height:5px; +} +.gwt-SuggestBoxPopup .suggestPopupBottomRight { + background: url(images/circles.png) no-repeat -5px -11px; + -background: url(images/circles_ie6.png) no-repeat -5px -11px; + width:5px; + height:5px; +} +* html .gwt-SuggestBoxPopup .suggestPopupTopLeftInner { + width: 0px; + height: 0px; + overflow: hidden; +} +* html .gwt-SuggestBoxPopup .suggestPopupTopRightInner { + width: 0px; + height: 0px; + overflow: hidden; +} +* html .gwt-SuggestBoxPopup .suggestPopupBottomLeftInner { + width: 0px; + height: 0px; + overflow: hidden; +} +* html .gwt-SuggestBoxPopup .suggestPopupBottomRightInner { + width: 0px; + height: 0px; + overflow: hidden; +} + +.gwt-TabBar { + background: #ccc; + padding-top: 6px; +} +.gwt-TabBar .gwt-TabBarFirst { + width: 5px; /* first tab distance from the left */ +} +.gwt-TabBar .gwt-TabBarRest { +} +.gwt-TabBar .gwt-TabBarItem { + margin-left: 4px; + padding: 4px 8px 4px 8px; + cursor: pointer; + cursor: hand; + color: white; + font-weight: normal; + text-align: center; + background: #8E8E8E; + -moz-border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; +} +.gwt-TabBar .gwt-TabBarItem-selected { + cursor: default; + background: white; + color: #333; + font-weight: bold; +} +.gwt-TabBar .gwt-TabBarItem-disabled { + cursor: default; + color: #999999; +} +.gwt-TabPanel { +} +.gwt-TabPanelBottom { + border-color: #ccc; + border-style: solid; + border-width: 0px 1px 1px; + overflow: hidden; + padding: 6px; +} +.gwt-DecoratedTabBar { + background: #ccc; + padding-top: 6px; +} +.gwt-DecoratedTabBar .gwt-TabBarFirst { + width: 5px; /* first tab distance from the left */ +} +.gwt-DecoratedTabBar .gwt-TabBarRest { +} +.gwt-DecoratedTabBar .gwt-TabBarItem { + border-collapse: collapse; + margin-left: 4px; +} +.gwt-DecoratedTabBar .tabTopCenter { + padding: 0px; + background: #8E8E8E; +} +.gwt-DecoratedTabBar .tabTopLeft, +.gwt-DecoratedTabBar .tabTopRight { + padding: 0px; + zoom: 1; +} +.gwt-DecoratedTabBar .tabTopLeftInner, +.gwt-DecoratedTabBar .tabTopRightInner { + width: 3px; + height: 3px; +} +.gwt-DecoratedTabBar .tabTopLeft { + background: url(images/circles.png) no-repeat 0px 0px; + -background: url(images/circles_ie6.png) no-repeat 0px 0px; +} +.gwt-DecoratedTabBar .tabTopRight { + background: url(images/circles.png) no-repeat -3px 0px; + -background: url(images/circles_ie6.png) no-repeat -3px 0px; +} +* html .gwt-DecoratedTabBar .tabTopLeftInner, +* html .gwt-DecoratedTabBar .tabTopRightInner { + width: 3px; + height: 3px; + overflow: hidden; +} +.gwt-DecoratedTabBar .tabMiddleLeft, +.gwt-DecoratedTabBar .tabMiddleRight { + width: 3px; + padding: 0px; + background: #8E8E8E; +} +.gwt-DecoratedTabBar .tabMiddleLeftInner, +.gwt-DecoratedTabBar .tabMiddleRightInner { + width: 1px; + height: 1px; +} +.gwt-DecoratedTabBar .tabMiddleCenter { + padding: 0px 5px 4px 5px; + cursor: pointer; + cursor: hand; + color: #fff; + font-weight: normal; + text-align: center; + background: #8E8E8E; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopCenter { + background:#fff; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopLeft { + background: url(images/circles.png) no-repeat -6px 0px; + -background: url(images/circles_ie6.png) no-repeat -6px 0px; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopRight { + background: url(images/circles.png) no-repeat -9px 0px; + -background: url(images/circles_ie6.png) no-repeat -9px 0px; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleLeft, +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleRight { + background: #fff; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleCenter { + cursor: default; + background: #fff; + color:#333; + font-weight:bold; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-disabled .tabMiddleCenter { + cursor: default; + color: #999999; +} + +.gwt-TextArea { + padding: 4px; + border: 1px solid #ccc; + border-top: 1px solid #666; + font-size: 100%; + font-family: Arial Unicode MS, Arial, sans-serif; +} +.gwt-TextArea-readonly { + color: #888; +} + +.gwt-TextBox { + padding: 5px 4px; + border: 1px solid #ccc; + border-top: 1px solid #999; + font-size: small; + font-family: Arial Unicode MS, Arial, sans-serif; +} +.gwt-TextBox-readonly { + color: #888; +} +.gwt-ToggleButton-up, +.gwt-ToggleButton-up-hovering, +.gwt-ToggleButton-up-disabled, +.gwt-ToggleButton-down, +.gwt-ToggleButton-down-hovering, +.gwt-ToggleButton-down-disabled { + margin: 0; + text-decoration: none; + background: url("images/hborder.png") repeat-x 0px -27px; + -moz-border-radius: 2px; + border-radius: 2px; +} +.gwt-ToggleButton-up, +.gwt-ToggleButton-up-hovering, +.gwt-ToggleButton-up-disabled { + padding: 3px 5px 3px 5px; +} +.gwt-ToggleButton-up { + border:1px solid #bbb; + border-bottom: 1px solid #a0a0a0; + cursor: pointer; + cursor: hand; +} +.gwt-ToggleButton-up-hovering { + border: 1px solid; + border-color: #939393; + cursor: pointer; + cursor: hand; +} +.gwt-ToggleButton-up-disabled { + border: 1px solid #bbb; + cursor: default; + opacity: .5; + zoom: 1; + filter: alpha(opacity=45); +} +.gwt-ToggleButton-down, +.gwt-ToggleButton-down-hovering, +.gwt-ToggleButton-down-disabled { + padding: 4px 4px 2px 6px; +} +.gwt-ToggleButton-down { + background-position: 0 -513px; + border: 1px inset #666; + cursor: pointer; + cursor: hand; +} +.gwt-ToggleButton-down-hovering { + background-position: 0 -513px; + border: 1px inset; + border-color: #9cf #69e #69e #7af; + cursor: pointer; + cursor: hand; +} +.gwt-ToggleButton-down-disabled { + background-position: 0 -513px; + border: 1px inset #ccc; + cursor: default; + opacity: .5; + zoom: 1; + filter: alpha(opacity=45); +} + +.gwt-Tree .gwt-TreeItem { + padding: 1px 0px; + margin: 0px; + white-space: nowrap; + cursor: hand; + cursor: pointer; +} +.gwt-Tree .gwt-TreeItem-selected { + background: #ebeff9; +} +.gwt-TreeItem .gwt-RadioButton input, +.gwt-TreeItem .gwt-CheckBox input { + margin-left: 0px; +} +* html .gwt-TreeItem .gwt-RadioButton input, +* html .gwt-TreeItem .gwt-CheckBox input { + margin-left: -4px; +} + +.gwt-DateBox { + padding: 5px 4px; + border: 1px solid #ccc; + border-top: 1px solid #999; + font-size: 100%; +} +.gwt-DateBox input { + width: 8em; +} +.dateBoxFormatError { + background: #ffcccc; +} +.dateBoxPopup { +} + +.gwt-DatePicker { + border: 1px solid #ccc; + border-top:1px solid #999; + cursor: default; +} +.gwt-DatePicker td, +.datePickerMonthSelector td:focus { + outline: none; +} +.datePickerDays { + width: 100%; + background: white; +} +.datePickerDay, +.datePickerWeekdayLabel, +.datePickerWeekendLabel { + font-size: 85%; + text-align: center; + padding: 4px; + outline: none; + font-weight:bold; + color:#333; + border-right: 1px solid #EDEDED; + border-bottom: 1px solid #EDEDED; +} +.datePickerWeekdayLabel, +.datePickerWeekendLabel { + background: #fff; + padding: 0px 4px 2px; + cursor: default; + color:#666; + font-size:70%; + font-weight:normal; +} +.datePickerDay { + padding: 4px 7px; + cursor: hand; + cursor: pointer; +} +.datePickerDayIsWeekend { + background: #f7f7f7; +} +.datePickerDayIsFiller { + color: #999; + font-weight:normal; +} +.datePickerDayIsValue { + background: #d7dfe8; +} +.datePickerDayIsDisabled { + color: #AAAAAA; + font-style: italic; +} +.datePickerDayIsHighlighted { + background: #F0E68C; +} +.datePickerDayIsValueAndHighlighted { + background: #d7dfe8; +} +.datePickerDayIsToday { + padding: 3px; + color: #fff; + background: url(images/hborder.png) repeat-x 0px -2607px; +} + +.datePickerMonthSelector { + width: 100%; + padding: 1px 0 5px 0; + background: #fff; +} +td.datePickerMonth { + text-align: center; + vertical-align: middle; + white-space: nowrap; + font-size: 100%; + font-weight: bold; + color: #333; +} +.datePickerPreviousButton, +.datePickerNextButton { + font-size: 120%; + line-height: 1em; + color: #3a6aad; + cursor: hand; + cursor: pointer; + font-weight: bold; + padding: 0px 4px; + outline: none; +} + +.gwt-StackLayoutPanel { + border-bottom: 1px solid #bbbbbb; +} +.gwt-StackLayoutPanel .gwt-StackLayoutPanelHeader { + cursor: pointer; + cursor: hand; + font-weight: bold; + font-size: 1.3em; + padding: 3px; + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; +} +.gwt-StackLayoutPanel .gwt-StackLayoutPanelHeader-hovering { + background: #d3def6; +} +.gwt-StackLayoutPanel .gwt-StackLayoutPanelContent { + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: white; + padding: 2px 2px 10px 5px; +} + +.gwt-TabLayoutPanel { +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelTabs { + background: #ccc; + padding-top: 6px; + padding-left: 5px; +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelContentContainer { + border-color: #ccc; + border-style: solid; + border-width: 0px 1px 1px; +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelContent { + overflow: hidden; + padding: 6px; +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelTab { + margin-left: 4px; + padding: 4px 8px 4px 8px; + cursor: pointer; + cursor: hand; + color: white; + font-weight: normal; + text-align: center; + background: #8E8E8E; + -moz-border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelTab-selected { + cursor: default; + background: white; + color: #333; + font-weight: bold; +} + +.gwt-SplitLayoutPanel-HDragger { + background: #e7e7e7 url(images/thumb_vertical.png) center center no-repeat; + cursor: col-resize; +} + +.gwt-SplitLayoutPanel-VDragger { + background: #e7e7e7 url(images/thumb_horz.png) center center no-repeat; + cursor: row-resize; +} \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/clean_rtl.css ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/clean_rtl.css Thu Sep 1 09:15:03 2011 (r815) @@ -0,0 +1,1264 @@ +/** + * The file contains styles for GWT widgets in the Clean theme, in RTL mode. + * + * In order to maintain cross-browser compatibility, the following syntax is + * used to create IE6 specific style rules: + * .gwt-Widget { + * property: rule applies to all browsers + * -property: rule applies only to IE6 (overrides previous rule) + * } + * * html .gwt-Widget { + * property: rule applies to all versions of IE + * } + */ + +body, table td, select, button { + font-family: Arial Unicode MS, Arial, sans-serif; + font-size: small; +} +pre { + font-family: "courier new", courier; + font-size: small; +} +body { + color: black; + margin: 10px; + border: 0px; + padding: 0px; + background: #fff; + direction: rtl; +} +a, a:visited { + color: #0066cc; + text-decoration:none; +} + +a:hover { + color: #0066cc; + text-decoration:underline; +} + +select { + background: white; +} + +/** + * The reference theme can be used to determine when this style sheet has + * loaded. Create a hidden div element with absolute position, assign the style + * name below, and attach it to the DOM. Use a timer to detect when the + * element's height and width are set to 5px. + */ +.gwt-Reference-clean-rtl { + height: 5px; + width: 5px; + zoom: 1; +} + +.gwt-Button { + margin: 0; + padding: 5px 7px; + text-decoration: none; + cursor: pointer; + cursor: hand; + font-size:small; + background: url("images/hborder.png") repeat-x 0px -2077px; + border:1px solid #bbb; + border-bottom: 1px solid #a0a0a0; + border-radius: 3px; + -moz-border-radius: 3px; +} +.gwt-Button:active { + border: 1px inset #ccc; +} +.gwt-Button:hover { + border-color: #939393; +} +.gwt-Button[disabled] { + cursor: default; + color: #888; +} +.gwt-Button[disabled]:hover { + border: 1px outset #ccc; +} + +.gwt-CheckBox { +} +.gwt-CheckBox-disabled { + color: #888; +} + +.gwt-DecoratorPanel { +} +.gwt-DecoratorPanel .topCenter { + border-top: 1px solid #bbb; + line-height: 0px; +} +.gwt-DecoratorPanel .bottomCenter { + border-bottom: 1px solid #bbb; + line-height: 0px; +} +.gwt-DecoratorPanel .topCenterInner, +.gwt-DecoratorPanel .bottomCenterInner { + height: 1px; + line-height: 0px; + font-size: 1px; +} +.gwt-DecoratorPanel .middleLeft { + border-left: 1px solid #bbb; +} +.gwt-DecoratorPanel .middleRight { + border-right: 1px solid #bbb; +} +.gwt-DecoratorPanel .middleLeftInner, +.gwt-DecoratorPanel .middleRightInner { + width: 1px; + line-height: 1px; +} +.gwt-DecoratorPanel .topLeftInner, +.gwt-DecoratorPanel .topRightInner, +.gwt-DecoratorPanel .bottomLeftInner, +.gwt-DecoratorPanel .bottomRightInner { + width: 5px; + height: 5px; + zoom: 1; + font-size: 1px; + overflow: hidden; +} +.gwt-DecoratorPanel .topLeft { + line-height: 0px; + background: url(images/circles.png) no-repeat 0px -6px; + -background: url(images/circles_ie6.png) no-repeat 0px -6px; +} +.gwt-DecoratorPanel .topRight { + line-height: 0px; + background: url(images/circles.png) no-repeat -5px -6px; + -background: url(images/circles_ie6.png) no-repeat -5px -6px; +} +.gwt-DecoratorPanel .bottomLeft { + line-height: 0px; + background: url(images/circles.png) no-repeat 0px -11px; + -background: url(images/circles_ie6.png) no-repeat 0px -11px; +} +.gwt-DecoratorPanel .bottomRight { + line-height: 0px; + background: url(images/circles.png) no-repeat -5px -11px; + -background: url(images/circles_ie6.png) no-repeat -5px -11px; +} +* html .gwt-DecoratorPanel .topLeftInner, +* html .gwt-DecoratorPanel .topRightInner, +* html .gwt-DecoratorPanel .bottomLeftInner, +* html .gwt-DecoratorPanel .bottomRightInner { + width: 5px; + height: 5px; + overflow: hidden; +} + +.gwt-DialogBox .Caption { + background: #F1F1F1; + padding: 4px 4px 4px 8px; + cursor: default; + font-family: Arial Unicode MS, Arial, sans-serif; + font-weight: bold; + border-bottom: 1px solid #bbbbbb; + border-top: 1px solid #D2D2D2; +} +.gwt-DialogBox .dialogContent { +} +.gwt-DialogBox .dialogMiddleCenter { + padding: 3px; + background: white; +} +.gwt-DialogBox .dialogBottomCenter { + background: url(images/hborder.png) repeat-x 0px -2945px; + -background: url(images/hborder_ie6.png) repeat-x 0px -2144px; +} +.gwt-DialogBox .dialogMiddleLeft { + background: url(images/vborder.png) repeat-y -31px 0px; +} +.gwt-DialogBox .dialogMiddleRight { + background: url(images/vborder.png) repeat-y -32px 0px; + -background: url(images/vborder_ie6.png) repeat-y -32px 0px; +} +.gwt-DialogBox .dialogTopLeftInner { + width: 10px; + height: 8px; + zoom: 1; +} +.gwt-DialogBox .dialogTopRightInner { + width: 12px; + zoom: 1; +} +.gwt-DialogBox .dialogBottomLeftInner { + width: 10px; + height: 12px; + zoom: 1; +} +.gwt-DialogBox .dialogBottomRightInner { + width: 12px; + height: 12px; + zoom: 1; +} +.gwt-DialogBox .dialogTopLeft { + background: url(images/circles.png) no-repeat -20px 0px; + -background: url(images/circles_ie6.png) no-repeat -20px 0px; +} +.gwt-DialogBox .dialogTopRight { + background: url(images/circles.png) no-repeat -28px 0px; + -background: url(images/circles_ie6.png) no-repeat -28px 0px; +} +.gwt-DialogBox .dialogBottomLeft { + background: url(images/circles.png) no-repeat 0px -36px; + -background: url(images/circles_ie6.png) no-repeat 0px -36px; +} +.gwt-DialogBox .dialogBottomRight { + background: url(images/circles.png) no-repeat -8px -36px; + -background: url(images/circles_ie6.png) no-repeat -8px -36px; +} +* html .gwt-DialogBox .dialogTopLeftInner { + width: 10px; + overflow: hidden; +} +* html .gwt-DialogBox .dialogTopRightInner { + width: 12px; + overflow: hidden; +} +* html .gwt-DialogBox .dialogBottomLeftInner { + width: 10px; + height: 12px; + overflow: hidden; +} +* html .gwt-DialogBox .dialogBottomRightInner { + width: 12px; + height: 12px; + overflow: hidden; +} + +.gwt-DisclosurePanel { +} +.gwt-DisclosurePanel-open { +} +.gwt-DisclosurePanel-closed { +} +.gwt-DisclosurePanel .header, +.gwt-DisclosurePanel .header a, +.gwt-DisclosurePanel .header td { + text-decoration: none; /* Remove underline from header */ + color: black; + cursor: pointer; + cursor: hand; +} +.gwt-DisclosurePanel .content { + border-right: 3px solid #e7e7e7; + padding: 4px 8px 4px 0px; + margin-right: 6px; +} + +.gwt-FileUpload { +} + +.gwt-Frame { + border-top: 2px solid #666; + border-left: 2px solid #666; + border-right: 2px solid #bbb; + border-bottom: 2px solid #bbb; +} + +.gwt-HorizontalSplitPanel { +} +.gwt-HorizontalSplitPanel .hsplitter { + cursor: move; + border: 0px; + background: #e7e7e7; + line-height: 0px; +} +.gwt-VerticalSplitPanel { +} +.gwt-VerticalSplitPanel .vsplitter { + cursor: move; + border: 0px; + background: #e7e7e7; + line-height: 0px; +} + +.gwt-HTML { + padding: 0 0px; +} + +.gwt-Hyperlink { +} + +.gwt-Image { +} + +.gwt-Label { +} + +.gwt-ListBox { +} + +.gwt-MenuBar { + cursor: default; +} +.gwt-MenuBar .gwt-MenuItem { + cursor: default; + font-family: Arial Unicode MS, Arial, sans-serif; +} +.gwt-MenuBar .gwt-MenuItem-selected { + background: #E3E8F3; +} +.gwt-MenuBar-horizontal { + background: #e3e8f3 url(images/hborder.png) repeat-x 0px -2003px; + border: 1px solid #e0e0e0; +} +.gwt-MenuBar-horizontal .gwt-MenuItem { + padding: 5px 10px; + vertical-align: bottom; + color: #000; + font-weight: bold; +} +.gwt-MenuBar-horizontal .gwt-MenuItemSeparator { + width: 1px; + padding: 0px; + margin: 0px; + border: 0px; + border-right: 1px solid #ccc; + background: white; +} +.gwt-MenuBar-horizontal .gwt-MenuItemSeparator .menuSeparatorInner { + width: 1px; + height: 1px; + background: white; +} +.gwt-MenuBar-vertical { + margin-top: 0px; + margin-right: 0px; + background: white; +} +.gwt-MenuBar-vertical table { + border-collapse: collapse; +} +.gwt-MenuBar-vertical .gwt-MenuItem { + padding: 2px 1px 2px 40px; +} +.gwt-MenuBar-vertical .gwt-MenuItemSeparator { + padding: 2px 0px; +} +.gwt-MenuBar-vertical .gwt-MenuItemSeparator .menuSeparatorInner { + height: 1px; + padding: 0px; + border: 0px; + border-top: 1px solid #ccc; + overflow: hidden; +} +.gwt-MenuBar-vertical .subMenuIcon { + padding-left: 4px; +} +.gwt-MenuBar-vertical .subMenuIcon-selected { + background: #E3E8F3; +} +.gwt-MenuBarPopup { + margin: 0px 3px 0px 0px; +} +.gwt-MenuBarPopup .menuPopupTopCenter { + background: url(images/hborder.png) 0px -12px repeat-x; +} +.gwt-MenuBarPopup .menuPopupBottomCenter { + background: url(images/hborder.png) 0px -13px repeat-x; + -background: url(images/hborder_ie6.png) 0px -13px repeat-x; +} +.gwt-MenuBarPopup .menuPopupMiddleLeft { + background: url(images/vborder.png) -12px 0px repeat-y; + -background: url(images/vborder_ie6.png) -12px 0px repeat-y; +} +.gwt-MenuBarPopup .menuPopupMiddleRight { + background: url(images/vborder.png) -13px 0px repeat-y; + -background: url(images/vborder_ie6.png) -13px 0px repeat-y; +} +.gwt-MenuBarPopup .menuPopupTopLeftInner { + width: 5px; + height: 5px; + zoom: 1; +} +.gwt-MenuBarPopup .menuPopupTopRightInner { + width: 8px; + height: 5px; + zoom: 1; +} +.gwt-MenuBarPopup .menuPopupBottomLeftInner { + width: 5px; + height: 8px; + zoom: 1; +} +.gwt-MenuBarPopup .menuPopupBottomRightInner { + width: 8px; + height: 8px; + zoom: 1; +} +.gwt-MenuBarPopup .menuPopupTopLeft { + background: url(images/corner.png) no-repeat 0px -36px; + -background: url(images/corner_ie6.png) no-repeat 0px -36px; +} +.gwt-MenuBarPopup .menuPopupTopRight { + background: url(images/corner.png) no-repeat -5px -36px; + -background: url(images/corner_ie6.png) no-repeat -5px -36px; +} +.gwt-MenuBarPopup .menuPopupBottomLeft { + background: url(images/corner.png) no-repeat 0px -41px; + -background: url(images/corner_ie6.png) no-repeat 0px -41px; +} +.gwt-MenuBarPopup .menuPopupBottomRight { + background: url(images/corner.png) no-repeat -5px -41px; + -background: url(images/corner_ie6.png) no-repeat -5px -41px; +} +* html .gwt-MenuBarPopup .menuPopupTopLeftInner { + width: 5px; + height: 5px; + overflow: hidden; +} +* html .gwt-MenuBarPopup .menuPopupTopRightInner { + width: 8px; + height: 5px; + overflow: hidden; +} +* html .gwt-MenuBarPopup .menuPopupBottomLeftInner { + width: 5px; + height: 8px; + overflow: hidden; +} +* html .gwt-MenuBarPopup .menuPopupBottomRightInner { + width: 8px; + height: 8px; + overflow: hidden; +} + +.gwt-PasswordTextBox { + padding: 5px 4px; + border: 1px solid #ccc; + border-top: 1px solid #999; + font-size: 100%; +} +.gwt-PasswordTextBox-readonly { + color: #888; +} + +.gwt-PopupPanel { + border: 3px solid #e7e7e7; + padding: 3px; + background: white; +} + +.gwt-DecoratedPopupPanel .popupContent { +} +.gwt-DecoratedPopupPanel .popupMiddleCenter { + padding: 3px; + background: #f1f1f1; +} +.gwt-DecoratedPopupPanel .popupTopCenter { + background: url(images/hborder.png) 0px -2937px repeat-x; +} +.gwt-DecoratedPopupPanel .popupBottomCenter { + background: url(images/hborder.png) repeat-x 0px -2938px; + -background: url(images/hborder_ie6.png) repeat-x 0px -2138px; +} +.gwt-DecoratedPopupPanel .popupMiddleLeft { + background: url(images/vborder.png) -21px 0px repeat-y; +} +.gwt-DecoratedPopupPanel .popupMiddleRight { + background: url(images/vborder.png) repeat-y -24px 0px; + -background: url(images/vborder_ie6.png) repeat-y -24px 0px; +} +.gwt-DecoratedPopupPanel .popupTopLeftInner { + width: 6px; + height: 5px; + zoom: 1; +} +.gwt-DecoratedPopupPanel .popupTopRightInner { + width: 6px; + height: 5px; + zoom: 1; +} +.gwt-DecoratedPopupPanel .popupBottomLeftInner { + width: 6px; + height: 6px; + zoom: 1; +} +.gwt-DecoratedPopupPanel .popupBottomRightInner { + width: 6px; + height: 6px; + zoom: 1; +} +.gwt-DecoratedPopupPanel .popupTopLeft { + background: url(images/circles.png) no-repeat 0px -16px; + -background: url(images/circles_ie6.png) no-repeat 0px -16px; +} +.gwt-DecoratedPopupPanel .popupTopRight { + background: url(images/circles.png) no-repeat -6px -16px; + -background: url(images/circles_ie6.png) no-repeat -6px -16px; +} +.gwt-DecoratedPopupPanel .popupBottomLeft { + background: url(images/circles.png) no-repeat 0px -21px; + -background: url(images/circles_ie6.png) no-repeat 0px -21px; +} +.gwt-DecoratedPopupPanel .popupBottomRight { + background: url(images/circles.png) no-repeat -6px -21px; + -background: url(images/circles_ie6.png) no-repeat -6px -21px; +} +* html .gwt-DecoratedPopupPanel .popupTopLeftInner { + width: 6px; + height: 5px; + overflow: hidden; +} +* html .gwt-DecoratedPopupPanel .popupTopRightInner { + width: 6px; + height: 5px; + overflow: hidden; +} +* html .gwt-DecoratedPopupPanel .popupBottomLeftInner { + width: 6px; + height: 6px; + overflow: hidden; +} +* html .gwt-DecoratedPopupPanel .popupBottomRightInner { + width: 6px; + height: 6px; + overflow: hidden; +} + +.gwt-PopupPanelGlass { + background-color: #000; + opacity: 0.3; + filter: alpha(opacity=30); +} + +.gwt-PushButton-up, +.gwt-PushButton-up-hovering, +.gwt-PushButton-up-disabled, +.gwt-PushButton-down, +.gwt-PushButton-down-hovering, +.gwt-PushButton-down-disabled { + margin: 0; + text-decoration: none; + background: url("images/hborder.png") repeat-x 0px -27px; + border-radius: 2px; + -moz-border-radius: 2px; +} +.gwt-PushButton-up, +.gwt-PushButton-up-hovering, +.gwt-PushButton-up-disabled { + padding: 3px 5px 3px 5px; +} +.gwt-PushButton-up { + border:1px solid #bbb; + border-bottom: 1px solid #a0a0a0; + cursor: pointer; + cursor: hand; +} +.gwt-PushButton-up-hovering { + border: 1px solid; + border-color: #939393; + cursor: pointer; + cursor: hand; +} +.gwt-PushButton-up-disabled { + border: 1px solid #bbb; + cursor: default; + opacity: .5; + filter: alpha(opacity=45); + zoom: 1; +} +.gwt-PushButton-down, +.gwt-PushButton-down-hovering, +.gwt-PushButton-down-disabled { + padding: 4px 6px 2px 4px; + outline:none; +} +.gwt-PushButton-down { + border: 1px inset #666; + cursor: pointer; + cursor: hand; +} +.gwt-PushButton-down-hovering { + border: 1px solid #939393; + border-top: 1px solid #333333; + cursor: pointer; + cursor: hand; +} +.gwt-PushButton-down-disabled { + border: 1px outset #ccc; + cursor: default; + opacity: 0.5; + filter: alpha(opacity=45); + zoom: 1; +} + +.gwt-RadioButton { +} +.gwt-RadioButton-disabled { + color: #888; +} + +.gwt-RichTextArea { +} +.hasRichTextToolbar { + border: 0px; +} +.gwt-RichTextToolbar { + background: #e3e8f3 url(images/hborder.png) repeat-x 0px -2003px; + border-bottom: 1px solid #BBBBBB; + padding: 3px; + margin: 0px; +} +.gwt-RichTextToolbar .gwt-PushButton-up { + padding: 0px 0px 0px 1px; + margin-left: 4px; + margin-bottom: 4px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-PushButton-up-hovering { + margin-left: 4px; + margin-bottom: 4px; + padding: 0px 0px 0px 1px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-PushButton-down { + margin-left: 4px; + margin-bottom: 4px; + padding: 0px 1px 0px 0px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-PushButton-down-hovering { + margin-left: 4px; + margin-bottom: 4px; + padding: 0px 1px 0px 0px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-ToggleButton-up { + margin-left: 4px; + margin-bottom: 4px; + padding: 0px 0px 0px 1px; + border:1px solid #bbb; + border-bottom: 1px solid #a0a0a0; +} +.gwt-RichTextToolbar .gwt-ToggleButton-up-hovering { + margin-left: 4px; + margin-bottom: 4px; + padding: 0px 0px 0px 1px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-ToggleButton-down { + margin-left: 4px; + margin-bottom: 4px; + padding: 0px 1px 0px 0px; + border-width: 1px; +} +.gwt-RichTextToolbar .gwt-ToggleButton-down-hovering { + margin-left: 4px; + margin-bottom: 4px; + padding: 0px 1px 0px 0px; + border-width: 1px; +} + +.gwt-StackPanel { + border-bottom: 1px solid #bbbbbb; +} +.gwt-StackPanel .gwt-StackPanelItem { + cursor: pointer; + cursor: hand; + font-weight: bold; + font-size: 1.3em; + padding: 3px; + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; +} +.gwt-StackPanel .gwt-StackPanelContent { + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: white; + padding: 2px 2px 10px 5px; +} + +.gwt-DecoratedStackPanel { + border-bottom: 1px solid #bbbbbb; +} +.gwt-DecoratedStackPanel .gwt-StackPanelContent { + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: white; + padding: 2px 5px 10px 2px; +} +.gwt-DecoratedStackPanel .gwt-StackPanelItem { + cursor: pointer; + cursor: hand; +} +.gwt-DecoratedStackPanel .stackItemTopLeft, +.gwt-DecoratedStackPanel .stackItemTopRight { + height: 6px; + width: 6px; + zoom: 1; +} +.gwt-DecoratedStackPanel .stackItemTopLeft { + border-left: 1px solid #bbbbbb; + background: #d3def6 url(images/corner.png) no-repeat 0px -49px; + -background: #d3def6 url(images/corner_ie6.png) no-repeat 0px -49px; +} +.gwt-DecoratedStackPanel .stackItemTopRight { + border-right: 1px solid #bbbbbb; + background: #d3def6 url(images/corner.png) no-repeat -6px -49px; + -background: #d3def6 url(images/corner_ie6.png) no-repeat -6px -49px; +} +.gwt-DecoratedStackPanel .stackItemTopLeftInner, +.gwt-DecoratedStackPanel .stackItemTopRightInner { + width: 1px; + height: 1px; +} +* html .gwt-DecoratedStackPanel .stackItemTopLeftInner, +* html .gwt-DecoratedStackPanel .stackItemTopRightInner { + width: 6px; + height: 6px; + overflow: hidden; +} +.gwt-DecoratedStackPanel .stackItemTopCenter { + background: url(images/hborder.png) 0px -21px repeat-x; +} +.gwt-DecoratedStackPanel .stackItemMiddleLeft { + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; + border-left: 1px solid #bbbbbb; +} +.gwt-DecoratedStackPanel .stackItemMiddleLeftInner, +.gwt-DecoratedStackPanel .stackItemMiddleRightInner { + width: 1px; + height: 1px; +} +.gwt-DecoratedStackPanel .stackItemMiddleRight { + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; + border-right: 1px solid #bbbbbb; +} +.gwt-DecoratedStackPanel .stackItemMiddleCenter { + font-weight: bold; + font-size: 1.3em; + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; +} +.gwt-DecoratedStackPanel .gwt-StackPanelItem-first .stackItemTopRight, +.gwt-DecoratedStackPanel .gwt-StackPanelItem-first .stackItemTopLeft { + border: 0px; + background-color: white; +} +.gwt-DecoratedStackPanel .gwt-StackPanelItem-below-selected .stackItemTopLeft, +.gwt-DecoratedStackPanel .gwt-StackPanelItem-below-selected .stackItemTopRight { + background-color: white; +} + +.gwt-SuggestBox { + padding: 5px 4px; + border: 1px solid #ccc; + border-top: 1px solid #999; + font-size: 100%; + font-family: Arial Unicode MS, Arial, sans-serif; +} + +.gwt-SuggestBoxPopup { +} + +.gwt-SuggestBoxPopup .item { + padding: 2px 6px; + color: #000; + cursor: default; + font-size: 110%; +} +.gwt-SuggestBoxPopup .item-selected { + background: #D5E2FF; +} +.gwt-SuggestBoxPopup .suggestPopupContent { + background: white; +} +.gwt-SuggestBoxPopup .suggestPopupTopCenter { + border-top: 1px solid #bbb; +} +.gwt-SuggestBoxPopup .suggestPopupBottomCenter { + border-bottom: 1px solid #bbb; +} +.gwt-SuggestBoxPopup .suggestPopupTopCenterInner, +.gwt-SuggestBoxPopup .suggestPopupBottomCenterInner { + height: 1px; + line-height: 1px; +} +.gwt-SuggestBoxPopup .suggestPopupMiddleLeft { + border-left: 1px solid #bbb; +} +.gwt-SuggestBoxPopup .suggestPopupMiddleRight { + border-right: 1px solid #bbb; +} +.gwt-SuggestBoxPopup .suggestPopupMiddleLeftInner, +.gwt-SuggestBoxPopup .suggestPopupMiddleRightInner { + width: 1px; + line-height: 1px; +} +.gwt-SuggestBoxPopup .suggestPopupTopLeftInner { + width: 0px; + height: 0px; + zoom: 1; +} +.gwt-SuggestBoxPopup .suggestPopupTopRightInner { + width: 0px; + height: 0px; + zoom: 1; +} +.gwt-SuggestBoxPopup .suggestPopupBottomLeftInner { + width: 0px; + height: 0px; + zoom: 1; +} +.gwt-SuggestBoxPopup .suggestPopupBottomRightInner { + width: 0px; + height: 0px; + zoom: 1; +} +.gwt-SuggestBoxPopup .suggestPopupTopLeft { + background: url(images/circles.png) no-repeat 0px -6px; + -background: url(images/circles_ie6.png) no-repeat 0px -6px; + width:5px; + height:5px; +} +.gwt-SuggestBoxPopup .suggestPopupTopRight { + background: url(images/circles.png) no-repeat -5px -6px; + -background: url(images/circles_ie6.png) no-repeat -5px -6px; + width:5px; + height:5px; +} +.gwt-SuggestBoxPopup .suggestPopupBottomLeft { + background: url(images/circles.png) no-repeat 0px -11px; + -background: url(images/circles_ie6.png) no-repeat 0px -11px; + width:5px; + height:5px; +} +.gwt-SuggestBoxPopup .suggestPopupBottomRight { + background: url(images/circles.png) no-repeat -5px -11px; + -background: url(images/circles_ie6.png) no-repeat -5px -11px; + width:5px; + height:5px; +} +* html .gwt-SuggestBoxPopup .suggestPopupTopLeftInner { + width: 0px; + height: 0px; + overflow: hidden; +} +* html .gwt-SuggestBoxPopup .suggestPopupTopRightInner { + width: 0px; + height: 0px; + overflow: hidden; +} +* html .gwt-SuggestBoxPopup .suggestPopupBottomLeftInner { + width: 0px; + height: 0px; + overflow: hidden; +} +* html .gwt-SuggestBoxPopup .suggestPopupBottomRightInner { + width: 0px; + height: 0px; + overflow: hidden; +} + +.gwt-TabBar { + background: #ccc; + padding-top: 6px; +} +.gwt-TabBar .gwt-TabBarFirst { + width: 5px; /* first tab distance from the left */ +} +.gwt-TabBar .gwt-TabBarRest { +} +.gwt-TabBar .gwt-TabBarItem { + margin-right: 4px; + padding: 4px 8px 4px 8px; + cursor: pointer; + cursor: hand; + color: white; + font-weight: normal; + text-align: center; + background: #8E8E8E; + -moz-border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; +} +.gwt-TabBar .gwt-TabBarItem-selected { + cursor: default; + background: white; + color: #333; + font-weight: bold; +} +.gwt-TabBar .gwt-TabBarItem-disabled { + cursor: default; + color: #999999; +} +.gwt-TabPanel { +} +.gwt-TabPanelBottom { + border-color: #ccc; + border-style: solid; + border-width: 0px 1px 1px; + overflow: hidden; + padding: 6px; +} +.gwt-DecoratedTabBar { + background: #ccc; + padding-top: 6px; +} +.gwt-DecoratedTabBar .gwt-TabBarFirst { + width: 5px; /* first tab distance from the left */ +} +.gwt-DecoratedTabBar .gwt-TabBarRest { +} +.gwt-DecoratedTabBar .gwt-TabBarItem { + border-collapse: collapse; + margin-right: 4px; +} +.gwt-DecoratedTabBar .tabTopCenter { + padding: 0px; + background: #8E8E8E; +} +.gwt-DecoratedTabBar .tabTopLeft, +.gwt-DecoratedTabBar .tabTopRight { + padding: 0px; + zoom: 1; +} +.gwt-DecoratedTabBar .tabTopLeftInner, +.gwt-DecoratedTabBar .tabTopRightInner { + width: 3px; + height: 3px; +} +.gwt-DecoratedTabBar .tabTopLeft { + background: url(images/circles.png) no-repeat 0px 0px; + -background: url(images/circles_ie6.png) no-repeat 0px 0px; +} +.gwt-DecoratedTabBar .tabTopRight { + background: url(images/circles.png) no-repeat -3px 0px; + -background: url(images/circles_ie6.png) no-repeat -3px 0px; +} +* html .gwt-DecoratedTabBar .tabTopLeftInner, +* html .gwt-DecoratedTabBar .tabTopRightInner { + width: 3px; + height: 3px; + overflow: hidden; +} +.gwt-DecoratedTabBar .tabMiddleLeft, +.gwt-DecoratedTabBar .tabMiddleRight { + width: 3px; + padding: 0px; + background: #8E8E8E; +} +.gwt-DecoratedTabBar .tabMiddleLeftInner, +.gwt-DecoratedTabBar .tabMiddleRightInner { + width: 1px; + height: 1px; +} +.gwt-DecoratedTabBar .tabMiddleCenter { + padding: 0px 5px 4px 5px; + cursor: pointer; + cursor: hand; + color: #fff; + font-weight: normal; + text-align: center; + background: #8E8E8E; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopCenter { + background:#fff; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopLeft { + background: url(images/circles.png) no-repeat -6px 0px; + -background: url(images/circles_ie6.png) no-repeat -6px 0px; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabTopRight { + background: url(images/circles.png) no-repeat -9px 0px; + -background: url(images/circles_ie6.png) no-repeat -9px 0px; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleLeft, +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleRight { + background: #fff; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-selected .tabMiddleCenter { + cursor: default; + background: #fff; + color:#333; + font-weight:bold; +} +.gwt-DecoratedTabBar .gwt-TabBarItem-disabled .tabMiddleCenter { + cursor: default; + color: #999999; +} + +.gwt-TextArea { + padding: 4px; + border: 1px solid #ccc; + border-top: 1px solid #666; + font-size: 100%; + font-family: Arial Unicode MS, Arial, sans-serif; +} +.gwt-TextArea-readonly { + color: #888; +} + +.gwt-TextBox { + padding: 5px 4px; + border: 1px solid #ccc; + border-top: 1px solid #999; + font-size: small; + font-family: Arial Unicode MS, Arial, sans-serif; +} +.gwt-TextBox-readonly { + color: #888; +} +.gwt-ToggleButton-up, +.gwt-ToggleButton-up-hovering, +.gwt-ToggleButton-up-disabled, +.gwt-ToggleButton-down, +.gwt-ToggleButton-down-hovering, +.gwt-ToggleButton-down-disabled { + margin: 0; + text-decoration: none; + background: url("images/hborder.png") repeat-x 0px -27px; + -moz-border-radius: 2px; + border-radius: 2px; +} +.gwt-ToggleButton-up, +.gwt-ToggleButton-up-hovering, +.gwt-ToggleButton-up-disabled { + padding: 3px 5px 3px 5px; +} +.gwt-ToggleButton-up { + border:1px solid #bbb; + border-bottom: 1px solid #a0a0a0; + cursor: pointer; + cursor: hand; +} +.gwt-ToggleButton-up-hovering { + border: 1px solid; + border-color: #939393; + cursor: pointer; + cursor: hand; +} +.gwt-ToggleButton-up-disabled { + border: 1px solid #bbb; + cursor: default; + opacity: .5; + zoom: 1; + filter: alpha(opacity=45); +} +.gwt-ToggleButton-down, +.gwt-ToggleButton-down-hovering, +.gwt-ToggleButton-down-disabled { + padding: 4px 6px 2px 4px; +} +.gwt-ToggleButton-down { + background-position: 0 -513px; + border: 1px inset #666; + cursor: pointer; + cursor: hand; +} +.gwt-ToggleButton-down-hovering { + background-position: 0 -513px; + border: 1px inset; + border-color: #9cf #69e #69e #7af; + cursor: pointer; + cursor: hand; +} +.gwt-ToggleButton-down-disabled { + background-position: 0 -513px; + border: 1px inset #ccc; + cursor: default; + opacity: .5; + zoom: 1; + filter: alpha(opacity=45); +} + +.gwt-Tree .gwt-TreeItem { + padding: 1px 0px; + margin: 0px; + white-space: nowrap; + cursor: hand; + cursor: pointer; + zoom: 1; +} +.gwt-Tree .gwt-TreeItem-selected { + background: #ebeff9; +} +.gwt-TreeItem .gwt-RadioButton input, +.gwt-TreeItem .gwt-CheckBox input { + margin-right: 0px; +} +* html .gwt-TreeItem .gwt-RadioButton input, +* html .gwt-TreeItem .gwt-CheckBox input { + margin-right: -4px; +} + +.gwt-DateBox { + padding: 5px 4px; + border: 1px solid #ccc; + border-top: 1px solid #999; + font-size: 100%; +} +.gwt-DateBox input { + width: 8em; +} +.dateBoxFormatError { + background: #ffcccc; +} +.dateBoxPopup { +} + +.gwt-DatePicker { + border: 1px solid #ccc; + border-top:1px solid #999; + cursor: default; +} +.gwt-DatePicker td, +.datePickerMonthSelector td:focus { + outline: none; +} +.datePickerDays { + width: 100%; + background: white; +} +.datePickerDay, +.datePickerWeekdayLabel, +.datePickerWeekendLabel { + font-size: 85%; + text-align: center; + padding: 4px; + outline: none; + font-weight:bold; + color:#333; + border-right: 1px solid #EDEDED; + border-bottom: 1px solid #EDEDED; +} +.datePickerWeekdayLabel, +.datePickerWeekendLabel { + background: #fff; + padding: 0px 4px 2px; + cursor: default; + color:#666; + font-size:70%; + font-weight:normal; +} +.datePickerDay { + padding: 4px 7px; + cursor: hand; + cursor: pointer; +} +.datePickerDayIsWeekend { + background: #f7f7f7; +} +.datePickerDayIsFiller { + color: #999; + font-weight:normal; +} +.datePickerDayIsValue { + background: #d7dfe8; +} +.datePickerDayIsDisabled { + color: #AAAAAA; + font-style: italic; +} +.datePickerDayIsHighlighted { + background: #F0E68C; +} +.datePickerDayIsValueAndHighlighted { + background: #d7dfe8; +} +.datePickerDayIsToday { + padding: 3px; + color: #fff; + background: url(images/hborder.png) repeat-x 0px -2607px; +} + +.datePickerMonthSelector { + width: 100%; + padding: 1px 0 5px 0; + background: #fff; +} +td.datePickerMonth { + text-align: center; + vertical-align: middle; + white-space: nowrap; + font-size: 100%; + font-weight: bold; + color: #333; +} +.datePickerPreviousButton, +.datePickerNextButton { + font-size: 120%; + line-height: 1em; + color: #3a6aad; + cursor: hand; + cursor: pointer; + font-weight: bold; + padding: 0px 4px; + outline: none; +} + +.gwt-StackLayoutPanel { + border-bottom: 1px solid #bbbbbb; +} +.gwt-StackLayoutPanel .gwt-StackLayoutPanelHeader { + cursor: pointer; + cursor: hand; + font-weight: bold; + font-size: 1.3em; + padding: 3px; + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: #d3def6 url(images/hborder.png) repeat-x 0px -989px; +} +.gwt-StackLayoutPanel .gwt-StackLayoutPanelHeader-hovering { + background: #d3def6; +} +.gwt-StackLayoutPanel .gwt-StackLayoutPanelContent { + border: 1px solid #bbbbbb; + border-bottom: 0px; + background: white; + padding: 2px 5px 10px 2px; +} + +.gwt-TabLayoutPanel { +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelTabs { + background: #ccc; + padding-top: 6px; + padding-right: 5px; +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelContentContainer { + border-color: #ccc; + border-style: solid; + border-width: 0px 1px 1px; +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelContent { + overflow: hidden; + padding: 6px; +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelTab { + margin-right: 4px; + padding: 4px 8px 4px 8px; + cursor: pointer; + cursor: hand; + color: white; + font-weight: normal; + text-align: center; + background: #8E8E8E; + -moz-border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; +} +.gwt-TabLayoutPanel .gwt-TabLayoutPanelTab-selected { + cursor: default; + background: white; + color: #333; + font-weight: bold; +} + +.gwt-SplitLayoutPanel-HDragger { + background: #e7e7e7 url(images/thumb_vertical.png) center center no-repeat; + cursor: col-resize; +} + +.gwt-SplitLayoutPanel-VDragger { + background: #e7e7e7 url(images/thumb_horz.png) center center no-repeat; + cursor: row-resize; +} \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/circles.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/circles_ie6.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/corner.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/corner_ie6.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/hborder.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/hborder_ie6.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/thumb_horz.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/thumb_vertical.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/vborder.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/gwt/clean/images/vborder_ie6.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/hosted.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/hosted.html Thu Sep 1 09:15:03 2011 (r815) @@ -0,0 +1,355 @@ + + + +This html file is for Development Mode support. + Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/junit-standards.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/junit-standards.html Thu Sep 1 09:15:03 2011 (r815) @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/junit.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/junit.html Thu Sep 1 09:15:03 2011 (r815) @@ -0,0 +1,66 @@ + + + + + + + + + + + + Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit.nocache.js Thu Sep 1 09:15:03 2011 (r815) @@ -0,0 +1,16 @@ +function us_isidor_gdl_anaToMia_TmEngine_GDL_TmEngine_JUnit(){var N='',ub='" for "gwt:onLoadErrorFn"',sb='" for "gwt:onPropertyErrorFn"',gb='"><\/script>',X='#',Pb='.cache.html',Z='/',Ob=':',mb='::',$b=' + + + + + + + + + + + + + + + + +
+
+
+ + Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/3F079F771C4917C324CD2DB249370BB2.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/3F079F771C4917C324CD2DB249370BB2.cache.html Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,1717 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/7FA77618379E6AC2FE41EB0165CA0402.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/7FA77618379E6AC2FE41EB0165CA0402.cache.html Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,1659 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A5C65C2B6EBBFBD3B62E57C16C595892.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A5C65C2B6EBBFBD3B62E57C16C595892.cache.html Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,1680 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A881BD062A23A9537A38D83B689E3E51.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A881BD062A23A9537A38D83B689E3E51.cache.html Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,1699 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A8D8C676608E8A077632359780FEB116.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A8D8C676608E8A077632359780FEB116.cache.html Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,1668 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EAFE0E598BB3B3F3A9FCFD08C6FDB4AF.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EAFE0E598BB3B3F3A9FCFD08C6FDB4AF.cache.html Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,1670 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='3F079F771C4917C324CD2DB249370BB2',Pb='7FA77618379E6AC2FE41EB0165CA0402',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + Added: branches/gdl-frontend/src/anaToMia/hosted_files/tm.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/tm.js Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,3926 @@ +// tmjs, version 0.4.0 +// http://github.com/jansc/tmjs +// Copyright (c) 2010 Jan Schreiber +// Licensed under the MIT-License. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +/*jslint browser: true, devel: true, onevar: true, undef: true, + nomen: false, eqeqeq: true, plusplus: true, bitwise: true, + regexp: true, newcap: true, immed: true, indent: 4 */ +/*global exports*/ + +var TM, TopicMapSystemFactory; + +/** + * @namespace Global namespace that holds all Topic Maps related objects. + * @author Jan Schreiber + * @copyright 2010 Jan Schreiber + * Date: Wed Dec 1 08:39:28 2010 +0100 + */ +TM = (function () { + var Version, Hash, XSD, TMDM, Locator, EventType, Topic, Association, + Scoped, Construct, Typed, Reifiable, + DatatypeAware, TopicMap, Role, Name, + Variant, Occurrence, TopicMapSystemMemImpl, + Index, TypeInstanceIndex, ScopedIndex, + SameTopicMapHelper, ArrayHelper, IndexHelper, addScope, + DuplicateRemover, + SignatureGenerator, MergeHelper, CopyHelper, + TypeInstanceHelper; + + Version = '0.4.0'; + + // ----------------------------------------------------------------------- + // Our swiss army knife for mixin of functions. + // See http://javascript.crockford.com/inheritance.html + Function.prototype.swiss = function (parnt) { + var i, name; + for (i = 1; i < arguments.length; i += 1) { + name = arguments[i]; + this.prototype[name] = parnt.prototype[name]; + } + return this; + }; + + // ----------------------------------------------------------------------- + // Simple hash table for lookup tables + Hash = function () { + this.hash = {}; + this.length = 0; + }; + + /** + * @class Simple hash implementation. + */ + Hash.prototype = { + /** + * Returns the object belonging to the key key or undefined if the + * key does not exist. + * @param key {String} The hash key. + * @returns {object} The stored object or undefined. + */ + get: function (key) { + return this.hash[key]; + }, + + /** + * Checks if the key exists in the hash table. + * @param key {String} The hash key. + * @returns {boolean} True if key exists in the hash table. False + * otherwise. + */ + contains: function (key) { + return this.get(key) !== undefined; + }, + + /** + * Stores an object in the hash table. + * @param key {String} The hash key. + * @param val {object} The value to be stored in the hash table. + * @returns val {object} A reference to the stored object. + */ + put: function (key, val) { + if (!this.hash[key]) { + this.length += 1; + } + this.hash[key] = val; + return val; + }, + + /** + * Removes the key and the corresponding value from the hash table. + * @param key {String} Removes value corresponding to key and the key + * from the hash table + * @returns {Hash} The hash table itself. + */ + remove: function (key) { + delete this.hash[key]; + this.length -= 1; + return this; + }, + + /** + * Returns an array with keys of the hash table. + * @returns {Array} An array with strings. + */ + keys: function () { + var ret = [], key; + for (key in this.hash) { + if (this.hash.hasOwnProperty(key)) { + ret.push(key); + } + } + return ret; + }, + + /** + * Returns an array with all values of the hash table. + * @returns {Array} An array with all objects stored as a value in + * the hash table. + */ + values: function () { + var ret = [], key; + for (key in this.hash) { + if (this.hash.hasOwnProperty(key)) { + ret.push(this.hash[key]); + } + } + return ret; + }, + + /** + * Empties the hash table by removing the reference to all objects. + * Note that the store objects themselves are not touched. + * @returns undefined + */ + empty: function () { + this.hash = {}; + this.length = 0; + }, + + /** + * Returns the size of the hash table, that is the count of all + * key/value pairs. + * @returns {Number} The count of all key/value pairs stored in the + * hash table. + */ + size: function () { + return this.length; + } + }; + + // ----------------------------------------------------------------------- + // Internal event handling system + EventType = {}; + EventType.ADD_ASSOCIATION = 1; + EventType.ADD_NAME = 2; + EventType.ADD_OCCURRENCE = 3; + EventType.ADD_ROLE = 4; + EventType.ADD_THEME = 5; + EventType.ADD_TOPIC = 6; + EventType.ADD_TYPE = 7; + EventType.REMOVE_ASSOCIATION = 8; + EventType.REMOVE_NAME = 9; + EventType.REMOVE_OCCURRENCE = 10; + EventType.REMOVE_ROLE = 11; + EventType.REMOVE_THEME = 12; + EventType.REMOVE_TOPIC = 13; + EventType.REMOVE_TYPE = 14; + EventType.SET_TYPE = 15; + + /** + * @namespace Namespace for XML Schema URIs. // FIXME!! + */ + XSD = { + 'string': "http://www.w3.org/2001/XMLSchema#string", + 'integer': "http://www.w3.org/2001/XMLSchema#integer", + 'anyURI': "http://www.w3.org/2001/XMLSchema#anyURI" + + // TODO: Add all build-in types + }; + + TMDM = { + 'TYPE_INSTANCE': 'http://psi.topicmaps.org/iso13250/model/type-instance', + 'TYPE': 'http://psi.topicmaps.org/iso13250/model/type', + 'INSTANCE': 'http://psi.topicmaps.org/iso13250/model/instance', + 'TOPIC_NAME': 'http://psi.topicmaps.org/iso13250/model/topic-name' + }; + + // ----------------------------------------------------------------------- + // TODO: The locator functions need some more work. Implement resolve() + // and toExternalForm() + + /** + * @class Immutable representation of an IRI. + */ + Locator = function (parnt, iri) { + this.parnt = parnt; + this.iri = iri; + }; + + /** + * Returns the IRI. + * @returns {String} A lexical representation of the IRI. + */ + Locator.prototype.getReference = function () { + return this.iri; + }; + + /** + * Returns true if the other object is equal to this one. + * @param other The object to compare this object against. + * @returns (other instanceof Locator && + * this.getReference().equals(((Locator)other).getReference())) + */ + Locator.prototype.equals = function (other) { + return (this.iri === other.getReference()); + }; + + /** + * Returns the external form of the IRI. Any special character will be + * escaped using the escaping conventions of RFC 3987. + * @returns {String} A string representation of this locator suitable for + * output or passing to APIs which will parse the locator anew. + */ + Locator.prototype.toExternalForm = function () { + throw {name: 'NotImplemented', message: 'Locator.toExternalForm() not implemented'}; + }; + + + // ----------------------------------------------------------------------- + /** + * @class Represents a Topic Maps construct. + */ + Construct = function () {}; + + /** + * Adds an item identifier. + * @param {Locator} itemIdentifier The item identifier to add. + * @returns {Construct} The construct itself (for chaining support) + * @throws {ModelConstraintException} If the itemidentifier is null. + * @throws {IdentityConstraintException} If another Topic Maps construct with + * the same item identifier exists. + */ + Construct.prototype.addItemIdentifier = function (itemIdentifier) { + var existing; + if (itemIdentifier === null) { + throw {name: 'ModelConstraintException', + message: 'addItemIdentifier(null) is illegal'}; + } + existing = this.getTopicMap()._ii2construct.get(itemIdentifier.getReference()); + if (existing) { + throw {name: 'IdentityConstraintException', + message: 'Topic Maps constructs with the same item identifier ' + + 'are not allowed', + reporter: this, + existing: existing, + locator: itemIdentifier}; + } + this.itemIdentifiers.push(itemIdentifier); + this.getTopicMap()._ii2construct.put(itemIdentifier.getReference(), this); + return this; + }; + + /** + * Returns true if the other object is equal to this one. Equality must be + * the result of comparing the identity (this == other) of the + * two objects. + * Note: This equality test does not reflect any equality rule according to + * the Topic Maps - Data Model (TMDM) by intention. + * @param {String} other The object to compare this object against. + */ + Construct.prototype.equals = function (other) { + return (this.id === other.id); + }; + + /** + * Returns the identifier of this construct. This property has no + * representation in the Topic Maps - Data Model. + * + * The ID can be anything, so long as no other Construct in the same topic + * map has the same ID. + * @returns {String} An identifier which identifies this construct uniquely + * within a topic map. + */ + Construct.prototype.getId = function () { + return this.id; + }; + + /** + * Returns the item identifiers of this Topic Maps construct. The return + * value may be empty but must never be null. + * @returns {Array} An array of Locators representing the item identifiers. + * The array MUST NOT be modified. + */ + Construct.prototype.getItemIdentifiers = function () { + return this.itemIdentifiers; + }; + + /** + * Returns the parent of this construct. This method returns + * null iff this construct is a TopicMap instance. + * @returns {Construct} The parent of this construct or null + * iff the construct is an instance of TopicMap. + */ + Construct.prototype.getParent = function () { + return this.parnt; + }; + + /** + * Returns the TopicMap instance to which this Topic Maps construct belongs. + * A TopicMap instance returns itself. + * @returns {Construct} The topic map instance to which this construct belongs. + */ + Construct.prototype.getTopicMap = function () { + throw {name: 'NotImplemented', message: 'getTopicMap() not implemented'}; + }; + + /** + * Returns the hash code value. + * TODO: Is this needed? + */ + Construct.prototype.hashCode = function () { + throw {name: 'NotImplemented', message: 'hashCode() not implemented'}; + }; + + /** + * Returns the parent of this construct. This method returns + * null iff this construct is a TopicMap instance. + * @returns {Construct} The parent of this construct or null + * iff the construct is an instance of {@link TopicMap}. + */ + Construct.prototype.remove = function () { + throw {name: 'NotImplemented', message: 'remove() not implemented'}; + }; + + /** + * Removes an item identifier. + * @param {Locator} itemIdentifier The item identifier to be removed from + * this construct, if present (null is ignored). + * @returns {Construct} The construct itself (for chaining support) + */ + Construct.prototype.removeItemIdentifier = function (itemIdentifier) { + if (itemIdentifier === null) { + return; + } + for (var i = 0; i < this.itemIdentifiers.length; i += 1) { + if (this.itemIdentifiers[i].getReference() === + itemIdentifier.getReference()) { + this.itemIdentifiers.splice(i, 1); + break; + } + } + this.getTopicMap()._ii2construct.remove(itemIdentifier.getReference()); + return this; + }; + + /** + * Returns true if the construct is a {@link TopicMap}-object + * @returns true if the construct is a {@link TopicMap}-object, + * false otherwise. + */ + Construct.prototype.isTopicMap = function () { + return false; + }; + + /** + * Returns true if the construct is a {@link Topic}-object + * @returns true if the construct is a {@link Topic}-object, + * false otherwise. + */ + Construct.prototype.isTopic = function () { + return false; + }; + + /** + * Returns true if the construct is an {@link Association}-object + * @returns true if the construct is an {@link Association}- + * object, false otherwise. + */ + Construct.prototype.isAssociation = function () { + return false; + }; + + /** + * Returns true if the construct is a {@link Role}-object + * @returns true if the construct is a {@link Role}-object, + * false otherwise. + */ + Construct.prototype.isRole = function () { + return false; + }; + + /** + * Returns true if the construct is a {@link Name}-object + * @returns true if the construct is a {@link Name}-object, + * false otherwise. + */ + Construct.prototype.isName = function () { + return false; + }; + + /** + * Returns true if the construct is an {@link Occurrenct}-object + * @returns true if the construct is an {@link Occurrence}-object, + * false otherwise. + */ + Construct.prototype.isOccurrence = function () { + return false; + }; + + /** + * Returns true if the construct is a {@link Variant}-object + * @returns true if the construct is a {@link Variant}-object, + * false otherwise. + */ + Construct.prototype.isVariant = function () { + return false; + }; + + // -------------------------------------------------------------------------- + Typed = function () {}; + + // Returns the type of this construct. + Typed.prototype.getType = function () { + return this.type; + }; + + /** + * Sets the type of this construct. + * @throws {ModelConstraintException} If type is null. + * @returns {Typed} The type itself (for chaining support) + */ + Typed.prototype.setType = function (type) { + if (type === null) { + throw {name: 'ModelConstraintException', + message: 'Topic.setType cannot be called without type'}; + } + SameTopicMapHelper.assertBelongsTo(this.getTopicMap(), type); + this.getTopicMap().setTypeEvent.fire(this, {old: this.type, type: type}); + this.type = type; + return this; + }; + + // -------------------------------------------------------------------------- + /** + * @class Indicates that a statement (Topic Maps construct) has a scope. + * Associations, Occurrences, Names, and Variants are scoped. + */ + Scoped = function () {}; + + /** + * Adds a topic to the scope. + * @throws {ModelConstraintException} If theme is null. + * @returns {Typed} The type itself (for chaining support) + */ + Scoped.prototype.addTheme = function (theme) { + if (theme === null) { + throw {name: 'ModelConstraintException', + message: 'addTheme(null) is illegal'}; + } + // Check if theme is part of the scope + for (var i = 0; i < this.scope.length; i += 1) { + if (this.scope[i] === theme) { + return false; + } + } + SameTopicMapHelper.assertBelongsTo(this.getTopicMap(), theme); + this.scope.push(theme); + this.getTopicMap().addThemeEvent.fire(this, {theme: theme}); + // Special case for names: add the theme to all variants + if (this.isName()) { + for (i = 0; i < this.variants.length; i += 1) { + this.getTopicMap().addThemeEvent.fire(this.variants[i], {theme: theme}); + } + } + return this; + }; + + /** + * Returns the topics which define the scope. + * @returns {Array} A possible empty Array with Topic objects. + */ + Scoped.prototype.getScope = function () { + if (this.isVariant()) { + var i, tmp = new Hash(), parent_scope = this.parnt.getScope(); + for (i = 0; i < parent_scope.length; i += 1) { + tmp.put(parent_scope[i].getId(), parent_scope[i]); + } + for (i = 0; i < this.scope.length; i += 1) { + tmp.put(this.scope[i].getId(), this.scope[i]); + } + return tmp.values(); + } + return this.scope; + }; + + /** + * Removes a topic from the scope. + * @returns {Scoped} The scoped object itself (for chaining support) + */ + Scoped.prototype.removeTheme = function (theme) { + var i, j, scope, found; + for (i = 0; i < this.scope.length; i += 1) { + if (this.scope[i] === theme) { + this.getTopicMap().removeThemeEvent.fire(this, {theme: this.scope[i]}); + this.scope.splice(i, 1); + break; + } + } + // Special case for names: remove the theme from index for all variants + if (this.isName()) { + for (i = 0; i < this.variants.length; i += 1) { + scope = this.variants[i].scope; + // Check if the the variant has theme as scope + found = false; + for (j = 0; j < scope.length; j += 1) { + if (theme.equals(scope[j])) { + found = true; + } + } + if (!found) { + this.getTopicMap().removeThemeEvent.fire(this.variants[i], {theme: theme}); + } + } + } + return this; + }; + + + // -------------------------------------------------------------------------- + /** + * @class Indicates that a Construct is reifiable. Every Topic Maps + * construct that is not a Topic is reifiable. + */ + Reifiable = function () {}; + + /** + * Returns the reifier of this construct. + */ + Reifiable.prototype.getReifier = function () { + return this.reifier; + }; + + /** + * Sets the reifier of the construct. + * @throws {ModelConstraintException} If reifier already reifies another + * construct. + * @returns {Reifiable} The reified object itself (for chaining support) + */ + Reifiable.prototype.setReifier = function (reifier) { + if (reifier && reifier.getReified() !== null) { + throw {name: 'ModelConstraintException', + message: 'Reifies already another construct'}; + } + SameTopicMapHelper.assertBelongsTo(this.getTopicMap(), reifier); + if (this.reifier) { + this.reifier._setReified(null); + } + if (reifier) { + reifier._setReified(this); + } + this.reifier = reifier; + return this; + }; + + // -------------------------------------------------------------------------- + /** + * @class Common base interface for Occurrences and Variants. + * Inherits Scoped, Reifiable + */ + DatatypeAware = function () {}; + + /** + * Returns the BigDecimal representation of the value. + */ + DatatypeAware.prototype.decimalValue = function () { + // FIXME Implement! + }; + + /** + * Returns the float representation of the value. + * @throws {NumberFormatException} If the value is not convertable to float. + */ + DatatypeAware.prototype.floatValue = function () { + var ret = parseFloat(this.value); + if (isNaN(ret)) { + throw {name: 'NumberFormatException', + message: '"' + this.value + '" is not a float'}; + } + return ret; + }; + + /** + * Returns the Locator identifying the datatype of the value. + */ + DatatypeAware.prototype.getDatatype = function () { + return this.datatype; + }; + + /** + * Returns the lexical representation of the value. + */ + DatatypeAware.prototype.getValue = function () { + if (typeof this.value === 'object' && this.value instanceof Locator) { + return this.value.getReference(); + } + return this.value.toString(); + }; + + /** + * Returns the BigInteger representation of the value. + * @throws {NumberFormatException} If the value cannot be parsed as an int. + */ + DatatypeAware.prototype.integerValue = function () { + var ret = parseInt(this.value, 10); + if (isNaN(ret)) { + throw {name: 'NumberFormatException', + message: '"' + this.value + '" is not an integer'}; + } + return ret; + }; + + /** + * Returns the Locator representation of the value. + * @throws {ModelConstraintException} If the value is not an Locator + * object. + */ + DatatypeAware.prototype.locatorValue = function () { + if (!(typeof this.value === 'object' && this.value instanceof Locator)) { + throw {name: 'ModelConstraintException', + message: '"' + this.value + '" is not a locator'}; + } + return this.value; + }; + + /** + * Returns the long representation of the value. + */ + DatatypeAware.prototype.longValue = function () { + // FIXME Implement! + }; + + /** + * Sets the value and the datatype. + * @throws {ModelConstraintException} If datatype or value is null. + */ + DatatypeAware.prototype.setValue = function (value, datatype) { + var tm = this.getTopicMap(); + if (datatype === null) { + throw {name: 'ModelConstraintException', message: 'Invalid datatype'}; + } + if (value === null) { + throw {name: 'ModelConstraintException', message: 'Invalid value'}; + } + this.value = value; + this.datatype = datatype || + this.getTopicMap().createLocator(XSD.string); + if (datatype && datatype.getReference() === XSD.anyURI) { + this.value = tm.createLocator(value); + } + if (!datatype) { + if (typeof value === 'number') { + // FIXME Could be XSD.float as well + this.datatype = tm.createLocator(XSD.integer); + } + } + if (typeof value === 'object' && value instanceof Locator) { + this.datatype = tm.createLocator(XSD.anyURI); + } + }; + + // -------------------------------------------------------------------------- + /** + * Constructs a new Topic Map System Factoy. The constructor should not be + * called directly. Use the {TM.TopicMapSystemFactory.newInstance} instead. + * @class Represents a Topic Maps construct. + * @memberOf TM + */ + TopicMapSystemFactory = function () { + this.properties = {}; + this.features = {}; + }; + + /** + * Returns the particular feature requested for in the underlying implementation + * of TopicMapSystem. + */ + TopicMapSystemFactory.prototype.getFeature = function (featureName) { + return this.features; + }; + + /** + * Gets the value of a property in the underlying implementation of + * TopicMapSystem. + */ + TopicMapSystemFactory.prototype.getProperty = function (propertyName) { + return this.properties[propertyName]; + }; + + /** + * Returns if the particular feature is supported by the TopicMapSystem. + */ + TopicMapSystemFactory.prototype.hasFeature = function (featureName) { + return false; + }; + + /** + * Obtain a new instance of a TopicMapSystemFactory. + * @static + * @returns {TopicMapSystemFactory} + */ + TopicMapSystemFactory.newInstance = function () { + return new TopicMapSystemFactory(); + }; + + /** + * Creates a new TopicMapSystem instance using the currently configured + * factory parameters. + */ + TopicMapSystemFactory.prototype.newTopicMapSystem = function () { + var backend = this.properties['com.semanticheadache.tmjs.backend'] || 'memory'; + if (backend === 'memory') { + return new TopicMapSystemMemImpl(); + } + }; + + /** + * Sets a particular feature in the underlying implementation of TopicMapSystem. + */ + TopicMapSystemFactory.prototype.setFeature = function (featureName, enable) { + this.features[featureName] = enable; + }; + + /** + * Sets a property in the underlying implementation of TopicMapSystem. + */ + TopicMapSystemFactory.prototype.setProperty = function (propertyName, value) { + this.properties[propertyName] = value; + }; + + /** + * Creates a new instance of TopicMamSystem. + * @class Implementation of the TopicMapSystem interface. + */ + TopicMapSystemMemImpl = function () { + this.topicmaps = {}; + }; + + /** + * @throws {TopicMapExistsException} If a topic map with the given locator + * already exists. + */ + TopicMapSystemMemImpl.prototype.createTopicMap = function (locator) { + if (this.topicmaps[locator.getReference()]) { + throw {name: 'TopicMapExistsException', + message: 'A topic map under the same IRI already exists'}; + } + var tm = new TopicMap(this, locator); + this.topicmaps[locator.getReference()] = tm; + return tm; + }; + + TopicMapSystemMemImpl.prototype.getLocators = function () { + var locators = [], key; + for (key in this.topicmaps) { + if (this.topicmaps.hasOwnProperty(key)) { + locators.push(this.createLocator(key)); + } + } + return locators; + }; + + TopicMapSystemMemImpl.prototype.getTopicMap = function (locator) { + var tm; + if (locator instanceof Locator) { + tm = this.topicmaps[locator.getReference()]; + } else { + tm = this.topicmaps[locator]; + } + if (!tm) { + return null; + } + return tm; + }; + + /** + * @param {String} iri + */ + TopicMapSystemMemImpl.prototype.createLocator = function (iri) { + return new Locator(this, iri); + }; + + TopicMapSystemMemImpl.prototype.getFeature = function (featureName) { + return false; + }; + + TopicMapSystemMemImpl.prototype._removeTopicMap = function (tm) { + var key; + for (key in this.topicmaps) { + if (this.topicmaps.hasOwnProperty(key) && + key === tm.locator.getReference()) { + delete this.topicmaps[key]; + } + } + }; + + TopicMapSystemMemImpl.prototype.close = function () { + this.topicmaps = null; // release references + }; + + TopicMap = function (tms, locator) { + this.topicmapsystem = tms; + this.itemIdentifiers = []; + this.locator = locator; + this.topics = []; + this.associations = []; + this._constructId = 1; + this._si2topic = new Hash(); // Index for subject identifiers + this._sl2topic = new Hash(); // Index for subject locators + this._ii2construct = new Hash(); // Index for item identifiers + this._id2construct = new Hash(); // Index for object ids + + // The topic map object always get the id 0 + this.id = 0; + this._id2construct.put(this.id, this); + + this.reifier = null; + this.handlers = []; + + // Our own event handling mechanism + var EventHandler = function (eventtype) { + this.eventtype = eventtype; + this.handlers = []; + }; + EventHandler.prototype = { + registerHandler: function (handler) { + this.handlers.push(handler); + }, + removeHandler: function (handler) { + for (var i = 0; i < this.handlers.length; i += 1) { + if (handler.toString() === + this.handlers[i].toString()) { + this.handlers.splice(i, 1); + } + } + }, + fire: function (source, obj) { + obj = obj || {}; + for (var i = 0; i < this.handlers.length; i += 1) { + this.handlers[i](this.eventtype, source, obj); + } + } + }; + this.addAssociationEvent = new EventHandler(EventType.ADD_ASSOCIATION); + this.addNameEvent = new EventHandler(EventType.ADD_NAME); + this.addOccurrenceEvent = new EventHandler(EventType.ADD_OCCURRENCE); + this.addRoleEvent = new EventHandler(EventType.ADD_ROLE); + this.addThemeEvent = new EventHandler(EventType.ADD_THEME); + this.addTopicEvent = new EventHandler(EventType.ADD_TOPIC); + this.addTypeEvent = new EventHandler(EventType.ADD_TYPE); + this.removeAssociationEvent = new EventHandler(EventType.REMOVE_ASSOCIATION); + this.removeNameEvent = new EventHandler(EventType.REMOVE_NAME); + this.removeOccurrenceEvent = new EventHandler(EventType.REMOVE_OCCURRENCE); + this.removeRoleEvent = new EventHandler(EventType.REMOVE_ROLE); + this.removeThemeEvent = new EventHandler(EventType.REMOVE_THEME); + this.removeTopicEvent = new EventHandler(EventType.REMOVE_TOPIC); + this.removeTypeEvent = new EventHandler(EventType.REMOVE_TYPE); + this.setTypeEvent = new EventHandler(EventType.SET_TYPE); + this.typeInstanceIndex = new TypeInstanceIndex(this); + this.scopedIndex = new ScopedIndex(this); + }; + + /** + * @returns {TopicMap} The topic map object itself (for chaining support) + */ + TopicMap.prototype.register_event_handler = function (type, handler) { + switch (type) { + case EventType.ADD_ASSOCIATION: + this.addAssociationEvent.registerHandler(handler); + break; + case EventType.ADD_NAME: + this.addNameEvent.registerHandler(handler); + break; + case EventType.ADD_OCCURRENCE: + this.addOccurrenceEvent.registerHandler(handler); + break; + case EventType.ADD_ROLE: + this.addRoleEvent.registerHandler(handler); + break; + case EventType.ADD_THEME: + this.addThemeEvent.registerHandler(handler); + break; + case EventType.ADD_TOPIC: + this.addTopicEvent.registerHandler(handler); + break; + case EventType.ADD_TYPE: + this.addTypeEvent.registerHandler(handler); + break; + case EventType.REMOVE_ASSOCIATION: + this.removeAssociationEvent.registerHandler(handler); + break; + case EventType.REMOVE_NAME: + this.removeNameEvent.registerHandler(handler); + break; + case EventType.REMOVE_OCCURRENCE: + this.removeOccurrenceEvent.registerHandler(handler); + break; + case EventType.REMOVE_ROLE: + this.removeRoleEvent.registerHandler(handler); + break; + case EventType.REMOVE_THEME: + this.removeThemeEvent.registerHandler(handler); + break; + case EventType.REMOVE_TOPIC: + this.removeTopicEvent.registerHandler(handler); + break; + case EventType.REMOVE_TYPE: + this.removeTypeEvent.registerHandler(handler); + break; + case EventType.SET_TYPE: + this.setTypeEvent.registerHandler(handler); + break; + } + return this; + }; + + TopicMap.swiss(Reifiable, 'getReifier', 'setReifier'); + TopicMap.swiss(Construct, 'addItemIdentifier', 'getItemIdentifiers', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + /** + * Removes duplicate topic map objects. This function is quite expensive, + * so it should not be called too often. It is meant to remove duplicates + * after imports of topic maps. + * @returns {TopicMap} The topic map object itself (for chaining support) + */ + TopicMap.prototype.sanitize = function () { + DuplicateRemover.removeTopicMapDuplicates(this); + TypeInstanceHelper.convertAssociationsToType(this); + return this; + }; + + TopicMap.prototype.isTopicMap = function () { + return true; + }; + + TopicMap.prototype._getConstructId = function () { + this._constructId = this._constructId + 1; + return this._constructId; + }; + + TopicMap.prototype.remove = function () { + if (this.topicmapsystem === null) { + return null; + } + this.topicmapsystem._removeTopicMap(this); + this.topicmapsystem = null; + this.itemIdentifiers = null; + this.locator = null; + this.topics = null; + this.associations = null; + this._si2topic = null; + this._sl2topic = null; + this._ii2construct = null; + this._id2construct = null; + this.reifier = null; + this.id = null; + this.typeInstanceIndex = null; + return null; + }; + + /** + * @throws {ModelConstraintException} If type or scope is null. + */ + TopicMap.prototype.createAssociation = function (type, scope) { + var a; + if (type === null) { + throw {name: 'ModelConstraintException', + message: 'Creating an association with type == null is not allowed'}; + } + if (scope === null) { + throw {name: 'ModelConstraintException', + message: 'Creating an association with scope == null is not allowed'}; + } + SameTopicMapHelper.assertBelongsTo(this, type); + SameTopicMapHelper.assertBelongsTo(this, scope); + + a = new Association(this); + this.associations.push(a); + if (type) { + a.setType(type); + } + addScope(a, scope); + this.addAssociationEvent.fire(a); + return a; + }; + + TopicMap.prototype.createLocator = function (iri) { + return new Locator(this, iri); + }; + + TopicMap.prototype._createEmptyTopic = function () { + var t = new Topic(this); + this.addTopicEvent.fire(t); + this.topics.push(t); + return t; + }; + + TopicMap.prototype.createTopic = function () { + var t = this._createEmptyTopic(); + t.addItemIdentifier(this.createLocator('urn:x-tmjs:' + t.getId())); + return t; + }; + + /** + * @throws {ModelConstraintException} If no itemIdentifier is given. + * @throws {IdentityConstraintException} If another construct with the + * specified item identifier exists which is not a Topic. + */ + TopicMap.prototype.createTopicByItemIdentifier = function (itemIdentifier) { + if (!itemIdentifier) { + throw {name: 'ModelConstraintException', + message: 'createTopicByItemIdentifier() needs an item identifier'}; + } + var t = this.getConstructByItemIdentifier(itemIdentifier); + if (t) { + if (!t.isTopic()) { + throw {name: 'IdentityConstraintException', + message: 'Another construct with the specified item identifier ' + + 'exists which is not a Topic.'}; + } + return t; + } + t = this._createEmptyTopic(); + t.addItemIdentifier(itemIdentifier); + return t; + }; + + /** + * @throws {ModelConstraintException} If no subjectIdentifier is given. + */ + TopicMap.prototype.createTopicBySubjectIdentifier = function (subjectIdentifier) { + if (!subjectIdentifier) { + throw {name: 'ModelConstraintException', + message: 'createTopicBySubjectIdentifier() needs a subject identifier'}; + } + var t = this.getTopicBySubjectIdentifier(subjectIdentifier); + if (t) { + return t; + } + t = this._createEmptyTopic(); + t.addSubjectIdentifier(subjectIdentifier); + return t; + }; + + /** + * @throws {ModelConstraintException} If no subjectLocator is given. + */ + TopicMap.prototype.createTopicBySubjectLocator = function (subjectLocator) { + if (!subjectLocator) { + throw {name: 'ModelConstraintException', + message: 'createTopicBySubjectLocator() needs a subject locator'}; + } + var t = this.getTopicBySubjectLocator(subjectLocator); + if (t) { + return t; + } + t = this._createEmptyTopic(); + t.addSubjectLocator(subjectLocator); + return t; + }; + + TopicMap.prototype.getAssociations = function () { + return this.associations; + }; + + /** + * @throws {ModelConstraintException} If id is null. + */ + TopicMap.prototype.getConstructById = function (id) { + if (id === null) { + throw {name: 'ModelConstraintException', + message: 'getConstructById(null) is illegal'}; + } + var ret = this._id2construct.get(id); + if (!ret) { + return null; + } + return ret; + }; + + /** + * @throws {ModelConstraintException} If itemIdentifier is null. + */ + TopicMap.prototype.getConstructByItemIdentifier = function (itemIdentifier) { + if (itemIdentifier === null) { + throw {name: 'ModelConstraintException', + message: 'getConstructByItemIdentifier(null) is illegal'}; + } + var ret = this._ii2construct.get(itemIdentifier.getReference()); + if (!ret) { + return null; + } + return ret; + }; + + /** + * @throws {UnsupportedOperationException} If the index type is not + * supported. + */ + TopicMap.prototype.getIndex = function (className) { + var index; + if (className === 'TypeInstanceIndex') { + index = this.typeInstanceIndex; + return index; + } else if (className === 'ScopedIndex') { + index = new ScopedIndex(this); + return index; + } + // TODO: Should we throw an exception that indicates that the + // index is not known? Check the TMAPI docs! + throw {name: 'UnsupportedOperationException', + message: 'getIndex ist not (yet) supported'}; + }; + + TopicMap.prototype.getParent = function () { + return null; + }; + + TopicMap.prototype.getTopicBySubjectIdentifier = function (subjectIdentifier) { + var res = this._si2topic.get(subjectIdentifier.getReference()); + if (res) { + return res; + } + return null; // Make sure that the result is not undefined + }; + + TopicMap.prototype.getTopicBySubjectLocator = function (subjectLocator) { + var res = this._sl2topic.get(subjectLocator.getReference()); + if (res) { + return res; + } + return null; // Make sure that the result is not undefined + }; + + TopicMap.prototype.getLocator = function () { + return this.locator; + }; + + TopicMap.prototype.getTopics = function () { + return this.topics; + }; + + TopicMap.prototype.mergeIn = function (topicmap) { + // TODO implement! + throw {name: 'NotImplemented', message: 'TopicMap.mergeIn() not implemented'}; + }; + + TopicMap.prototype.equals = function (topicmap) { + return this.locator.equals(topicmap.locator); + }; + + TopicMap.prototype.getId = function () { + return this.id; + }; + + TopicMap.prototype.getTopicMap = function () { + return this; + }; + + // Remove item identifiers + TopicMap.prototype._removeConstruct = function (construct) { + var iis = construct.getItemIdentifiers(), i; + for (i = 0; i < iis.length; i += 1) { + this._ii2construct.remove(iis[i].getReference()); + } + this._id2construct.remove(construct.getId()); + }; + + TopicMap.prototype._removeTopic = function (topic) { + var i, sis = topic.getSubjectIdentifiers(), + slos = topic.getSubjectLocators(); + // remove subject identifiers from TopicMap._si2topic + for (i = 0; i < sis.length; i += 1) { + this._si2topic.remove(sis[i].getReference()); + } + // remove subject locators from TopicMap._sl2topic + for (i = 0; i < slos.length; i += 1) { + this._sl2topic.remove(slos[i].getReference()); + } + this._removeConstruct(topic); + // remove topic from TopicMap.topics + for (i = 0; i < this.topics.length; i += 1) { + if (topic.id === this.topics[i].id) { + this.topics.splice(i, 1); + break; + } + } + }; + + TopicMap.prototype._removeAssociation = function (association) { + var i; + // remove association from TopicMap.associations + for (i = 0; i < this.associations.length; i += 1) { + if (association.id === this.associations[i].id) { + this.associations.splice(i, 1); + break; + } + } + this._removeConstruct(association); + // remove association from TopicMap.associations + for (i = 0; i < this.associations.length; i += 1) { + if (association.id === this.associations[i].id) { + this.associations.splice(i, 1); + break; + } + } + }; + + TopicMap.prototype._removeRole = function (role) { + this._removeConstruct(role); + }; + + TopicMap.prototype._removeOccurrence = function (occ) { + this._removeConstruct(occ); + }; + + TopicMap.prototype._removeName = function (name) { + this._removeConstruct(name); + }; + + TopicMap.prototype._removeVariant = function (variant) { + this._removeConstruct(variant); + }; + + // hashCode, remove + + // -------------------------------------------------------------------------- + + Topic = function (parnt) { + this.subjectIdentifiers = []; + this.subjectLocators = []; + this.itemIdentifiers = []; + this.parnt = parnt; + this.id = parnt._getConstructId(); + this.getTopicMap()._id2construct.put(this.id, this); + this.types = []; + this.rolesPlayed = []; + this.occurrences = []; + this.names = []; + this.reified = null; + }; + + Topic.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Topic.prototype.isTopic = function () { + return true; + }; + + Topic.prototype.getTopicMap = function () { + return this.parnt; + }; + + /** + * Adds a subject identifier to this topic. + * @throws {ModelConstraintException} If subjectIdentifier is null or + * not defined. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.addSubjectIdentifier = function (subjectIdentifier) { + if (!subjectIdentifier) { + throw {name: 'ModelConstraintException', + message: 'addSubjectIdentifier() needs subject identifier'}; + } + // Ignore if the identifier already exists + for (var i = 0; i < this.subjectIdentifiers.length; i += 1) { + if (this.subjectIdentifiers[i].getReference() === + subjectIdentifier.getReference()) { + return; + } + } + this.subjectIdentifiers.push(subjectIdentifier); + this.parnt._si2topic.put(subjectIdentifier.getReference(), this); + return this; + }; + + /** + * Adds a subject locator to this topic. + * @throws {ModelConstraintException} If subjectLocator is null or + * not defined. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.addSubjectLocator = function (subjectLocator) { + if (!subjectLocator) { + throw {name: 'ModelConstraintException', + message: 'addSubjectLocator() needs subject locator'}; + } + // Ignore if the identifier already exists + for (var i = 0; i < this.subjectLocators.length; i += 1) { + if (this.subjectLocators[i].getReference() === + subjectLocator.getReference()) { + return; + } + } + this.subjectLocators.push(subjectLocator); + this.parnt._sl2topic.put(subjectLocator.getReference(), this); + return this; + }; + + /** + * Adds a type to this topic. + * @throws {ModelConstraintException} If type is null or not defined. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.addType = function (type) { + if (!type) { + throw {name: 'ModelConstraintException', + message: 'addType() needs type'}; + } + SameTopicMapHelper.assertBelongsTo(this.parnt, type); + this.parnt.addTypeEvent.fire(this, {type: type}); + this.types.push(type); + return this; + }; + + // TODO: @type is optional In TMAPI 2.0 + // Creates a Name for this topic with the specified value, and scope. + // Creates a Name for this topic with the specified type, value, and scope. + Topic.prototype.createName = function (value, type, scope) { + var name; + if (type) { + SameTopicMapHelper.assertBelongsTo(this.parnt, type); + } + if (scope) { + SameTopicMapHelper.assertBelongsTo(this.parnt, scope); + } + if (typeof scope === 'undefined') { + scope = null; + } + + name = new Name(this, value, type); + addScope(name, scope); + this.names.push(name); + return name; + }; + + // TODO: @datatype is optional in TMAPI, value may be string or locator. + // Creates an Occurrence for this topic with the specified type, IRI value, and + // scope. + // createOccurrence(Topic type, java.lang.String value, Locator datatype, + // java.util.Collection scope) + // Creates an Occurrence for this topic with the specified type, string value, + // and scope. + Topic.prototype.createOccurrence = function (type, value, datatype, scope) { + var occ; + SameTopicMapHelper.assertBelongsTo(this.parnt, type); + SameTopicMapHelper.assertBelongsTo(this.parnt, scope); + + occ = new Occurrence(this, type, value, datatype); + this.parnt.addOccurrenceEvent.fire(occ, {type: type, value: value}); + addScope(occ, scope); + this.occurrences.push(occ); + return occ; + }; + + /** + * Returns the Names of this topic where the name type is type. + *type is optional. + */ + Topic.prototype.getNames = function (type) { + var ret = [], i; + + for (i = 0; i < this.names.length; i += 1) { + if (type && this.names[i].getType().equals(type)) { + ret.push(this.names[i]); + } else if (!type) { + ret.push(this.names[i]); + } + } + return ret; + }; + + /** + * Returns the Occurrences of this topic where the occurrence type is type. type + * is optional. + * @throws {IllegalArgumentException} If type is null. + */ + Topic.prototype.getOccurrences = function (type) { + var ret = [], i; + if (type === null) { + throw {name: 'IllegalArgumentException', + message: 'Topic.getOccurrences cannot be called without type'}; + } + for (i = 0; i < this.occurrences.length; i += 1) { + if (type && this.occurrences[i].getType().equals(type)) { + ret.push(this.occurrences[i]); + } else if (!type) { + ret.push(this.occurrences[i]); + } + } + return ret; + }; + + Topic.prototype._removeOccurrence = function (occ) { + // remove this from TopicMap.topics + for (var i = 0; i < this.occurrences.length; i += 1) { + if (this.occurrences[i].equals(occ)) { + this.occurrences.splice(i, 1); + break; + } + } + this.getTopicMap()._removeOccurrence(occ); + }; + + // Returns the Construct which is reified by this topic. + Topic.prototype.getReified = function (type) { + return this.reified; + }; + + Topic.prototype._setReified = function (reified) { + this.reified = reified; + }; + + /** + * Returns the roles played by this topic. + * Returns the roles played by this topic where the role type is type. + * assocType is optional + * @throws {IllegalArgumentException} If type or assocType is null. + */ + Topic.prototype.getRolesPlayed = function (type, assocType) { + if (type === null) { + throw {name: 'IllegalArgumentException', + message: 'Topic.getRolesPlayed cannot be called without type'}; + } + if (assocType === null) { + throw {name: 'IllegalArgumentException', + message: 'Topic.getRolesPlayed cannot be called with assocType===null'}; + } + var ret = [], i; + for (i = 0; i < this.rolesPlayed.length; i += 1) { + if (!type) { + ret.push(this.rolesPlayed[i]); + } else if (this.rolesPlayed[i].getType().equals(type)) { + if (assocType && + this.rolesPlayed[i].getParent().getType().equals(assocType) || + !assocType) { + ret.push(this.rolesPlayed[i]); + } + } + } + return ret; + }; + + // @private Registers role as a role played + // TODO: Rename to _addRolePlayed + Topic.prototype.addRolePlayed = function (role) { + this.rolesPlayed.push(role); + }; + + // TODO: Rename to _removeRolePlayed + Topic.prototype.removeRolePlayed = function (role) { + for (var i = 0; i < this.rolesPlayed.length; i += 1) { + if (this.rolesPlayed[i].id === role.id) { + this.rolesPlayed.splice(i, 1); + } + } + }; + + /** + * Returns the subject identifiers assigned to this topic. + */ + Topic.prototype.getSubjectIdentifiers = function () { + return this.subjectIdentifiers; + }; + + /** + * Returns the subject locators assigned to this topic. + */ + Topic.prototype.getSubjectLocators = function () { + return this.subjectLocators; + }; + + /** + * Returns the types of which this topic is an instance of. + */ + Topic.prototype.getTypes = function () { + return this.types; + }; + + /** + * Merges another topic into this topic. + * @throws {ModelConstraintException} If the topics reify different + * information items. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.mergeIn = function (other) { + var arr, i, tmp, tmp2, signatures, tiidx, sidx; + if (this.equals(other)) { + return true; + } + + SameTopicMapHelper.assertBelongsTo(this.getTopicMap(), other); + if (this.getReified() && other.getReified() && + !this.getReified().equals(other.getReified())) { + throw {name: 'ModelConstraintException', + message: 'The topics reify different Topic Maps constructs and cannot be merged!' + }; + } + + if (!this.getReified() && other.getReified()) { + tmp = other.getReified(); + tmp.setReifier(this); + } + + // Change all constructs that use other as type + tiidx = this.parnt.typeInstanceIndex; + MergeHelper.moveTypes(tiidx.getOccurrences(other), this); + MergeHelper.moveTypes(tiidx.getNames(other), this); + MergeHelper.moveTypes(tiidx.getAssociations(other), this); + MergeHelper.moveTypes(tiidx.getRoles(other), this); + + // Change all topics that have other as type + arr = tiidx.getTopics(other); + for (i = 0; i < arr.length; i += 1) { + arr[i].removeType(other); + arr[i].addType(this); + } + + // Change all constructs that use other as theme + sidx = this.parnt.scopedIndex; + MergeHelper.moveThemes(sidx.getAssociations(other), other, this); + MergeHelper.moveThemes(sidx.getOccurrences(other), other, this); + MergeHelper.moveThemes(sidx.getNames(other), other, this); + MergeHelper.moveThemes(sidx.getVariants(other), other, this); + + MergeHelper.moveItemIdentifiers(other, this); + + arr = other.getSubjectLocators(); + while (arr.length) { + tmp = arr[arr.length - 1]; + other.removeSubjectLocator(tmp); + this.addSubjectLocator(tmp); + } + + arr = other.getSubjectIdentifiers(); + while (arr.length) { + tmp = arr[arr.length - 1]; + other.removeSubjectIdentifier(tmp); + this.addSubjectIdentifier(tmp); + } + + arr = other.getTypes(); + while (arr.length) { + tmp = arr[arr.length - 1]; + other.removeType(tmp); + this.addType(tmp); + } + + // merge roles played + arr = this.getRolesPlayed(); + signatures = {}; + for (i = 0; i < arr.length; i += 1) { + tmp2 = arr[i].getParent(); + signatures[SignatureGenerator.makeAssociationSignature(tmp2)] = tmp2; + } + arr = other.getRolesPlayed(); + for (i = 0; i < arr.length; i += 1) { + tmp = arr[i]; + tmp.setPlayer(this); + if ((tmp2 = signatures[SignatureGenerator.makeAssociationSignature(tmp.getParent())])) { + MergeHelper.moveItemIdentifiers(tmp.getParent(), tmp2); + MergeHelper.moveReifier(tmp.getParent(), tmp2); + tmp.getParent().remove(); + } + } + + // merge names + arr = this.getNames(); + signatures = {}; + for (i = 0; i < arr.length; i += 1) { + signatures[SignatureGenerator.makeNameSignature(arr[i])] = arr[i]; + } + arr = other.getNames(); + for (i = 0; i < arr.length; i += 1) { + tmp = arr[i]; + if ((tmp2 = signatures[SignatureGenerator.makeNameSignature(arr[i])])) { + MergeHelper.moveItemIdentifiers(tmp, tmp2); + MergeHelper.moveReifier(tmp, tmp2); + MergeHelper.moveVariants(tmp, tmp2); + tmp.remove(); + } else { + tmp2 = this.createName(tmp.getValue(), tmp.getType(), tmp.getScope()); + MergeHelper.moveVariants(tmp, tmp2); + } + } + + // merge occurrences + arr = this.getOccurrences(); + signatures = {}; + for (i = 0; i < arr.length; i += 1) { + signatures[SignatureGenerator.makeOccurrenceSignature(arr[i])] = arr[i]; + } + arr = other.getOccurrences(); + for (i = 0; i < arr.length; i += 1) { + tmp = arr[i]; + if ((tmp2 = signatures[SignatureGenerator.makeOccurrenceSignature(arr[i])])) { + MergeHelper.moveItemIdentifiers(tmp, tmp2); + MergeHelper.moveReifier(tmp, tmp2); + tmp.remove(); + } else { + tmp2 = this.createOccurrence(tmp.getType(), tmp.getValue(), + tmp.getDatatype(), tmp.getScope()); + MergeHelper.moveReifier(tmp, tmp2); + } + } + + other.remove(); + return this; + }; + + /** + * Removes this topic from the containing TopicMap instance. + * @throws {TopicInUseException} If the topics is used as reifier, + * occurrence type, name type, association type, role type, topic type, + * association theme, occurrence theme, name theme, variant theme, + * or if it is used as a role player. + */ + Topic.prototype.remove = function () { + var tiidx = this.parnt.typeInstanceIndex, + sidx = this.parnt.scopedIndex; + if (this.getReified() || + tiidx.getOccurrences(this).length || + tiidx.getNames(this).length || + tiidx.getAssociations(this).length || + tiidx.getRoles(this).length || + tiidx.getTopics(this).length || + sidx.getAssociations(this).length || + sidx.getOccurrences(this).length || + sidx.getNames(this).length || + sidx.getVariants(this).length || + this.getRolesPlayed().length) { + throw {name: 'TopicInUseException', + message: '', reporter: this}; + } + this.parnt._removeTopic(this); + this.parnt._id2construct.remove(this.id); + this.parnt.removeTopicEvent.fire(this); + this.id = null; + return this.parnt; + }; + + /** + * Removes a subject identifier from this topic. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.removeSubjectIdentifier = function (subjectIdentifier) { + for (var i = 0; i < this.subjectIdentifiers.length; i += 1) { + if (this.subjectIdentifiers[i].getReference() === + subjectIdentifier.getReference()) { + this.subjectIdentifiers.splice(i, 1); + break; + } + } + this.parnt._sl2topic.remove(subjectIdentifier.getReference()); + return this; + }; + + /** + * Removes a subject locator from this topic. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.removeSubjectLocator = function (subjectLocator) { + for (var i = 0; i < this.subjectLocators.length; i += 1) { + if (this.subjectLocators[i].getReference() === + subjectLocator.getReference()) { + this.subjectLocators.splice(i, 1); + break; + } + } + this.parnt._sl2topic.remove(subjectLocator.getReference()); + return this; + }; + + /** + * Removes a type from this topic. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.removeType = function (type) { + for (var i = 0; i < this.types.length; i += 1) { + if (this.types[i].equals(type)) { + this.types.splice(i, 1); + this.parnt.removeTypeEvent.fire(this, {type: type}); + break; + } + } + }; + + Topic.prototype._removeName = function (name) { + for (var i = 0; i < this.names.length; i += 1) { + if (this.names[i].equals(name)) { + this.names.splice(i, 1); + break; + } + } + this.getTopicMap()._removeName(name); + }; + + // -------------------------------------------------------------------------- + Occurrence = function (parnt, type, value, datatype) { + this.itemIdentifiers = []; + this.parnt = parnt; + this.type = type; + this.value = value; + this.datatype = datatype ? datatype : this.getTopicMap().createLocator(XSD.string); + this.scope = []; + this.reifier = null; + this.id = this.getTopicMap()._getConstructId(); + this.getTopicMap()._id2construct.put(this.id, this); + }; + + // mergein Typed, DatatypeAware, Reifiable, Scoped, Construct + Occurrence.swiss(Typed, 'getType', 'setType'); + Occurrence.swiss(DatatypeAware, 'decimalValue', 'floatValue', + 'getDatatype', 'getValue', 'integerValue', 'locatorValue', 'longValue', + 'setValue'); + Occurrence.swiss(Reifiable, 'getReifier', 'setReifier'); + Occurrence.swiss(Scoped, 'addTheme', 'getScope', 'removeTheme'); + Occurrence.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Occurrence.prototype.isOccurrence = function () { + return true; + }; + + Occurrence.prototype.getTopicMap = function () { + return this.parnt.getParent(); + }; + + Occurrence.prototype.remove = function () { + var i; + for (i = 0; i < this.scope.length; i += 1) { + this.parnt.parnt.removeThemeEvent.fire(this, {theme: this.scope[i]}); + } + this.parnt.parnt.removeOccurrenceEvent.fire(this); + this.parnt._removeOccurrence(this); + this.id = null; + return this.parnt; + }; + + Name = function (parnt, value, type) { + this.itemIdentifiers = []; + this.parnt = parnt; + this.value = value; + this.scope = []; + this.id = this.getTopicMap()._getConstructId(); + this.type = type || + parnt.parnt.createTopicBySubjectIdentifier( + parnt.parnt.createLocator('http://psi.topicmaps.org/iso13250/model/topic-name')); + this.reifier = null; + this.variants = []; + this.getTopicMap()._id2construct.put(this.id, this); + this.parnt.parnt.addNameEvent.fire(this, {type: this.type, value: value}); + }; + + // mergein Typed, DatatypeAware, Reifiable, Scoped, Construct + Name.swiss(Typed, 'getType', 'setType'); + Name.swiss(Reifiable, 'getReifier', 'setReifier'); + Name.swiss(Scoped, 'addTheme', 'getScope', 'removeTheme'); + Name.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Name.prototype.isName = function () { + return true; + }; + + Name.prototype.getTopicMap = function () { + return this.parnt.parnt; + }; + + /** + * @throws {ModelConstraintException} If scope is null. + */ + Name.prototype.createVariant = function (value, datatype, scope) { + var scope_length = 0, i, variant; + if (typeof scope === 'undefined' || scope === null) { + throw {name: 'ModelConstraintException', + message: 'Creation of a variant with a null scope is not allowed'}; + } + if (scope && typeof scope === 'object') { + if (scope instanceof Array) { + scope_length = scope.length; + } else if (scope instanceof Topic) { + scope_length = 1; + } + } + /* + TODO: Compare scope of Name and Variant + if (scope_length <= this.getScope().length) { + // check if the variants scope contains more scoping topics + throw {name: 'ModelConstraintException', + message: 'The variant would be in the same scope as the parent'}; + }*/ + variant = new Variant(this, value, datatype); + addScope(variant, scope); + for (i = 0; i < this.scope.length; i += 1) { + this.getTopicMap().addThemeEvent.fire(variant, + {theme: this.scope[i]}); + } + this.variants.push(variant); + return variant; + }; + + /** + * @throws {ModelConstraintException} If value is null. + * @returns {Name} The name itself (for chaining support) + */ + Name.prototype.setValue = function (value) { + if (!value) { + throw {name: 'ModelConstraintException', + message: 'Name.setValue(null) is not allowed'}; + } + this.value = value; + return this; + }; + + Name.prototype.getValue = function (value) { + return this.value; + }; + + Name.prototype.remove = function () { + var i; + for (i = 0; i < this.scope.length; i += 1) { + this.parnt.parnt.removeThemeEvent.fire(this, {theme: this.scope[i]}); + } + this.parnt.parnt.removeNameEvent.fire(this); + this.parnt._removeName(this); + this.id = null; + return this.parnt; + }; + + Name.prototype._removeVariant = function (variant) { + for (var i = 0; i < this.variants.length; i += 1) { + if (this.variants[i].equals(variant)) { + this.variants.splice(i, 1); + break; + } + } + this.getTopicMap()._removeVariant(variant); + }; + + Name.prototype.getVariants = function () { + return this.variants; + }; + + /** + * @throws {ModelConstraintException} If value or datatype is null. + */ + Variant = function (parnt, value, datatype) { + if (value === null) { + throw {name: 'ModelConstraintException', + message: 'Creation of a variant with null value is not allowed'}; + } + if (datatype === null) { + throw {name: 'ModelConstraintException', + message: 'Creation of a variant with datatype == null is not allowed'}; + } + this.itemIdentifiers = []; + this.scope = []; + this.parnt = parnt; + if (typeof value === 'object' && value instanceof Locator) { + this.datatype = this.getTopicMap().createLocator('http://www.w3.org/2001/XMLSchema#anyURI'); + } else { + this.datatype = + this.getTopicMap().createLocator(XSD.string); + } + this.datatype = datatype; + this.reifier = null; + this.value = value; + this.id = this.getTopicMap()._getConstructId(); + this.getTopicMap()._id2construct.put(this.id, this); + }; + + Variant.swiss(Reifiable, 'getReifier', 'setReifier'); + Variant.swiss(Scoped, 'addTheme', 'getScope', 'removeTheme'); + Variant.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + Variant.swiss(DatatypeAware, 'decimalValue', 'floatValue', 'getDatatype', + 'getValue', 'integerValue', 'locatorValue', 'longValue', 'setValue'); + + Variant.prototype.isVariant = function () { + return true; + }; + + Variant.prototype.getTopicMap = function () { + return this.getParent().getParent().getParent(); + }; + + Variant.prototype.remove = function () { + var i; + for (i = 0; i < this.scope.length; i += 1) { + this.getTopicMap().removeThemeEvent.fire(this, {theme: this.scope[i]}); + } + this.getParent()._removeVariant(this); + this.id = null; + return this.parnt; + }; + + + Role = function (parnt, type, player) { + this.itemIdentifiers = []; + this.parnt = parnt; + this.type = type; + this.player = player; + this.id = this.getTopicMap()._getConstructId(); + this.reifier = null; + this.getTopicMap()._id2construct.put(this.id, this); + }; + + Role.swiss(Typed, 'getType', 'setType'); + Role.swiss(Reifiable, 'getReifier', 'setReifier'); + Role.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Role.prototype.isRole = function () { + return true; + }; + + Role.prototype.getTopicMap = function () { + return this.getParent().getParent(); + }; + + Role.prototype.remove = function () { + var parnt = this.parnt; + this.parnt.parnt.removeRoleEvent.fire(this); + this.parnt._removeRole(this); + this.itemIdentifiers = null; + this.parnt = null; + this.type = null; + this.player = null; + this.reifier = null; + this.id = null; + return parnt; + }; + + Role.prototype.getPlayer = function () { + return this.player; + }; + + /** + * @throws {ModelConstraintException} If player is null. + * @returns {Role} The role itself (for chaining support) + */ + Role.prototype.setPlayer = function (player) { + if (!player) { + throw {name: 'ModelConstraintException', + message: 'player i Role.setPlayer cannot be null'}; + } + SameTopicMapHelper.assertBelongsTo(this.parnt.parnt, player); + if (this.player.equals(player)) { + return; + } + this.player.removeRolePlayed(this); + player.addRolePlayed(this); + this.player = player; + return this; + }; + + Association = function (par) { + this.itemIdentifiers = []; + this.parnt = par; + this.id = this.getTopicMap()._getConstructId(); + this.getTopicMap()._id2construct.put(this.id, this); + this.roles = []; + this.scope = []; + this.type = null; + this.reifier = null; + }; + + Association.swiss(Typed, 'getType', 'setType'); + Association.swiss(Reifiable, 'getReifier', 'setReifier'); + Association.swiss(Scoped, 'addTheme', 'getScope', 'removeTheme'); + Association.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Association.prototype.isAssociation = function () { + return true; + }; + + Association.prototype.getTopicMap = function () { + return this.parnt; + }; + + /** + * Creates a new Role representing a role in this association. + * @throws {ModelConstraintException} If type or player is null. + */ + Association.prototype.createRole = function (type, player) { + if (!type) { + throw {name: 'ModelConstraintException', + message: 'type i Role.createPlayer cannot be null'}; + } + if (!player) { + throw {name: 'ModelConstraintException', + message: 'player i Role.createRole cannot be null'}; + } + SameTopicMapHelper.assertBelongsTo(this.parnt, type); + SameTopicMapHelper.assertBelongsTo(this.parnt, player); + var role = new Role(this, type, player); + player.addRolePlayed(role); + this.roles.push(role); + this.parnt.addRoleEvent.fire(role, {type: type, player: player}); + return role; + }; + + Association.prototype._removeRole = function (role) { + for (var i = 0; i < this.roles.length; i += 1) { + if (role.id === this.roles[i].id) { + this.roles.splice(i, 1); + break; + } + } + role.getPlayer().removeRolePlayed(role); + this.getTopicMap()._removeRole(role); + }; + + Association.prototype.remove = function () { + var i; + for (i = 0; i < this.scope.length; i += 1) { + this.parnt.removeThemeEvent.fire(this, {theme: this.scope[i]}); + } + this.parnt.removeAssociationEvent.fire(this); + while (this.roles.length) { + this.roles[0].remove(); + } + this.id = null; + this.roles = null; + this.parnt._removeAssociation(this); + this.getTopicMap()._ii2construct.remove(this.id); + this.item_identifiers = null; + this.scope = null; + this.type = null; + this.reifier = null; + return this.parnt; + }; + + /** + * Returns the roles participating in this association, or, if type + * is given, all roles with the specified type. + * @throws {IllegalArgumentException} If type is null. + */ + Association.prototype.getRoles = function (type) { + if (type === null) { + throw {name: 'IllegalArgumentException', + message: 'Topic.getRoles cannot be called with type null'}; + } + if (!type) { + return this.roles; + } + var ret = [], i; + for (i = 0; i < this.roles.length; i += 1) { + if (this.roles[i].getType().equals(type)) { + ret.push(this.roles[i]); + } + } + return ret; + }; + + /** + * Returns the role types participating in this association. + */ + Association.prototype.getRoleTypes = function () { + // Create a hash with the object ids as keys to avoid duplicates + var types = {}, typearr = [], i, t; + for (i = 0; i < this.roles.length; i += 1) { + types[this.roles[i].getType().getId()] = + this.roles[i].getType(); + } + for (t in types) { + if (types.hasOwnProperty(t)) { + typearr.push(types[t]); + } + } + return typearr; + }; + + // ------ ---------------------------------------------------------------- + /** @class */ + Index = function () { + this.opened = false; + }; + + /** + * Close the index. + */ + Index.prototype.close = function () { + return; + }; + + /** + * Indicates whether the index is updated automatically. + * @returns {boolean} + */ + Index.prototype.isAutoUpdated = function () { + return true; + }; + + /** Indicates if the index is open. + * @returns {boolean} true if index is already opened, false otherwise. + */ + Index.prototype.isOpen = function () { + return this.opened; + }; + + /** + * Opens the index. This method must be invoked before using any other + * method (aside from isOpen()) exported by this interface or derived + * interfaces. + */ + Index.prototype.open = function () { + this.opened = true; + }; + + /** + * Synchronizes the index with data in the topic map. + */ + Index.prototype.reindex = function () { + return; + }; + + /** + * Creates a new instance of TypeInstanceIndex. + * @class Implementation of the TypeInstanceIndex interface. + */ + TypeInstanceIndex = function (tm) { + var eventHandler, that = this; + this.tm = tm; + // we use hash tables of hash tables for our index + this.type2topics = new Hash(); + this.type2associations = new Hash(); + this.type2roles = new Hash(); + this.type2occurrences = new Hash(); + this.type2names = new Hash(); + this.type2variants = new Hash(); + this.opened = false; + + eventHandler = function (eventtype, source, obj) { + var existing, untyped, types, type, i; + switch (eventtype) { + case EventType.ADD_ASSOCIATION: + break; + case EventType.ADD_NAME: + existing = that.type2names.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2names.put(obj.type.getId(), existing); + break; + case EventType.ADD_OCCURRENCE: + existing = that.type2occurrences.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2occurrences.put(obj.type.getId(), existing); + break; + case EventType.ADD_ROLE: + existing = that.type2roles.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2roles.put(obj.type.getId(), existing); + break; + case EventType.ADD_TOPIC: + existing = that.type2topics.get('null'); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2topics.put('null', existing); + break; + case EventType.ADD_TYPE: + // check if source exists with type null, remove it there + untyped = that.type2topics.get('null'); + if (untyped && untyped.get(source.getId())) { + untyped.remove(source.getId()); + that.type2topics.put('null', untyped); + } + + existing = that.type2topics.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2topics.put(obj.type.getId(), existing); + break; + case EventType.REMOVE_ASSOCIATION: + type = source.getType(); + if (!type) { + break; + } + existing = that.type2associations.get(type.getId()); + for (i = 0; i < existing.length; i += 1) { + if (existing[i].equals(source)) { + existing.splice(i, 1); + break; + } + } + if (existing.length > 0) { + that.type2associations.put(type.getId(), + existing); + } else { + that.type2associations.remove(type.getId()); + } + break; + case EventType.REMOVE_NAME: + type = source.getType(); + existing = that.type2names.get(type.getId()); + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2names.put(type.getId(), existing); + } else { + that.type2names.remove(type.getId()); + } + break; + case EventType.REMOVE_OCCURRENCE: + type = source.getType(); + existing = that.type2occurrences.get(type.getId()); + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2occurrences.put(type.getId(), existing); + } else { + that.type2occurrences.remove(type.getId()); + } + break; + case EventType.REMOVE_ROLE: + type = source.getType(); + existing = that.type2roles.get(type.getId()); + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2roles.put(type.getId(), existing); + } else { + that.type2roles.remove(type.getId()); + } + break; + case EventType.REMOVE_TOPIC: + // two cases: + // topic has types + types = source.getTypes(); + for (i = 0; i < types.length; i += 1) { + existing = that.type2topics.get(types[i].getId()); + existing.remove(source.getId()); + if (!existing.size()) { + that.type2topics.remove(types[i].getId()); + } + } + // topic used as type + that.type2topics.remove(source.getId()); + that.type2associations.remove(source.getId()); + that.type2roles.remove(source.getId()); + that.type2occurrences.remove(source.getId()); + that.type2variants.remove(source.getId()); + break; + case EventType.REMOVE_TYPE: + existing = that.type2topics.get(obj.type.getId()); + existing.remove(source.getId()); + if (!existing.size()) { + that.type2topics.remove(obj.type.getId()); + } + if (source.getTypes().length === 0) { + untyped = that.type2topics.get('null'); + if (typeof untyped === 'undefined') { + untyped = new Hash(); + } + untyped.put(source.getId(), source); + } + break; + case EventType.SET_TYPE: + if (source.isAssociation()) { + // remove source from type2associations(obj.old.getId()); + if (obj.old) { + existing = that.type2associations.get(obj.old.getId()); + for (i = 0; i < existing.length; i += 1) { + if (existing[i].equals(source)) { + existing.splice(i, 1); + break; + } + } + if (existing.length > 0) { + that.type2associations.put(obj.old.getId(), + existing); + } else { + that.type2associations.remove(obj.old.getId()); + } + } + existing = that.type2associations.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = []; + } + existing.push(source); + that.type2associations.put(obj.type.getId(), existing); + } else if (source.isName()) { + existing = that.type2names.get(obj.old.getId()); + if (existing) { + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2names.put(obj.old.getId(), existing); + } else { + that.type2names.remove(obj.old.getId()); + } + } + existing = that.type2names.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2names.put(obj.type.getId(), existing); + } else if (source.isOccurrence()) { + existing = that.type2occurrences.get(obj.old.getId()); + if (existing) { + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2occurrences.put(obj.old.getId(), existing); + } else { + that.type2occurrences.remove(obj.old.getId()); + } + } + existing = that.type2occurrences.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2occurrences.put(obj.type.getId(), existing); + } else if (source.isRole()) { + existing = that.type2roles.get(obj.old.getId()); + if (existing) { + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2roles.put(obj.old.getId(), existing); + } else { + that.type2roles.remove(obj.old.getId()); + } + } + existing = that.type2roles.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2roles.put(obj.type.getId(), existing); + } + break; + } + }; + tm.addAssociationEvent.registerHandler(eventHandler); + tm.addNameEvent.registerHandler(eventHandler); + tm.addOccurrenceEvent.registerHandler(eventHandler); + tm.addRoleEvent.registerHandler(eventHandler); + tm.addTopicEvent.registerHandler(eventHandler); + tm.addTypeEvent.registerHandler(eventHandler); + tm.removeAssociationEvent.registerHandler(eventHandler); + tm.removeNameEvent.registerHandler(eventHandler); + tm.removeOccurrenceEvent.registerHandler(eventHandler); + tm.removeRoleEvent.registerHandler(eventHandler); + tm.removeTopicEvent.registerHandler(eventHandler); + tm.removeTypeEvent.registerHandler(eventHandler); + tm.setTypeEvent.registerHandler(eventHandler); + }; + + TypeInstanceIndex.swiss(Index, 'close', 'isAutoUpdated', + 'isOpen', 'open', 'reindex'); + + /** + * Returns the associations in the topic map whose type property equals type. + * + * @param {Topic} type + * @returns {Array} A list of all associations in the topic map with the given type. + */ + TypeInstanceIndex.prototype.getAssociations = function (type) { + var ret = this.type2associations.get(type.getId()); + if (!ret) { + return []; + } + return ret; + }; + + /** + * Returns the topics in the topic map used in the type property of Associations. + * + * @returns {Array} A list of all topics that are used as an association type. + */ + TypeInstanceIndex.prototype.getAssociationTypes = function () { + var ret = [], keys = this.type2associations.keys(), i; + for (i = 0; i < keys.length; i += 1) { + ret.push(this.tm.getConstructById(keys[i])); + } + return ret; + }; + + /** + * Returns the topic names in the topic map whose type property equals type. + * + * @param {Topic} type + * @returns {Array} + */ + TypeInstanceIndex.prototype.getNames = function (type) { + var ret = this.type2names.get(type.getId()); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the topics in the topic map used in the type property of Names. + * + * @returns {Array} An array of topic types. Note that the array contains + * a reference to the actual topics, not copies of them. + */ + TypeInstanceIndex.prototype.getNameTypes = function () { + var ret = [], keys = this.type2names.keys(), i; + for (i = 0; i < keys.length; i += 1) { + ret.push(this.tm.getConstructById(keys[i])); + } + return ret; + }; + + /** + * Returns the occurrences in the topic map whose type property equals type. + * + * @returns {Array} + */ + TypeInstanceIndex.prototype.getOccurrences = function (type) { + var ret = this.type2occurrences.get(type.getId()); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the topics in the topic map used in the type property of + * Occurrences. + * + * @returns {Array} An array of topic types. Note that the array contains + * a reference to the actual topics, not copies of them. + */ + TypeInstanceIndex.prototype.getOccurrenceTypes = function () { + var ret = [], keys = this.type2occurrences.keys(), i; + for (i = 0; i < keys.length; i += 1) { + ret.push(this.tm.getConstructById(keys[i])); + } + return ret; + }; + + + /** + * Returns the roles in the topic map whose type property equals type. + * + * @returns {Array} + */ + TypeInstanceIndex.prototype.getRoles = function (type) { + var ret = this.type2roles.get(type.getId()); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the topics in the topic map used in the type property of Roles. + * + * @returns {Array} An array of topic types. Note that the array contains + * a reference to the actual topics, not copies of them. + */ + TypeInstanceIndex.prototype.getRoleTypes = function () { + var ret = [], keys = this.type2roles.keys(), i; + for (i = 0; i < keys.length; i += 1) { + ret.push(this.tm.getConstructById(keys[i])); + } + return ret; + }; + + /** + * Returns the topics which are an instance of the specified type. + */ + TypeInstanceIndex.prototype.getTopics = function (type) { + var ret = this.type2topics.get((type ? type.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the topics which are an instance of the specified types. + * If matchall is true only topics that have all of the listed types + * are returned. + * @returns {Array} A list of Topic objects + */ + TypeInstanceIndex.prototype.getTopicsByTypes = function (types, matchall) { + var instances, i, j; + instances = IndexHelper.getForKeys(this.type2topics, types); + if (!matchall) { + return instances; + } + // If matchall is true, we check all values for all types in {types} + // It's a hack, but will do for now + for (i = 0; i < instances.length; i += 1) { + for (j = 0; j < types.length; j += 1) { + if (!ArrayHelper.contains(instances[i].getTypes(), types[j])) { + instances.splice(i, 1); + i -= 1; + break; + } + } + } + return instances; + }; + + /** + * Returns the topics in topic map which are used as type in an + * "type-instance"-relationship. + */ + TypeInstanceIndex.prototype.getTopicTypes = function () { + var ret = [], keys = this.type2topics.keys(), i; + for (i = 0; i < keys.length; i += 1) { + if (keys[i] !== 'null') { + ret.push(this.tm.getConstructById(keys[i])); + } + } + return ret; + }; + + TypeInstanceIndex.prototype.close = function () { + return; + }; + + + /** + * Index for Scoped statements and their scope. This index provides access + * to Associations, Occurrences, Names, and Variants by their scope + * property and to Topics which are used as theme in a scope. + */ + ScopedIndex = function (tm) { + var that = this, eventHandler; + this.tm = tm; + this.theme2associations = new Hash(); + this.theme2names = new Hash(); + this.theme2occurrences = new Hash(); + this.theme2variants = new Hash(); + eventHandler = function (eventtype, source, obj) { + var existing, key, unscoped, remove_from_index, add_to_index; + add_to_index = function (hash, source, obj) { + key = (obj.theme ? obj.theme.getId() : 'null'); + + // check if source exists with theme null, remove it there + // this is the case iff source now has one scoping topic + if (source.getScope().length === 1) { + unscoped = hash.get('null'); + if (unscoped && unscoped.get(source.getId())) { + unscoped.remove(source.getId()); + hash.put('null', unscoped); + } + } + existing = hash.get(key); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + hash.put(key, existing); + }; + remove_from_index = function (hash, source, obj) { + key = obj.theme.getId(); + existing = hash.get(key); + if (typeof existing !== 'undefined') { + existing.remove(source.getId()); + if (!existing.size()) { + hash.remove(key); + } + } + }; + switch (eventtype) { + case EventType.ADD_THEME: + if (source.isAssociation()) { + add_to_index(that.theme2associations, source, obj); + } else if (source.isName()) { + add_to_index(that.theme2names, source, obj); + } else if (source.isOccurrence()) { + add_to_index(that.theme2occurrences, source, obj); + } else if (source.isVariant()) { + add_to_index(that.theme2variants, source, obj); + } + break; + case EventType.REMOVE_THEME: + if (source.isAssociation()) { + remove_from_index(that.theme2associations, source, obj); + } else if (source.isName()) { + remove_from_index(that.theme2names, source, obj); + } else if (source.isOccurrence()) { + remove_from_index(that.theme2occurrences, source, obj); + } else if (source.isVariant()) { + remove_from_index(that.theme2variants, source, obj); + } + break; + } + }; + tm.addThemeEvent.registerHandler(eventHandler); + tm.removeThemeEvent.registerHandler(eventHandler); + }; + + ScopedIndex.swiss(Index, 'close', 'isAutoUpdated', + 'isOpen', 'open', 'reindex'); + + ScopedIndex.prototype.close = function () { + return; + }; + + /** + * Returns the Associations in the topic map whose scope property contains + * the specified theme. The return value may be empty but must never be null. + * @param theme can be array or {Topic} + * @param [matchall] boolean + */ + ScopedIndex.prototype.getAssociations = function (theme) { + var ret = this.theme2associations.get((theme ? theme.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the Associations in the topic map whose scope property contains + * the specified theme. The return value may be empty but must never be null. + * @param theme can be array or {Topic} + * @param [matchall] boolean + * @throws {IllegalArgumentException} If themes is null. + */ + ScopedIndex.prototype.getAssociationsByThemes = function (themes, matchall) { + if (themes === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getAssociationsByThemes cannot be called without themes'}; + } + return IndexHelper.getConstructsByThemes(this.theme2associations, + themes, matchall); + }; + + /** + * Returns the topics in the topic map used in the scope property of + * Associations. + */ + ScopedIndex.prototype.getAssociationThemes = function () { + return IndexHelper.getConstructThemes(this.tm, this.theme2associations); + }; + + /** + * Returns the Names in the topic map whose scope property contains the + * specified theme. + */ + ScopedIndex.prototype.getNames = function (theme) { + var ret = this.theme2names.get((theme ? theme.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the Names in the topic map whose scope property equals one of + * those themes at least. + * @throws {IllegalArgumentException} If themes is null. + */ + ScopedIndex.prototype.getNamesByThemes = function (themes, matchall) { + if (themes === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getNamesByThemes cannot be called without themes'}; + } + return IndexHelper.getConstructsByThemes(this.theme2names, + themes, matchall); + }; + + /** + * Returns the topics in the topic map used in the scope property of Names. + */ + ScopedIndex.prototype.getNameThemes = function () { + return IndexHelper.getConstructThemes(this.tm, this.theme2names); + }; + + /** + * Returns the Occurrences in the topic map whose scope property contains the + * specified theme. + */ + ScopedIndex.prototype.getOccurrences = function (theme) { + var ret = this.theme2occurrences.get((theme ? theme.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the Occurrences in the topic map whose scope property equals one + * of those themes at least. + * @throws {IllegalArgumentException} If themes is null. + */ + ScopedIndex.prototype.getOccurrencesByThemes = function (themes, matchall) { + if (themes === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getOccurrencesByThemes cannot be called without themes'}; + } + return IndexHelper.getConstructsByThemes(this.theme2occurrences, + themes, matchall); + }; + + /** + * Returns the topics in the topic map used in the scope property of + * Occurrences. + */ + ScopedIndex.prototype.getOccurrenceThemes = function () { + return IndexHelper.getConstructThemes(this.tm, this.theme2occurrences); + }; + + /** + * Returns the Variants in the topic map whose scope property contains the + * specified theme. The return value may be empty but must never be null. + * @param {Topic} The Topic which must be part of the scope. This must not be + * null. + * @returns {Array} An array of Variants. + * @throws {IllegalArgumentException} If theme is null. + */ + ScopedIndex.prototype.getVariants = function (theme) { + if (theme === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getVariants cannot be called without themes'}; + } + var ret = this.theme2variants.get((theme ? theme.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the Variants in the topic map whose scope property equals one of + * those themes at least. + * @param {Array} themes Scope of the Variants to be returned. + * @param {boolean} If true the scope property of a variant must match all + * themes, if false one theme must be matched at least. + * @returns {Array} An array of variants + * @throws {IllegalArgumentException} If themes is null. + */ + ScopedIndex.prototype.getVariantsByThemes = function (themes, matchall) { + if (themes === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getVariantsByThemes cannot be called without themes'}; + } + return IndexHelper.getConstructsByThemes(this.theme2variants, + themes, matchall); + }; + + /** + * Returns the topics in the topic map used in the scope property of Variants. + * The return value may be empty but must never be null. + * @returns {Array} An array of Topics. + */ + ScopedIndex.prototype.getVariantThemes = function () { + return IndexHelper.getConstructThemes(this.tm, this.theme2variants); + }; + + + + + /** + * @class Helper class that is used to check if constructs belong to + * a given topic map. + */ + SameTopicMapHelper = { + /** + * Checks if topic belongs to the topicmap 'topicmap'. + * topic can be instance of Topic or an Array with topics. + * topic map be null. + * @static + * @throws ModelConstraintException if the topic(s) don't + * belong to the same topic map. + * @returns false if the topic was null or true otherwise. + */ + assertBelongsTo: function (topicmap, topic) { + var i; + if (!topic) { + return false; + } + if (topic && topic instanceof Topic && + !topicmap.equals(topic.getTopicMap())) { + throw {name: 'ModelConstraintException', + message: 'scope topic belongs to different topic map'}; + } + if (topic && topic instanceof Array) { + for (i = 0; i < topic.length; i += 1) { + if (!topicmap.equals(topic[i].getTopicMap())) { + throw {name: 'ModelConstraintException', + message: 'scope topic belong to different topic maps'}; + } + } + } + return true; + } + }; + + /** + * Helper functions for hashes of hashes + * @ignore + */ + IndexHelper = { + getForKeys: function (hash, keys) { + var i, j, tmp = new Hash(), value_hash, value_keys; + for (i = 0; i < keys.length; i += 1) { + value_hash = hash.get(keys[i].getId()); + if (value_hash) { + value_keys = value_hash.keys(); + // we use a hash to store instances to avoid duplicates + for (j = 0; j < value_keys.length; j += 1) { + tmp.put(value_hash.get(value_keys[j]).getId(), + value_hash.get(value_keys[j])); + } + } + } + return tmp.values(); + }, + + getConstructThemes: function (tm, hash) { + var ret = [], keys = hash.keys(), i; + for (i = 0; i < keys.length; i += 1) { + if (keys[i] !== 'null') { + ret.push(tm.getConstructById(keys[i])); + } + } + return ret; + }, + + getConstructsByThemes: function (hash, themes, matchall) { + var constructs, i, j; + constructs = IndexHelper.getForKeys(hash, themes); + if (!matchall) { + return constructs; + } + // If matchall is true, we check all values for all types in {types} + // It's a hack, but will do for now + for (i = 0; i < constructs.length; i += 1) { + for (j = 0; j < themes.length; j += 1) { + if (!ArrayHelper.contains(constructs[i].getScope(), themes[j])) { + constructs.splice(i, 1); + i -= 1; + break; + } + } + } + return constructs; + } + }; + + /** + * Helper functions for arrays. We don't modify the global array + * object to avoid conflicts with other libraries. + * @ignore + */ + ArrayHelper = { + /** Checks if arr contains elem */ + contains: function (arr, elem) { + for (var key in arr) { + if (arr.hasOwnProperty(key)) { + if (arr[key].equals(elem)) { + return true; + } + } + } + return false; + } + }; + + /** + * Internal function to add scope. scope may be Array, Topic or null. + * @ignore + * FIXME: Move to a class + */ + addScope = function (construct, scope) { + var i; + if (scope && typeof scope === 'object') { + if (scope instanceof Array) { + for (i = 0; i < scope.length; i += 1) { + construct.addTheme(scope[i]); + } + } else if (scope instanceof Topic) { + construct.addTheme(scope); + } + } else { + construct.getTopicMap().addThemeEvent.fire(construct, {theme: null}); + } + }; + + /** + * Helper class for generating signatures of Topic Maps constructs. + */ + SignatureGenerator = { + makeNameValueSignature: function (name) { + return name.getValue(); + }, + + makeNameSignature: function (name) { + return SignatureGenerator.makeNameValueSignature(name) + + '#' + SignatureGenerator.makeTypeSignature(name) + + '#' + SignatureGenerator.makeScopeSignature(name); + }, + + makeOccurrenceSignature: function (occ) { + return SignatureGenerator.makeOccurrenceValueSignature(occ) + + '#' + SignatureGenerator.makeTypeSignature(occ) + + '#' + SignatureGenerator.makeScopeSignature(occ); + }, + + makeOccurrenceValueSignature: function (occ) { + return '#' + occ.getValue() + '#' + + (occ.getDatatype() ? occ.getDatatype().getReference() : 'null'); + }, + + makeTypeSignature: function (obj) { + var type = obj.getType(); + if (type) { + return type.getId(); + } else { + return ''; + } + }, + + makeScopeSignature: function (scope) { + var i, arr = []; + for (i = 0; i < scope.length; i += 1) { + arr.push(scope[i].getId()); + } + arr.sort(); + return arr.join('#'); + }, + + makeAssociationSignature: function (ass) { + var roles, i, tmp = []; + roles = ass.getRoles(); + for (i = 0; i < roles.length; i += 1) { + tmp.push(SignatureGenerator.makeRoleSignature(roles[i])); + } + tmp.sort(); + + return '#' + SignatureGenerator.makeTypeSignature(ass) + '#' + tmp.join('#') + + SignatureGenerator.makeScopeSignature(ass); + }, + + makeRoleSignature: function (role) { + return SignatureGenerator.makeTypeSignature(role) + '#' + + role.getPlayer().getId(); + }, + + makeVariantValueSignature: function (variant) { + return '#' + variant.getValue() + '#' + variant.getDatatype().getReference(); + }, + + makeVariantSignature: function (variant) { + return SignatureGenerator.makeVariantValueSignature(variant) + + '#' + SignatureGenerator.makeScopeSignature(variant); + } + }; + + /** + * Utility class that removes duplicates according to the TMDM. + */ + DuplicateRemover = { + removeTopicMapDuplicates: function (tm) { + var i, topics, associations, sig2ass = new Hash(), sig, existing; + topics = tm.getTopics(); + for (i = 0; i < topics.length; i += 1) { + DuplicateRemover.removeOccurrencesDuplicates(topics[i].getOccurrences()); + DuplicateRemover.removeNamesDuplicates(topics[i].getNames()); + } + associations = tm.getAssociations(); + for (i = 0; i < associations.length; i += 1) { + DuplicateRemover.removeAssociationDuplicates(associations[i]); + sig = SignatureGenerator.makeAssociationSignature(associations[i]); + if ((existing = sig2ass.get(sig))) { + MergeHelper.moveConstructCharacteristics(associations[i], existing); + MergeHelper.moveRoleCharacteristics(associations[i], existing); + associations[i].remove(); + } else { + sig2ass.put(sig, associations[i]); + } + } + sig2ass.empty(); + }, + + removeOccurrencesDuplicates: function (occurrences) { + var i, sig2occ = new Hash(), occ, sig, existing; + for (i = 0; i < occurrences.length; i += 1) { + occ = occurrences[i]; + sig = SignatureGenerator.makeOccurrenceSignature(occ); + if ((existing = sig2occ.get(sig))) { + MergeHelper.moveConstructCharacteristics(occ, existing); + occ.remove(); + } else { + sig2occ.put(sig, occ); + } + } + sig2occ.empty(); + }, + + removeNamesDuplicates: function (names) { + var i, sig2names = new Hash(), name, sig, existing; + for (i = 0; i < names.length; i += 1) { + name = names[i]; + DuplicateRemover.removeVariantsDuplicates(name.getVariants()); + sig = SignatureGenerator.makeNameSignature(name); + if ((existing = sig2names.get(sig))) { + MergeHelper.moveConstructCharacteristics(name, existing); + MergeHelper.moveVariants(name, existing); + name.remove(); + } else { + sig2names.put(sig, name); + } + } + sig2names.empty(); + }, + + removeVariantsDuplicates: function (variants) { + var i, sig2variants = new Hash(), variant, sig, existing; + for (i = 0; i < variants.length; i += 1) { + variant = variants[i]; + sig = SignatureGenerator.makeVariantSignature(variant); + if ((existing = sig2variants.get(sig))) { + MergeHelper.moveConstructCharacteristics(variant, existing); + variant.remove(); + } else { + sig2variants.put(sig, variant); + } + } + sig2variants.empty(); + }, + + removeAssociationDuplicates: function (assoc) { + var i, roles = assoc.getRoles(), sig2role = new Hash(), sig, existing; + for (i = 0; i < roles.length; i += 1) { + sig = SignatureGenerator.makeRoleSignature(roles[i]); + if ((existing = sig2role.get(sig))) { + MergeHelper.moveConstructCharacteristics(roles[i], existing); + roles[i].remove(); + } else { + sig2role.put(sig, roles[i]); + } + } + } + }; + + MergeHelper = { + moveTypes: function (arr, target) { + var i; + for (i = 0; i < arr.length; i += 1) { + arr[i].setType(target); + } + }, + + moveThemes: function (arr, source, target) { + for (var i = 0; i < arr.length; i += 1) { + arr[i].removeTheme(source); + arr[i].addTheme(target); + } + }, + + moveItemIdentifiers: function (source, target) { + var iis, ii; + iis = source.getItemIdentifiers(); + while (iis.length) { + ii = iis[iis.length - 1]; + source.removeItemIdentifier(ii); + target.addItemIdentifier(ii); + } + }, + + /** + * Moves variants from the name source to the name target + */ + moveVariants: function (source, target) { + var arr, i, tmp, tmp2, signatures; + arr = target.getVariants(); + signatures = {}; + for (i = 0; i < arr.length; i += 1) { + signatures[SignatureGenerator.makeVariantSignature(arr[i])] = arr[i]; + } + arr = source.getVariants(); + for (i = 0; i < arr.length; i += 1) { + tmp = arr[i]; + if ((tmp2 = signatures[SignatureGenerator.makeVariantSignature(arr[i])])) { + MergeHelper.moveItemIdentifiers(tmp, tmp2); + MergeHelper.moveReifier(tmp, tmp2); + tmp.remove(); + } else { + target.createVariant(tmp.getValue(), tmp.getDatatype(), tmp.getScope()); + } + } + }, + + moveReifier: function (source, target) { + var r1, r2; + if (source.getReifier() === null) { + return; + } else if (target.getReifier() === null) { + target.setReifier(source.getReifier()); + } else { + r1 = source.getReifier(); + r2 = target.getReifier(); + source.setReifier(null); + r1.mergeIn(r2); + } + }, + + moveRoleCharacteristics: function (source, target) { + var i, roles, sigs = new Hash(); + roles = target.getRoles(); + for (i = 0; i < roles.length; i += 1) { + sigs.put(roles[i], SignatureGenerator.makeRoleSignature(roles[i])); + } + roles = source.getRoles(); + for (i = 0; i < roles.length; i += 1) { + MergeHelper.moveItemIdentifiers(roles[i], + sigs.get(SignatureGenerator.makeRoleSignature(roles[i]))); + roles[i].remove(); + } + }, + + moveConstructCharacteristics: function (source, target) { + MergeHelper.moveReifier(source, target); + MergeHelper.moveItemIdentifiers(source, target); + } + }; + + CopyHelper = { + copyAssociations: function (source, target, mergeMap) { + }, + copyItemIdentifiers: function (source, target) { + }, + copyReifier: function (source, target, mergeMap) { + }, + copyScope: function (source, target, mergeMap) { + }, + copyTopicMap: function (source, target) { + }, + copyTopic: function (sourcetm, targettm, mergeMap) { + }, + copyType: function (source, target, mergeMap) { + } + }; + + TypeInstanceHelper = { + convertAssociationsToType: function (tm) { + var typeInstance, type, instance, associations, index, i, ass, roles; + typeInstance = tm.getTopicBySubjectIdentifier( + tm.createLocator(TMDM.TYPE_INSTANCE)); + type = tm.getTopicBySubjectIdentifier( + tm.createLocator(TMDM.TYPE)); + instance = tm.getTopicBySubjectIdentifier( + tm.createLocator(TMDM.INSTANCE)); + if (!typeInstance || !type || !instance) { + return; + } + index = tm.getIndex('TypeInstanceIndex'); + if (!index) { + return; + } + if (!index.isAutoUpdated()) { + index.reindex(); + } + associations = index.getAssociations(typeInstance); + for (i = 0; i < associations.length; i += 1) { + ass = associations[i]; + if (ass.getScope().length > 0 || + ass.getReifier() !== null || + ass.getItemIdentifiers().length > 0) { + continue; + } + roles = ass.getRoles(); + if (roles.length !== 2) { + continue; + } + if (roles[0].getType().equals(type) && roles[1].getType().equals(instance)) { + roles[1].getPlayer().addType(roles[0].getPlayer()); + } else + if (roles[1].getType().equals(type) && roles[0].getType().equals(instance)) { + roles[0].getPlayer().addType(roles[1].getPlayer()); + } else { + continue; + } + ass.remove(); + } + } + }; + + // Export objects into the TM namespace + return { + TopicMapSystemFactory: TopicMapSystemFactory, + XSD: XSD, + TMDM: TMDM, + Hash: Hash, // needed by CXTM export + Version: Version + }; +}()); + +// Pollute the global namespace +TopicMapSystemFactory = TM.TopicMapSystemFactory; + +// Check if we are in a CommonJS environment (e.g. node.js) +if (typeof exports === 'object' && exports !== null) { + exports.TopicMapSystemFactory = TopicMapSystemFactory; + exports.TM = TM; +} + +/*jslint browser: true, devel: true, onevar: true, undef: true, nomen: false, eqeqeq: true, plusplus: true, bitwise: true, + regexp: true, newcap: true, immed: true, indent: 4 */ +/*global TM, window, DOMParser, ActiveXObject*/ + +TM.JTM = (function () { + var ReaderImpl, WriterImpl; + + ReaderImpl = function (tm) { + var that = this; + this.tm = tm; + this.version = null; // Keep the JTM version number + this.prefixes = {}; + this.defaultDatatype = this.tm.createLocator(TM.XSD.string); + + this.curieToLocator = function (loc) { + var curie, prefix, pos; + if (that.version === '1.1' && + loc.substr(0, 1) === '[') { + if (loc.substr(loc.length - 1, 1) !== ']') { + throw {name: 'InvalidFormat', + message: 'Invaild CURIE: missing tailing bracket'}; + } + curie = loc.substr(1, loc.length - 2); + pos = curie.indexOf(':'); + if (pos !== -1) { + // Lookup prefix and replace with URL + prefix = curie.substr(0, pos); + if (that.prefixes[prefix]) { + loc = that.prefixes[prefix] + + curie.substr(pos + 1, curie.length - 1); + return loc; + } else { + throw {name: 'InvalidFormat', + message: 'Missing prefix declaration: ' + prefix}; + } + } else { + throw {name: 'InvalidFormat', + message: 'Invaild CURIE: missing colon'}; + } + } + return loc; + }; + + /** + * Internal function that takes a JTM-identifier string as a parameter + * and returns a topic object - either an existing topic or a new topic + * if the requested topic did not exist + * @param {String} locator JTM-identifier + * @throws {InvalidFormat} If the locator could not be parsed. + */ + this.getTopicByReference = function (locator) { + if (typeof locator === 'undefined' || locator === null) { + return null; + } + switch (locator.substr(0, 3)) { + case 'si:' : + return this.tm.createTopicBySubjectIdentifier( + this.tm.createLocator(this.curieToLocator(locator.substr(3)))); + case 'sl:' : + return this.tm.createTopicBySubjectLocator( + this.tm.createLocator(this.curieToLocator(locator.substr(3)))); + case 'ii:' : + return this.tm.createTopicByItemIdentifier( + this.tm.createLocator(this.curieToLocator(locator.substr(3)))); + } + throw {name: 'InvalidFormat', + message: 'Invaild topic reference \'' + locator + '\''}; + }; + }; + + /** + * Imports a JTM topic map or JTM fragment from a JSON-string. + * name, variant, occurrence and role fragments need the optional parent + * construct as a parameter. + * TODO: Decide if this should be part of tmjs. Add functions for decoding/ + * encoding JSON if so. + * + * @param {String} str JSON encoded JTM + * @param {Construct} [parent] Parent construct if the JTM fragment contains + * a name, variant, occurrence or role. + */ + ReaderImpl.prototype.fromString = function (str, parent) { + var obj = JSON.parse(str); + return this.fromObject(obj); + }; + + /** + * Imports a JTM topic map or JTM fragment. + * name, variant, occurrence and role fragments need the parent construct + * as a parameter. + * + * @param {object} obj with JTM properties + * @param {Construct} [parent] Parent construct if the JTM fragment contains + * a name, variant, occurrence or role. + */ + ReaderImpl.prototype.fromObject = function (obj, parent) { + var ret; + parent = parent || null; + if (obj.version !== '1.0' && obj.version !== '1.1') { + throw {name: 'InvalidFormat', + message: 'Unknown version of JTM: ' + obj.version}; + } + this.version = obj.version; + if (obj.version === '1.1' && obj.prefixes) { + this.prefixes = obj.prefixes; + // Check if xsd is defined and if it is valid: + if (obj.prefixes && obj.prefixes.xsd && + obj.prefixes.xsd !== 'http://www.w3.org/2001/XMLSchema#') { + throw {name: 'InvalidFormat', + message: 'The XSD prefix MUST have the value "http://www.w3.org/2001/XMLSchema#"'}; + } + } else if (obj.prefixes) { + throw {name: 'InvalidFormat', + message: 'Prefixes are invalid in JTM 1.0: ' + obj.version}; + } + if (!this.prefixes.xsd) { + this.prefixes.xsd = 'http://www.w3.org/2001/XMLSchema#'; + } + if (!obj.item_type) { + throw {name: 'InvalidFormat', + message: 'Missing item_type'}; + } + switch (obj.item_type.toLowerCase()) { + case "topicmap": + ret = this.parseTopicMap(obj); + break; + case "topic": + ret = this.parseTopic(obj); + break; + case "name": + ret = this.parseName(parent, obj); + break; + case "variant": + ret = this.parseVariant(parent, obj); + break; + case "occurrence": + ret = this.parseOccurrence(parent, obj); + break; + case "association": + ret = this.parseAssociation(obj); + break; + case "role": + ret = this.parseRole(parent, obj); + break; + default: + throw {name: 'InvalidFormat', + message: 'Unknown item_type property'}; + } + return ret; + }; + + /** + * FIXME: Work in progress. We have to specify *how* the information + * item can be created. + * + * Internal function that parses a parent field. From the JTM spec: + * "The value of the parent member is an array of item identifiers, + * each prefixed by "ii:". For occurrences and names the parent array + * may as well contain subject identifiers prefixed by "si:" and + * subject locators prefixed by "sl:". + */ + ReaderImpl.prototype.parseParentAsTopic = function (obj, allowTopic) { + var parent = null, tmp, i; + if (!obj.parent) { + parent = this.tm.createTopic(); + } else if (!(obj.parent instanceof Array) || obj.parent.length === 0) { + throw {name: 'InvalidFormat', + message: 'Missing parent topic reference in occurrence'}; + } + if (obj.parent) { + for (i = 0; i < obj.parent.length; i += 1) { + tmp = this.getTopicByReference(obj.parent[i]); + if (!parent) { + parent = tmp; + } else { + parent.mergeIn(tmp); + } + } + } + return parent; + }; + + ReaderImpl.prototype.parseTopicMap = function (obj) { + var i, len, arr; + this.parseItemIdentifiers(this.tm, obj.item_identifiers); + this.parseReifier(this.tm, obj.reifier); + if (obj.topics && typeof obj.topics === 'object' && obj.topics instanceof Array) { + arr = obj.topics; + len = arr.length; + for (i = 0; i < len; i += 1) { + this.parseTopic(arr[i]); + } + arr = null; + } + if (obj.associations && typeof obj.associations === 'object' && + obj.associations instanceof Array) { + arr = obj.associations; + len = arr.length; + for (i = 0; i < len; i += 1) { + this.parseAssociation(arr[i]); + } + arr = null; + } + this.tm.sanitize(); // remove duplicates and convert type-instance associations to types + return true; + }; + + ReaderImpl.prototype.parseTopic = function (obj) { + var that = this, topic = null, parseIdentifier, arr, i, identifier, type; + parseIdentifier = function (tm, topic, arr, getFunc, createFunc, addFunc) { + var i, len, tmp; + if (arr && typeof arr === 'object' && arr instanceof Array) { + len = arr.length; + for (i = 0; i < len; i += 1) { + identifier = decodeURI(that.curieToLocator(arr[i])); + if (!topic) { + topic = createFunc.apply(tm, [tm.createLocator(identifier)]); + } else { + tmp = getFunc.apply(tm, [tm.createLocator(identifier)]); + if (tmp && tmp.isTopic() && !topic.equals(tmp)) { + topic.mergeIn(tmp); + } else if (!(tmp && tmp.isTopic() && topic.equals(tmp))) { + topic[addFunc](tm.createLocator(identifier)); + } + } + } + } + return topic; + }; + topic = parseIdentifier(this.tm, topic, obj.subject_identifiers, + this.tm.getTopicBySubjectIdentifier, + this.tm.createTopicBySubjectIdentifier, 'addSubjectIdentifier'); + topic = parseIdentifier(this.tm, topic, obj.subject_locators, + this.tm.getTopicBySubjectLocator, + this.tm.createTopicBySubjectLocator, 'addSubjectLocator'); + topic = parseIdentifier(this.tm, topic, obj.item_identifiers, + this.tm.getConstructByItemIdentifier, + this.tm.createTopicByItemIdentifier, 'addItemIdentifier'); + + if ((arr = obj.instance_of) && this.version === '1.1') { + for (i = 0; i < arr.length; i += 1) { + type = this.getTopicByReference(arr[i]); + topic.addType(type); + } + } else if (obj.instance_of && this.version === '1.0') { + throw {name: 'InvalidFormat', + message: 'instance_of is invalid in JTM 1.0'}; + } + + arr = obj.names; + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + this.parseName(topic, arr[i]); + } + } + arr = obj.occurrences; + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + this.parseOccurrence(topic, arr[i]); + } + } + }; + + ReaderImpl.prototype.parseName = function (parent, obj) { + var name, type, scope, arr, i; + if (!parent) { + parent = this.parseParentAsTopic(obj); + } + scope = this.parseScope(obj.scope); + type = this.getTopicByReference(obj.type); + name = parent.createName(obj.value, type, scope); + arr = obj.variants; + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + this.parseVariant(name, arr[i]); + } + } + this.parseItemIdentifiers(name, obj.item_identifiers); + this.parseReifier(name, obj.reifier); + }; + + ReaderImpl.prototype.parseVariant = function (parent, obj) { + var variant, scope; + scope = this.parseScope(obj.scope); + variant = parent.createVariant(obj.value, + obj.datatype ? + this.tm.createLocator(this.curieToLocator(obj.datatype)) : + this.defaultDatatype, scope); + this.parseItemIdentifiers(variant, obj.item_identifiers); + this.parseReifier(variant, obj.reifier); + }; + + ReaderImpl.prototype.parseOccurrence = function (parent, obj) { + var occurrence, type, scope; + if (!parent) { + parent = this.parseParentAsTopic(obj); + } + scope = this.parseScope(obj.scope); + type = this.getTopicByReference(obj.type); + occurrence = parent.createOccurrence(type, obj.value, + obj.datatype ? + this.tm.createLocator(this.curieToLocator(obj.datatype)) : + this.defaultDatatype, scope); + this.parseItemIdentifiers(occurrence, obj.item_identifiers); + this.parseReifier(occurrence, obj.reifier); + }; + + ReaderImpl.prototype.parseAssociation = function (obj) { + var association, type, scope, arr, i; + scope = this.parseScope(obj.scope); + type = this.getTopicByReference(obj.type); + association = this.tm.createAssociation(type, scope); + arr = obj.roles; + if (arr && typeof arr === 'object' && arr instanceof Array) { + if (arr.length === 0) { + throw {name: 'InvalidFormat', + message: 'Association needs roles'}; + } + for (i = 0; i < arr.length; i += 1) { + this.parseRole(association, arr[i]); + } + } else { + throw {name: 'InvalidFormat', + message: 'Association needs roles'}; + } + this.parseItemIdentifiers(association, obj.item_identifiers); + this.parseReifier(association, obj.reifier); + }; + + ReaderImpl.prototype.parseRole = function (parent, obj) { + var role, type, player; + type = this.getTopicByReference(obj.type); + player = this.getTopicByReference(obj.player); + role = parent.createRole(type, player); + this.parseItemIdentifiers(role, obj.item_identifiers); + this.parseReifier(role, obj.reifier); + }; + + ReaderImpl.prototype.parseScope = function (arr) { + var i, scope = []; + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + scope.push(this.getTopicByReference(arr[i])); + } + } + return scope; + }; + + + ReaderImpl.prototype.parseItemIdentifiers = function (construct, arr) { + var i, tm, identifier; + tm = construct.getTopicMap(); + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + identifier = this.curieToLocator(arr[i]); + if (!tm.getConstructByItemIdentifier(tm.createLocator(identifier))) { + construct.addItemIdentifier(tm.createLocator(identifier)); + } + } + } + }; + + ReaderImpl.prototype.parseReifier = function (construct, reifier) { + var reifierTopic = this.getTopicByReference(reifier); + if (reifierTopic && reifierTopic.getReified() === null || !reifierTopic) { + construct.setReifier(reifierTopic); + } // else: Ignore the case that reifierTopic reifies another item + }; + + /** + * @class Exports topic maps constructs as JTM 1.0 JavaScript objects. + * See http://www.cerny-online.com/jtm/1.0/ for the JSON Topic Maps specification. + * JSON 1.1 is described at http://www.cerny-online.com/jtm/1.1/ + * @param {String} version Version number of the JTM export. Valid values are '1.0' + * and '1.1'. Version 1.1 produces more compact files. The default + * value is '1.0', but this may change in the future. + */ + WriterImpl = function (version) { + var that = this, referenceToCURIEorURI; + this.defaultDatatype = TM.XSD.string; + this.prefixes = new TM.Hash(); + this.version = version || '1.0'; + + referenceToCURIEorURI = function (reference) { + var key, keys, i, value; + if (that.version === '1.0') { + return reference; + } + // TODO Sort keys after descending value length - longest first + // to find the best prefix + keys = that.prefixes.keys(); + for (i = 0; i < keys.length; i += 1) { + key = keys[i]; + value = that.prefixes.get(key); + if (reference.substring(0, value.length) === value) { + return '[' + key + ':' + + reference.substr(value.length) + ']'; + } + } + return reference; + }; + + /** + * Sets prefixes for JTM 1.1 export. prefixes is an object with the + * prefix as key and its corresponding reference as value. + */ + this.setPrefixes = function (prefixes) { + var key; + for (key in prefixes) { + if (prefixes.hasOwnProperty(key)) { + this.prefixes.put(key, prefixes[key]); + } + } + }; + + /** + * Generates a JTM reference based on the topics subject identifier, + * subject locator or item identifier (whatever is set, tested in this + * order). + * @returns {string} Representing the topic t, e.g. + * "si:http://psi.topicmaps.org/iso13250/model/type + */ + this.getTopicReference = function (t) { + var arr; + arr = t.getSubjectIdentifiers(); + if (arr.length > 0) { + return 'si:' + referenceToCURIEorURI(arr[0].getReference()); + } + arr = t.getSubjectLocators(); + if (arr.length > 0) { + return 'sl:' + referenceToCURIEorURI(arr[0].getReference()); + } + arr = t.getItemIdentifiers(); + if (arr.length > 0) { + return 'ii:' + referenceToCURIEorURI(arr[0].getReference()); + } + // ModelConstraintExeption: TMDM says that t MUST have on of these + }; + + this.exportIdentifiers = function (obj, arr, attr) { + var i, len = arr.length; + if (len > 0) { + obj[attr] = []; + for (i = 0; i < len; i += 1) { + obj[attr].push(referenceToCURIEorURI(arr[i].getReference())); + } + } + + }; + + this.exportScope = function (obj, construct) { + var i, arr = construct.getScope(); + if (arr.length > 0) { + obj.scope = []; + for (i = 0; i < arr.length; i += 1) { + obj.scope.push(that.getTopicReference(arr[i])); + } + } + }; + + this.exportParent = function (obj, construct) { + var parent = construct.getParent(); + that.exportIdentifiers(obj, parent.getItemIdentifiers(), 'parent'); + }; + + this.exportTopicMap = function (m) { + var arr, i, len, obj; + obj = { + topics: [], + associations: [] + }; + arr = m.getTopics(); + len = arr.length; + for (i = 0; i < len; i += 1) { + obj.topics.push(that.exportTopic(arr[i])); + } + arr = m.getAssociations(); + len = arr.length; + for (i = 0; i < len; i += 1) { + obj.associations.push(that.exportAssociation(arr[i])); + } + return obj; + }; + + this.exportTopic = function (t) { + var arr, i, len, obj; + obj = {}; + that.exportIdentifiers(obj, t.getSubjectIdentifiers(), 'subject_identifiers'); + that.exportIdentifiers(obj, t.getSubjectLocators(), 'subject_locators'); + that.exportIdentifiers(obj, t.getItemIdentifiers(), 'item_identifiers'); + arr = t.getNames(); + len = arr.length; + if (len > 0) { + obj.names = []; + for (i = 0; i < len; i += 1) { + obj.names.push(that.exportName(arr[i])); + } + } + arr = t.getOccurrences(); + len = arr.length; + if (len > 0) { + obj.occurrences = []; + for (i = 0; i < len; i += 1) { + obj.occurrences.push(that.exportOccurrence(arr[i])); + } + } + arr = t.getTypes(); + len = arr.length; + if (len > 0) { + obj.instance_of = []; + for (i = 0; i < len; i += 1) { + obj.instance_of.push(that.getTopicReference(arr[i])); + } + } + return obj; + }; + + this.exportName = function (name) { + var arr, i, len, obj, tmp; + obj = { + 'value': name.getValue() + }; + tmp = name.getType(); + if (tmp) { + obj.type = that.getTopicReference(tmp); + } + tmp = name.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + + that.exportIdentifiers(obj, name.getItemIdentifiers(), 'item_identifiers'); + that.exportScope(obj, name); + arr = name.getVariants(); + len = arr.length; + if (len > 0) { + obj.variants = []; + for (i = 0; i < len; i += 1) { + obj.variants.push(that.exportVariant(arr[i])); + } + } + return obj; + }; + + this.exportVariant = function (variant) { + var obj, tmp; + obj = { + 'value': variant.getValue() + }; + tmp = variant.getDatatype(); + if (tmp && tmp !== variant.getTopicMap().createLocator(that.defaultDatatype)) { + obj.datatype = referenceToCURIEorURI(tmp.getReference()); + } + tmp = variant.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + + that.exportIdentifiers(obj, variant.getItemIdentifiers(), 'item_identifiers'); + that.exportScope(obj, variant); + }; + + this.exportOccurrence = function (occ) { + var obj, tmp; + obj = { + value: occ.getValue(), + type: that.getTopicReference(occ.getType()) + }; + tmp = occ.getDatatype(); + if (tmp && tmp !== occ.getTopicMap().createLocator(that.defaultDatatype)) { + obj.datatype = referenceToCURIEorURI(tmp.getReference()); + } + tmp = occ.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + + that.exportIdentifiers(obj, occ.getItemIdentifiers(), 'item_identifiers'); + that.exportScope(obj, occ); + return obj; + }; + + this.exportAssociation = function (association) { + var arr, i, obj, tmp; + obj = { + type: that.getTopicReference(association.getType()), + roles: [] + }; + tmp = association.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + that.exportIdentifiers(obj, association.getItemIdentifiers(), 'item_identifiers'); + that.exportScope(obj, association); + arr = association.getRoles(); + for (i = 0; i < arr.length; i += 1) { + obj.roles.push(that.exportRole(arr[i])); + } + return obj; + }; + + this.exportRole = function (role) { + var obj, tmp; + obj = { + player: that.getTopicReference(role.getPlayer()), + type: that.getTopicReference(role.getType()) + }; + tmp = role.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + that.exportIdentifiers(obj, role.getItemIdentifiers(), 'item_identifiers'); + return obj; + }; + }; + + /** + * Returns a JTM JavaScript object representation of construct. + * @param {Construct} construct The topic map construct to be exported. Can be + * TopicMap, Topic, Occurrence, Name, Variant, Association or Role. + * @param {boolean} [includeParent] If true the optional JTM element 'parent' is + * included. Refers to the parent via its item identifier. If undefined or false, + * the parent element is dropped. + */ + WriterImpl.prototype.toObject = function (construct, includeParent) { + var obj, tm, keys, i; + includeParent = includeParent || false; + tm = construct.getTopicMap(); + + if (construct.isTopicMap()) { + obj = this.exportTopicMap(construct); + obj.item_type = 'topicmap'; + } else if (construct.isRole()) { + obj = this.exportRole(construct); + obj.item_type = 'role'; + } else if (construct.isTopic()) { + obj = this.exportTopic(construct); + obj.item_type = 'topic'; + } else if (construct.isAssociation()) { + obj = this.exportAssociation(construct); + obj.item_type = 'association'; + } else if (construct.isOccurrence()) { + obj = this.exportOccurrence(construct); + obj.item_type = 'occurrence'; + } else if (construct.isName()) { + obj = this.exportName(construct); + obj.item_type = 'name'; + } else if (construct.isVariant()) { + obj = this.exportVariant(construct); + obj.item_type = 'variant'; + } + obj.version = this.version; + if (this.version === '1.1' && this.prefixes) { + if (this.prefixes.size()) { + keys = this.prefixes.keys(); + obj.prefixes = {}; + for (i = 0; i < keys.length; i += 1) { + obj.prefixes[keys[i]] = this.prefixes.get(keys[i]); + } + } + } + if (!construct.isTopic() && construct.getReifier()) { + obj.reifier = this.getTopicReference(construct.getReifier()); + } + if (includeParent && !construct.isTopicMap()) { + this.exportParent(obj, construct); + } + return obj; + }; + + return { + Reader: ReaderImpl, + Writer: WriterImpl + }; +}()); Modified: branches/gdl-frontend/src/isidorus.asd ============================================================================== --- branches/gdl-frontend/src/isidorus.asd Mon Sep 5 03:07:53 2011 (r830) +++ branches/gdl-frontend/src/isidorus.asd Mon Sep 5 08:16:36 2011 (r831) @@ -210,6 +210,8 @@ :depends-on ("jtm_tools")) (:file "jtm_exporter" :depends-on ("jtm_tools")) + (:file "jtm_delete_interface" + :depends-on ("jtm_tools" "jtm_importer")) (:file "jtm_aliases" :depends-on ("jtm_tools" "jtm_importer" "jtm_exporter"))))) :depends-on ("base-tools" "model" "xml" "TM-SPARQL")) Modified: branches/gdl-frontend/src/json/JTM/jtm_aliases.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_aliases.lisp Mon Sep 5 03:07:53 2011 (r830) +++ branches/gdl-frontend/src/json/JTM/jtm_aliases.lisp Mon Sep 5 08:16:36 2011 (r831) @@ -33,4 +33,10 @@ :item_type-variant :item_type-occurrence :item_type-association - :item_type-role)) \ No newline at end of file + :item_type-role)) + + +(defpackage :jtm-delete-interface + (:use :cl :json :datamodel :base-tools :isidorus-threading + :constants :exceptions :jtm) + (:export :import-construct-from-jtm-decoded-list)) \ No newline at end of file Added: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Mon Sep 5 08:16:36 2011 (r831) @@ -0,0 +1,179 @@ +;;+----------------------------------------------------------------------------- +;;+ Isidorus +;;+ (c) 2008-2010 Marc Kuester, Christoph Ludwig, Lukas Georgieff +;;+ +;;+ Isidorus is freely distributable under the LLGPL license. +;;+ You can find a detailed description in trunk/docs/LLGPL-LICENSE.txt and +;;+ trunk/docs/LGPL-LICENSE.txt. +;;+----------------------------------------------------------------------------- + +(defpackage :jtm-delete-interface + (:use :cl :datamodel :jtm) + (:export :mark-as-deleted-from-jtm)) + +(in-package :jtm-delete-interface) + + +(defun mark-as-deleted-from-jtm (jtm-data &key (revision *TM-REVISION*)) + "Marks an object that is specified by the given JSON data as deleted." + (declare (string jtm-data) (integer revision)) + (let ((json-list (json:decode-json-from-string jtm-data))) + (let ((type nil) + (parent nil) + (parent-of-parent nil) + (delete nil)) + (loop for json-entry in json-list + do (let ((st (car json-entry)) + (nd (cdr json-entry))) + (cond ((eql st :type) + (setf type nd)) + ((eql st :delete) + (setf delete nd)) + ((eql st :parent) + (setf parent nd)) + ((eql st :parent-of-parent) + (setf parent-of-parent nd))))) + (cond ((string= type "Topic") + (delete-topic-from-jtm delete :revision revision)) + ((string= type "PSI") + (delete-identifier-from-jtm delete 'd:PersistentIdC + #'d:delete-psi :revision revision)) + ((string= type "ItemIdentity") + (delete-identifier-from-jtm delete 'd:ItemIdentifierC + #'d:delete-item-identifier + :revision revision)) + ((string= type "SubjectLocator") + (delete-identifier-from-jtm delete 'd:SubjectLocatorC + #'d:delete-locator :revision revision)) + ((string= type "Name") + (delete-name-from-jtm delete :revision revision)) + ((string= type "Variant") + (delete-variant-from-jtm delete :revision revision)) + ((string= type "Occurrence") + (delete-occurrence-from-jtm delete :revision revision)) + ((string= type "Association") + (delete-association-from-jtm delete :revision revision)) + ((string= type "Role") + (delete-role-from-jtm delete :revision revision)) + (t + (error "Type \"~a\" is not defined" type)))))) + + +(defun delete-role-from-jtm (jtm-decoded-list + &key (revision *TM-REVISION*)) + "Deletes the passed role object and returns t otherwise this + function returns nil." + (declare (list jtm-decoded-list) (integer revision)) + (let* ((role-to-delete + (import-construct-from-jtm-decoded-list + jtm-decoded-list :revision revision)) + (parent-assoc + (when role-to-delete + (parent role-to-delete :revision revision)))) + (when parent-assoc + (d:delete-role parent-assoc role-to-delete :revision revision) + role-to-delete))) + + +(defun delete-association-from-jtm (jtm-decoded-list &key + (revision *TM-REVISION*)) + "Deletes the passed association object and returns t otherwise this + function returns nil." + (declare (list jtm-decoded-list) (integer revision)) + (let ((assoc + (import-construct-from-jtm-decoded-list + jtm-decoded-list :revision revision))) + (when assoc + (d:mark-as-deleted assoc :revision revision :source-locator nil) + assoc))) + + +(defun delete-variant-from-jtm (jtm-decoded-list + &key (revision *TM-REVISION*)) + "Deletes the passed variant from the given name and returns t if the + operation succeeded." + (declare (list jtm-decoded-list) (integer revision)) + (let* ((variant-to-delete + (import-construct-from-jtm-decoded-list + jtm-decoded-list :revision revision)) + (parent-name + (when variant-to-delete + (parent variant-to-delete :revision revision)))) + (when parent-name + (d:delete-variant parent-name variant-to-delete :revision revision) + variant-to-delete))) + + + +(defun delete-occurrence-from-jtm (jtm-decoded-list + &key (revision *TM-REVISION*)) + "Deletes the passed occurrence from the given topic and returns t if the + operation succeeded." + (declare (list jtm-decoded-list) (integer revision)) + (let* ((occurrence-to-delete + (import-construct-from-jtm-decoded-list + jtm-decoded-list :revision revision)) + (parent-topic + (when occurrence-to-delete + (parent occurrence-to-delete :revision revision)))) + (when parent-topic + (d:delete-occurrence parent-topic occurrence-to-delete :revision revision) + occurrence-to-delete))) + + +(defun delete-name-from-jtm (jtm-decoded-list + &key (revision *TM-REVISION*)) + (declare (list jtm-decoded-list) (integer revision)) + (let* ((name-to-delete + (import-construct-from-jtm-decoded-list + jtm-decoded-list :revision revision)) + (parent-topic + (when name-to-delete + (parent name-to-delete :revision revision)))) + (when parent-topic + (d:delete-name parent-topic name-to-delete :revision revision) + name-to-delete))) + + +(defun delete-identifier-from-json (uri class delete-function + &key (revision *TM-REVISION*)) + "Deleted the passed identifier of the construct it is associated with. + Returns t if there was deleted an item otherweise it returns nil." + (declare (string uri) (integer revision) (symbol class)) + (let ((id (elephant:get-instance-by-value + class 'd:uri uri))) + (if (and id (typep id class)) + (progn + (apply delete-function + (list (d:identified-construct id :revision revision) + id :revision revision)) + id) + nil))) + + +(defun delete-topic-from-jtm (jtm-decoded-list &key (revision *TM-REVISION*)) + "Searches for a topic corresponding to the given identifiers. + Returns t if there was deleted an item otherweise it returns nil." + (declare (list jtm-decoded-list) (integer revision)) + (let ((top-to-delete + (import-construct-from-jtm-decoded-list + jtm-decoded-list :revision revision))) + (when top-to-delete + (mark-as-deleted top-to-delete :source-locator nil :revision revision) + top-to-delete))) + + +(defun delete-identifier-from-jtm (uri class delete-function + &key (revision *TM-REVISION*)) + "Deleted the passed identifier of the construct it is associated with. + Returns t if there was deleted an item otherweise it returns nil." + (declare (string uri) (integer revision) (symbol class)) + (let ((id (elephant:get-instance-by-value + class 'd:uri uri))) + (if (and id (typep id class)) + (progn + (apply delete-function + (list (d:identified-construct id :revision revision) + id :revision revision)) + id) + nil))) \ No newline at end of file Modified: branches/gdl-frontend/src/json/JTM/jtm_importer.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Mon Sep 5 03:07:53 2011 (r830) +++ branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Mon Sep 5 08:16:36 2011 (r831) @@ -38,21 +38,36 @@ (type (or Null String) tm-id) (Integer revision) (Keyword jtm-format)) - (let* ((jtm-list (json:decode-json-from-string jtm-string)) - (version (get-item :VERSION jtm-list)) + (let* ((jtm-list (json:decode-json-from-string jtm-string))) + (import-construct-from-jtm-decoded-list + jtm-list :revision revision :jtm-format jtm-format :tm-id tm-id))) + + +(defun import-construct-from-jtm-decoded-list (jtm-list &key + (revision *TM-REVISION*) + (jtm-format :1.1) tm-id) + "Imports the passed jtm-decoded-list. + Note tm-id needs not to be declared, but if the imported construct + is a topicmap and it has no item-identifiers defined, a JTM-error + is thrown." + (declare (List jtm-list) + (Integer revision) + (Keyword jtm-format) + (type (or Null String) tm-id)) + (let* ((version (get-item :VERSION jtm-list)) (item_type (get-item :ITEM--TYPE jtm-list)) (prefixes (make-prefix-list-from-jtm-list (get-item :PREFIXES jtm-list))) (format-1.1-p (eql jtm-format :1.1))) (cond ((eql jtm-format :1.0) (unless (string= version "1.0") - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): the member version must be set to \"1.0\" in JTM version 1.0, but is ~a" version)))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): the member version must be set to \"1.0\" in JTM version 1.0, but is ~a" version)))) (when prefixes - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): the member prefixes must not be set when using JTM version 1.0, but found: ~a" prefixes))))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): the member prefixes must not be set when using JTM version 1.0, but found: ~a" prefixes))))) ((eql jtm-format :1.1) (unless (string= version "1.1") - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): the member version must be set to \"1.1\" in JTM version 1.1, but is ~a" version))))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): the member version must be set to \"1.1\" in JTM version 1.1, but is ~a" version))))) (t - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): only JTM format \"1.0\" and \"1.1\" is supported, but found: \"~a\"" jtm-format))))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): only JTM format \"1.0\" and \"1.1\" is supported, but found: \"~a\"" jtm-format))))) (cond ((or (not item_type) (string= item_type item_type-topicmap)) (import-topic-map-from-jtm-list @@ -79,7 +94,7 @@ (import-association-from-jtm-list jtm-list nil :revision revision :prefixes prefixes)) (t - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): the member \"item_type\" must be set to one of ~a or nil, but found \"~a\". If \"item_type\" is not specified or nil the JTM-data is treated as a topicmap." item_type (list item_type-topicmap item_type-topic item_type-name item_type-variant item_type-occurrence item_type-role item_type-association)))))))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): the member \"item_type\" must be set to one of ~a or nil, but found \"~a\". If \"item_type\" is not specified or nil the JTM-data is treated as a topicmap." item_type (list item_type-topicmap item_type-topic item_type-name item_type-variant item_type-occurrence item_type-role item_type-association)))))))) (defun import-from-jtm (jtm-path repository-path &key (tm-id (error "you must provide a stable identifier (PSI-style) for this TM")) (revision *TM-REVISION*) (jtm-format :1.1)) Modified: branches/gdl-frontend/src/json/JTM/jtm_tools.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_tools.lisp Mon Sep 5 03:07:53 2011 (r830) +++ branches/gdl-frontend/src/json/JTM/jtm_tools.lisp Mon Sep 5 08:16:36 2011 (r831) @@ -11,6 +11,7 @@ (:use :cl :json :datamodel :base-tools :isidorus-threading :constants :exceptions) (:export :import-from-jtm + :import-construct-from-jtm-decoded-list :import-construct-from-jtm-string :export-as-jtm :export-as-jtm-string Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 5 03:07:53 2011 (r830) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 5 08:16:36 2011 (r831) @@ -9,3 +9,111 @@ (in-package :rest-interface) +(defparameter *base-address* "/gdl/") +(defparameter *get-fragment* (concat *base-address* "fragment/(.+)$")) +(defparameter *get-schema* (concat *base-address* "schema/?$")) +(defparameter *commit-fragment* (concat *base-address* "commit/?")) +(defparameter *delete-fragment* (concat *base-address* "delete/?")) +(defparameter *host-address* (concat *base-address* "anaToMia.html")) + + +(defun set-up-gdl-interface (&key (get-fragment *get-fragment*) + (get-schema *get-schema*) + (commit-fragment *commit-fragment*) + (delete-fragment *delete-fragment*) + (host-address *host-address*)) + (declare (String get-fragment get-schema commit-fragment + delete-fragment host-address)) + ;; registers the http-code 500 for an internal server error to the standard + ;; return codes. so there won't be attached a hunchentoot default message, + ;; this is necessary to be able to send error messages in an individual way/syntax + ;; e.g. a json error-message. + (push hunchentoot:+http-internal-server-error+ hunchentoot:*approved-return-codes*) + + (push + (create-regex-dispatcher get-fragment #'return-json-fragment-handler) + hunchentoot:*dispatch-table*) + + (push + (create-regex-dispatcher get-schema #'return-gdl-schema-handler) + hunchentoot:*dispatch-table*) + + (push + (create-regex-dispatcher commit-fragment #'commit-fragment-handler) + hunchentoot:*dispatch-table*) + + (push + (create-regex-dispatcher delete-fragment #'delete-handler) + hunchentoot:*dispatch-table*)) + + +(defun delete-handler() + "marks the corresponding construct(s) as deleted" + (let ((http-method (hunchentoot:request-method*))) + (if (or (eq http-method :DELETE) + (eq http-method :POST)) + (let ((external-format + (flexi-streams:make-external-format :UTF-8 :eol-style :LF))) + (let ((json-data + (hunchentoot:raw-post-data :external-format external-format + :force-text t))) + (with-writer-lock + (let ((result (jtm-delete-interface:mark-as-deleted-from-jtm + json-data :revision (get-revision)))) + (if result + (progn + (when (typep result 'd:TopicC) + (append ;;the append function is used only for suppress + ;;style warnings of unused delete return values + (delete (elephant::oid result) *type-table*) + (delete (elephant::oid result) *instance-table*))) + (format nil "")) ;operation succeeded + (progn + (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) + (format nil "object not found"))))))) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) + + +(defun commit-fragment-handler () + "handles commits in the JTM 1.1 format." + (let ((http-method (hunchentoot:request-method*))) + (if (or (eq http-method :PUT) + (eq http-method :POST)) + (let ((external-format (flexi-streams:make-external-format :UTF-8 :eol-style :LF))) + (let ((json-data (hunchentoot:raw-post-data :external-format external-format :force-text t))) + (with-writer-lock + (jtm-importer:import-construct-from-jtm-string + json-data :revision (get-revision))))) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) + + +(defun return-gdl-schema-handler() + "Currently the entore topic map is returned. + To emerge the efficiency it will be necessary + to structure the data as GDL-Fragments, so each view or schema + can be served separately." + (let ((http-method (hunchentoot:request-method*))) + (if (eq http-method :GET) + (jtm-exporter:export-as-jtm-string :revision 0) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) + + +(defun return-json-fragment-handler(&optional psi) + "returns the json-fragmen belonging to the psi passed by the parameter psi" + (assert psi) + (let ((http-method (hunchentoot:request-method*))) + (if (eq http-method :GET) + (let ((identifier (hunchentoot:url-decode psi))) + (setf (hunchentoot:content-type*) "application/json") ;RFC 4627 + (let ((fragment + (with-reader-lock + (get-latest-fragment-of-topic identifier)))) + (if fragment + (with-reader-lock + (jtm-exporter:export-construct-as-jtm-string + fragment :revision 0)) + (progn + (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) + (setf (hunchentoot:content-type*) "text") + (format nil "Topic \"~a\" not found" psi))))) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) \ No newline at end of file Modified: branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp Mon Sep 5 03:07:53 2011 (r830) +++ branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp Mon Sep 5 08:16:36 2011 (r831) @@ -114,7 +114,7 @@ (dolist (script-path-and-url (make-file-path-and-url ajax-javascripts-directory-path ajax-javascripts-url-prefix)) (let ((script-path (getf script-path-and-url :path)) (script-url (getf script-path-and-url :url))) - (push + (push (create-static-file-dispatcher-and-handler script-url script-path) hunchentoot:*dispatch-table*))) @@ -426,7 +426,7 @@ (declare (ignorable param)) ;param is currently not used (let ((http-method (hunchentoot:request-method*))) (if (or (eq http-method :DELETE) - (eq http-method :Post)) ;not nice - but the current ui-library can't send http-delete messages + (eq http-method :POST)) ;not nice - but the current ui-library can't send http-delete messages (let ((external-format (flexi-streams:make-external-format :UTF-8 :eol-style :LF))) (let ((json-data (hunchentoot:raw-post-data :external-format external-format :force-text t))) (handler-case From lgiessmann at common-lisp.net Mon Sep 5 15:57:30 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 05 Sep 2011 08:57:30 -0700 Subject: [isidorus-cvs] r832 - in branches/gdl-frontend/src: . rest_interface Message-ID: Author: lgiessmann Date: Mon Sep 5 08:57:30 2011 New Revision: 832 Log: gdl-frontend: added additional functionality to the rest-interface that serves the gdl-frontend; fixed a bug with the fragment cache Modified: branches/gdl-frontend/src/isidorus.asd branches/gdl-frontend/src/rest_interface/rest-interface.lisp branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp Modified: branches/gdl-frontend/src/isidorus.asd ============================================================================== --- branches/gdl-frontend/src/isidorus.asd Mon Sep 5 08:16:36 2011 (r831) +++ branches/gdl-frontend/src/isidorus.asd Mon Sep 5 08:57:30 2011 (r832) @@ -112,7 +112,8 @@ (:file "set-up-json-interface" :depends-on ("rest-interface")) (:file "set-up-gdl-interface" - :depends-on ("rest-interface")) + :depends-on ("rest-interface" + "set-up-json-interface")) (:file "read" :depends-on ("rest-interface"))) :depends-on ("model" "atom" "xml" "TM-SPARQL" Modified: branches/gdl-frontend/src/rest_interface/rest-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/rest-interface.lisp Mon Sep 5 08:16:36 2011 (r831) +++ branches/gdl-frontend/src/rest_interface/rest-interface.lisp Mon Sep 5 08:57:30 2011 (r832) @@ -30,8 +30,11 @@ :read-fragment-feed :start-json-engine :start-atom-engine + :start-gdl-engine :shutdown-json-engine :shutdown-atom-engine + :set-up-json-interface + :set-up-gdl-interface :*json-get-prefix* :*get-rdf-prefix* :*json-commit-url* Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 5 08:16:36 2011 (r831) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 5 08:57:30 2011 (r832) @@ -24,6 +24,11 @@ (host-address *host-address*)) (declare (String get-fragment get-schema commit-fragment delete-fragment host-address)) + + (init-cache nil) + (format t "~%") + (init-fragments nil) + ;; registers the http-code 500 for an internal server error to the standard ;; return codes. so there won't be attached a hunchentoot default message, ;; this is necessary to be able to send error messages in an individual way/syntax Modified: branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp Mon Sep 5 08:16:36 2011 (r831) +++ branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp Mon Sep 5 08:57:30 2011 (r832) @@ -15,6 +15,12 @@ (defparameter *instance-table* nil "Cointains integer==OIDs that represent a topic instance of a valid instance-topic") +(defparameter *cache-initialised* nil "determines wheter the cache has been + already set or not") + +(defparameter *fragments-initialised* nil "determines wheter the fragments has + been already initialised or not.") + ;the prefix to get a fragment by the psi -> localhost:8000/json/get/ (defparameter *json-get-prefix* "/json/get/(.+)$") ;the prefix to get a fragment by the psi -> localhost:8000/json/rdf/get/ @@ -88,9 +94,9 @@ and also registers a file-hanlder to the html-user-interface" ;initializes cache and fragments - (init-cache) + (init-cache nil) (format t "~%") - (init-fragments) + (init-fragments nil) ;; registers the http-code 500 for an internal server error to the standard ;; return codes. so there won't be attached a hunchentoot default message, @@ -543,19 +549,22 @@ files-and-urls))) -(defun init-cache() +(defun init-cache(force-init) "Initializes the type and instance cache-tables with all valid types/instances" - (with-writer-lock - (setf *type-table* nil) - (setf *instance-table* nil) - (let ((topictype (get-item-by-psi json-tmcl-constants::*topictype-psi* - :revision 0)) - (topictype-constraint (json-tmcl::is-type-constrained :revision 0))) - (format t "~%initializing cache: ") - (map 'list #'(lambda(top) - (format t ".") - (push-to-cache top topictype topictype-constraint)) - (elephant:get-instances-by-class 'TopicC))))) + (declare (Boolean force-init)) + (when (or force-init (not *cache-initialised*)) + (with-writer-lock + (setf *type-table* nil) + (setf *instance-table* nil) + (let ((topictype (get-item-by-psi json-tmcl-constants::*topictype-psi* + :revision 0)) + (topictype-constraint (json-tmcl::is-type-constrained :revision 0))) + (format t "~%initializing cache: ") + (map 'list #'(lambda(top) + (format t ".") + (push-to-cache top topictype topictype-constraint)) + (elephant:get-instances-by-class 'TopicC)))) + (setf *cache-initialised* t))) (defun push-to-cache (topic-instance &optional @@ -577,12 +586,15 @@ (condition () nil))) -(defun init-fragments () +(defun init-fragments (force-init) "Creates fragments of all topics that have a PSI." - (format t "creating fragments: ") - (map 'list #'(lambda(top) - (let ((psis-of-top (psis top))) - (when psis-of-top - (format t ".") - (create-latest-fragment-of-topic (uri (first psis-of-top)))))) - (elephant:get-instances-by-class 'd:TopicC))) \ No newline at end of file + (declare (Boolean force-init)) + (when (or force-init (not *fragments-initialised*)) + (format t "creating fragments: ") + (map 'list #'(lambda(top) + (let ((psis-of-top (psis top))) + (when psis-of-top + (format t ".") + (create-latest-fragment-of-topic (uri (first psis-of-top)))))) + (elephant:get-instances-by-class 'd:TopicC)) + (setf *fragments-initialised* t))) \ No newline at end of file From lgiessmann at common-lisp.net Tue Sep 6 09:31:55 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 06 Sep 2011 02:31:55 -0700 Subject: [isidorus-cvs] r833 - in branches/gdl-frontend/src: anaToMia/hosted_files anaToMia/hosted_files/gdl_widgets/lib rest_interface Message-ID: Author: lgiessmann Date: Tue Sep 6 02:31:52 2011 New Revision: 833 Log: gdl-frontend: added som new functionality to the gdl-backend Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js Modified: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html ============================================================================== --- branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html Mon Sep 5 08:57:30 2011 (r832) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html Tue Sep 6 02:31:52 2011 (r833) @@ -24,7 +24,6 @@ - Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js Tue Sep 6 02:31:52 2011 (r833) @@ -0,0 +1,115 @@ +// tmjs, version 0.4.0 +// http://github.com/jansc/tmjs +// Copyright (c) 2010 Jan Schreiber +// Licensed under the MIT-License. +var TM,TopicMapSystemFactory; +TM=function(){var n,C,h,g,e,f,i,l,m,o,t,u,p,D,x,A,B,v,y,w,z,O,E,J,H,s,q,P;Function.prototype.swiss=function(a){var b,c;for(b=1;b0?c.type2associations.put(k.getId(),d):c.type2associations.remove(k.getId());break;case e.REMOVE_NAME:k=j.getType();d=c.type2names.get(k.getId());d.remove(j.getId());d.length>0?c.type2names.put(k.getId(),d):c.type2names.remove(k.getId());break;case e.REMOVE_OCCURRENCE:k= +j.getType();d=c.type2occurrences.get(k.getId());d.remove(j.getId());d.length>0?c.type2occurrences.put(k.getId(),d):c.type2occurrences.remove(k.getId());break;case e.REMOVE_ROLE:k=j.getType();d=c.type2roles.get(k.getId());d.remove(j.getId());d.length>0?c.type2roles.put(k.getId(),d):c.type2roles.remove(k.getId());break;case e.REMOVE_TOPIC:k=j.getTypes();for(r=0;r0?c.type2associations.put(k.old.getId(),d):c.type2associations.remove(k.old.getId())}d=c.type2associations.get(k.type.getId());if(typeof d==="undefined")d=[];d.push(j);c.type2associations.put(k.type.getId(),d)}else if(j.isName()){if(d=c.type2names.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2names.put(k.old.getId(),d):c.type2names.remove(k.old.getId())}d=c.type2names.get(k.type.getId());if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2names.put(k.type.getId(), +d)}else if(j.isOccurrence()){if(d=c.type2occurrences.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2occurrences.put(k.old.getId(),d):c.type2occurrences.remove(k.old.getId())}d=c.type2occurrences.get(k.type.getId());if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2occurrences.put(k.type.getId(),d)}else if(j.isRole()){if(d=c.type2roles.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2roles.put(k.old.getId(),d):c.type2roles.remove(k.old.getId())}d=c.type2roles.get(k.type.getId()); +if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2roles.put(k.type.getId(),d)}break}};a.addAssociationEvent.registerHandler(b);a.addNameEvent.registerHandler(b);a.addOccurrenceEvent.registerHandler(b);a.addRoleEvent.registerHandler(b);a.addTopicEvent.registerHandler(b);a.addTypeEvent.registerHandler(b);a.removeAssociationEvent.registerHandler(b);a.removeNameEvent.registerHandler(b);a.removeOccurrenceEvent.registerHandler(b);a.removeRoleEvent.registerHandler(b);a.removeTopicEvent.registerHandler(b); +a.removeTypeEvent.registerHandler(b);a.setTypeEvent.registerHandler(b)};y.swiss(l,"close","isAutoUpdated","isOpen","open","reindex");y.prototype.getAssociations=function(a){a=this.type2associations.get(a.getId());if(!a)return[];return a};y.prototype.getAssociationTypes=function(){var a=[],b=this.type2associations.keys(),c;for(c=0;c0||j.getReifier()!==null||j.getItemIdentifiers().length>0)){k=j.getRoles();if(k.length===2){if(k[0].getType().equals(c)&&k[1].getType().equals(d))k[1].getPlayer().addType(k[0].getPlayer());else if(k[1].getType().equals(c)&&k[0].getType().equals(d))k[0].getPlayer().addType(k[1].getPlayer());else continue;j.remove()}}}}}};return{TopicMapSystemFactory:TopicMapSystemFactory, +XSD:C,TMDM:h,Hash:n,Version:"0.4.0"}}();TopicMapSystemFactory=TM.TopicMapSystemFactory;if(typeof exports==="object"&&exports!==null){exports.TopicMapSystemFactory=TopicMapSystemFactory;exports.TM=TM} +TM.JTM=function(){var n,C;n=function(h){var g=this;this.tm=h;this.version=null;this.prefixes={};this.defaultDatatype=this.tm.createLocator(TM.XSD.string);this.curieToLocator=function(e){var f,i;if(g.version==="1.1"&&e.substr(0,1)==="["){if(e.substr(e.length-1,1)!=="]")throw{name:"InvalidFormat",message:"Invaild CURIE: missing tailing bracket"};e=e.substr(1,e.length-2);i=e.indexOf(":");if(i!==-1){f=e.substr(0,i);if(g.prefixes[f])return e=g.prefixes[f]+e.substr(i+1,e.length-1);else throw{name:"InvalidFormat", +message:"Missing prefix declaration: "+f};}else throw{name:"InvalidFormat",message:"Invaild CURIE: missing colon"};}return e};this.getTopicByReference=function(e){if(typeof e==="undefined"||e===null)return null;switch(e.substr(0,3)){case "si:":return this.tm.createTopicBySubjectIdentifier(this.tm.createLocator(this.curieToLocator(e.substr(3))));case "sl:":return this.tm.createTopicBySubjectLocator(this.tm.createLocator(this.curieToLocator(e.substr(3))));case "ii:":return this.tm.createTopicByItemIdentifier(this.tm.createLocator(this.curieToLocator(e.substr(3))))}throw{name:"InvalidFormat", +message:"Invaild topic reference '"+e+"'"};}};n.prototype.fromString=function(h){return this.fromObject(JSON.parse(h))};n.prototype.fromObject=function(h,g){g=g||null;if(h.version!=="1.0"&&h.version!=="1.1")throw{name:"InvalidFormat",message:"Unknown version of JTM: "+h.version};this.version=h.version;if(h.version==="1.1"&&h.prefixes){if((this.prefixes=h.prefixes)&&h.prefixes.xsd&&h.prefixes.xsd!=="http://www.w3.org/2001/XMLSchema#")throw{name:"InvalidFormat",message:'The XSD prefix MUST have the value "http://www.w3.org/2001/XMLSchema#"'}; +}else if(h.prefixes)throw{name:"InvalidFormat",message:"Prefixes are invalid in JTM 1.0: "+h.version};if(!this.prefixes.xsd)this.prefixes.xsd="http://www.w3.org/2001/XMLSchema#";if(!h.item_type)throw{name:"InvalidFormat",message:"Missing item_type"};switch(h.item_type.toLowerCase()){case "topicmap":h=this.parseTopicMap(h);break;case "topic":h=this.parseTopic(h);break;case "name":h=this.parseName(g,h);break;case "variant":h=this.parseVariant(g,h);break;case "occurrence":h=this.parseOccurrence(g,h); +break;case "association":h=this.parseAssociation(h);break;case "role":h=this.parseRole(g,h);break;default:throw{name:"InvalidFormat",message:"Unknown item_type property"};}return h};n.prototype.parseParentAsTopic=function(h){var g=null,e,f;if(h.parent){if(!(h.parent instanceof Array)||h.parent.length===0)throw{name:"InvalidFormat",message:"Missing parent topic reference in occurrence"};}else g=this.tm.createTopic();if(h.parent)for(f=0;f0)return"si:"+e(i[0].getReference());i=f.getSubjectLocators();if(i.length>0)return"sl:"+e(i[0].getReference());i=f.getItemIdentifiers();if(i.length>0)return"ii:"+e(i[0].getReference())};this.exportIdentifiers= +function(f,i,l){var m,o=i.length;if(o>0){f[l]=[];for(m=0;m0){f.scope=[];for(i=0;i0){o.names=[];for(l=0;l0){o.occurrences= +[];for(l=0;l0){o.instance_of=[];for(l=0;l0){m.variants=[];for(i=0;i> ~a~%" rel-uri content-type) + (push + (create-static-file-dispatcher-and-handler + rel-uri item content-type) + hunchentoot:*dispatch-table*)))))))) + + +(defun generate-content-type(file-name) + "Returns a mime-type that corresponds to the passed + file-ending, note currently onle a fey types are supported!" + (declare (String file-name)) + (cond ((string-ends-with file-name "png" :ignore-case t) + "image/png") + ((string-ends-with file-name "html" :ignore-case t) + "text/html") + ((string-ends-with file-name "js" :ignore-case t) + "application/json") + ((string-ends-with file-name "css" :ignore-case t) + "text/css") + ((string-ends-with file-name "gif" :ignore-case t) + "image/gif") + (t + "text/plain"))) + + (defun delete-handler() "marks the corresponding construct(s) as deleted" (let ((http-method (hunchentoot:request-method*))) @@ -84,11 +147,16 @@ (let ((http-method (hunchentoot:request-method*))) (if (or (eq http-method :PUT) (eq http-method :POST)) - (let ((external-format (flexi-streams:make-external-format :UTF-8 :eol-style :LF))) - (let ((json-data (hunchentoot:raw-post-data :external-format external-format :force-text t))) + (let ((external-format + (flexi-streams:make-external-format :UTF-8 :eol-style :LF))) + (let ((json-data + (hunchentoot:raw-post-data :external-format external-format + :force-text t))) (with-writer-lock - (jtm-importer:import-construct-from-jtm-string - json-data :revision (get-revision))))) + (let ((frag (jtm-importer:import-construct-from-jtm-string + json-data :revision (get-revision)))) + (when frag + (push-to-cache (d:topic frag))))))) (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) From lgiessmann at common-lisp.net Tue Sep 6 15:09:06 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 06 Sep 2011 08:09:06 -0700 Subject: [isidorus-cvs] r834 - branches/gdl-frontend/src/anaToMia/hosted_files Message-ID: Author: lgiessmann Date: Tue Sep 6 08:09:06 2011 New Revision: 834 Log: Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/ From lgiessmann at common-lisp.net Tue Sep 6 17:52:43 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 06 Sep 2011 10:52:43 -0700 Subject: [isidorus-cvs] r835 - in branches/gdl-frontend/src/anaToMia/hosted_files: . gdl_widgets gdl_widgets/gwt gdl_widgets/gwt/clean gdl_widgets/gwt/clean/images Message-ID: Author: lgiessmann Date: Tue Sep 6 10:52:42 2011 New Revision: 835 Log: Added: branches/gdl-frontend/src/anaToMia/hosted_files/ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1113B1A1FF1C0A3E9B71BD863C43FCB5.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/42167EB996E0A5594808B27924549BFD.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5CDD877F600776869E0BE00D245D374B.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A193FA6838967F669CC444A6D5520480.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A82B39D6FAAB84CA4697B7A951C2CF9C.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D17635F2004F224221CE285C4BADCD39.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html Added: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,34 @@ +/** Add css rules here for your application. */ + + +/** Example rules used by the template application (remove for your app) */ +h1 { + font-size: 2em; + font-weight: bold; + color: #777777; + margin: 40px 0px 70px; + text-align: center; +} + +.sendButton { + display: block; + font-size: 16pt; +} + +/** Most GWT widgets already have a style name defined */ +.gwt-DialogBox { + width: 400px; +} + +.dialogVPanel { + margin: 5px; +} + +.serverResponseLabelError { + color: red; +} + +/** Set ids using widget.getElement().setId("idOfElement") */ +#closeButton { + margin: 15px 6px 6px; +} Added: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + Web Application Starter Project + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1113B1A1FF1C0A3E9B71BD863C43FCB5.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1113B1A1FF1C0A3E9B71BD863C43FCB5.cache.html Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,1670 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/42167EB996E0A5594808B27924549BFD.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/42167EB996E0A5594808B27924549BFD.cache.html Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,1659 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5CDD877F600776869E0BE00D245D374B.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5CDD877F600776869E0BE00D245D374B.cache.html Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,1717 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A193FA6838967F669CC444A6D5520480.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A193FA6838967F669CC444A6D5520480.cache.html Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,1668 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A82B39D6FAAB84CA4697B7A951C2CF9C.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/A82B39D6FAAB84CA4697B7A951C2CF9C.cache.html Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,1680 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D17635F2004F224221CE285C4BADCD39.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D17635F2004F224221CE285C4BADCD39.cache.html Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,1699 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Tue Sep 6 10:52:42 2011 (r835) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='1113B1A1FF1C0A3E9B71BD863C43FCB5',Pb='42167EB996E0A5594808B27924549BFD',Qb='5CDD877F600776869E0BE00D245D374B',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + From lgiessmann at common-lisp.net Wed Sep 7 06:48:58 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 06 Sep 2011 23:48:58 -0700 Subject: [isidorus-cvs] r836 - branches/gdl-frontend/src/json/JTM Message-ID: Author: lgiessmann Date: Tue Sep 6 23:48:57 2011 New Revision: 836 Log: jtm: fixed a bug in the symbol exports of the jtm interface Modified: branches/gdl-frontend/src/json/JTM/jtm_aliases.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_aliases.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_aliases.lisp Tue Sep 6 10:52:42 2011 (r835) +++ branches/gdl-frontend/src/json/JTM/jtm_aliases.lisp Tue Sep 6 23:48:57 2011 (r836) @@ -27,6 +27,7 @@ :constants :exceptions :jtm) (:export :import-from-jtm :import-construct-from-jtm-string + :import-construct-from-jtm-decoded-list :item_type-topicmap :item_type-topic :item_type-name @@ -39,4 +40,4 @@ (defpackage :jtm-delete-interface (:use :cl :json :datamodel :base-tools :isidorus-threading :constants :exceptions :jtm) - (:export :import-construct-from-jtm-decoded-list)) \ No newline at end of file + (:export :mark-as-deleted-from-jtm)) \ No newline at end of file From lgiessmann at common-lisp.net Wed Sep 7 06:55:08 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 06 Sep 2011 23:55:08 -0700 Subject: [isidorus-cvs] r837 - in branches/gdl-frontend/src: anaToMia/hosted_files/gdl_widgets/lib rest_interface Message-ID: Author: lgiessmann Date: Tue Sep 6 23:55:07 2011 New Revision: 837 Log: gdl:frontend: finalised the ajax files that will be hosted to present the gdl-frontend Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js Tue Sep 6 23:55:07 2011 (r837) @@ -0,0 +1,115 @@ +// tmjs, version 0.4.0 +// http://github.com/jansc/tmjs +// Copyright (c) 2010 Jan Schreiber +// Licensed under the MIT-License. +var TM,TopicMapSystemFactory; +TM=function(){var n,C,h,g,e,f,i,l,m,o,t,u,p,D,x,A,B,v,y,w,z,O,E,J,H,s,q,P;Function.prototype.swiss=function(a){var b,c;for(b=1;b0?c.type2associations.put(k.getId(),d):c.type2associations.remove(k.getId());break;case e.REMOVE_NAME:k=j.getType();d=c.type2names.get(k.getId());d.remove(j.getId());d.length>0?c.type2names.put(k.getId(),d):c.type2names.remove(k.getId());break;case e.REMOVE_OCCURRENCE:k= +j.getType();d=c.type2occurrences.get(k.getId());d.remove(j.getId());d.length>0?c.type2occurrences.put(k.getId(),d):c.type2occurrences.remove(k.getId());break;case e.REMOVE_ROLE:k=j.getType();d=c.type2roles.get(k.getId());d.remove(j.getId());d.length>0?c.type2roles.put(k.getId(),d):c.type2roles.remove(k.getId());break;case e.REMOVE_TOPIC:k=j.getTypes();for(r=0;r0?c.type2associations.put(k.old.getId(),d):c.type2associations.remove(k.old.getId())}d=c.type2associations.get(k.type.getId());if(typeof d==="undefined")d=[];d.push(j);c.type2associations.put(k.type.getId(),d)}else if(j.isName()){if(d=c.type2names.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2names.put(k.old.getId(),d):c.type2names.remove(k.old.getId())}d=c.type2names.get(k.type.getId());if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2names.put(k.type.getId(), +d)}else if(j.isOccurrence()){if(d=c.type2occurrences.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2occurrences.put(k.old.getId(),d):c.type2occurrences.remove(k.old.getId())}d=c.type2occurrences.get(k.type.getId());if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2occurrences.put(k.type.getId(),d)}else if(j.isRole()){if(d=c.type2roles.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2roles.put(k.old.getId(),d):c.type2roles.remove(k.old.getId())}d=c.type2roles.get(k.type.getId()); +if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2roles.put(k.type.getId(),d)}break}};a.addAssociationEvent.registerHandler(b);a.addNameEvent.registerHandler(b);a.addOccurrenceEvent.registerHandler(b);a.addRoleEvent.registerHandler(b);a.addTopicEvent.registerHandler(b);a.addTypeEvent.registerHandler(b);a.removeAssociationEvent.registerHandler(b);a.removeNameEvent.registerHandler(b);a.removeOccurrenceEvent.registerHandler(b);a.removeRoleEvent.registerHandler(b);a.removeTopicEvent.registerHandler(b); +a.removeTypeEvent.registerHandler(b);a.setTypeEvent.registerHandler(b)};y.swiss(l,"close","isAutoUpdated","isOpen","open","reindex");y.prototype.getAssociations=function(a){a=this.type2associations.get(a.getId());if(!a)return[];return a};y.prototype.getAssociationTypes=function(){var a=[],b=this.type2associations.keys(),c;for(c=0;c0||j.getReifier()!==null||j.getItemIdentifiers().length>0)){k=j.getRoles();if(k.length===2){if(k[0].getType().equals(c)&&k[1].getType().equals(d))k[1].getPlayer().addType(k[0].getPlayer());else if(k[1].getType().equals(c)&&k[0].getType().equals(d))k[0].getPlayer().addType(k[1].getPlayer());else continue;j.remove()}}}}}};return{TopicMapSystemFactory:TopicMapSystemFactory, +XSD:C,TMDM:h,Hash:n,Version:"0.4.0"}}();TopicMapSystemFactory=TM.TopicMapSystemFactory;if(typeof exports==="object"&&exports!==null){exports.TopicMapSystemFactory=TopicMapSystemFactory;exports.TM=TM} +TM.JTM=function(){var n,C;n=function(h){var g=this;this.tm=h;this.version=null;this.prefixes={};this.defaultDatatype=this.tm.createLocator(TM.XSD.string);this.curieToLocator=function(e){var f,i;if(g.version==="1.1"&&e.substr(0,1)==="["){if(e.substr(e.length-1,1)!=="]")throw{name:"InvalidFormat",message:"Invaild CURIE: missing tailing bracket"};e=e.substr(1,e.length-2);i=e.indexOf(":");if(i!==-1){f=e.substr(0,i);if(g.prefixes[f])return e=g.prefixes[f]+e.substr(i+1,e.length-1);else throw{name:"InvalidFormat", +message:"Missing prefix declaration: "+f};}else throw{name:"InvalidFormat",message:"Invaild CURIE: missing colon"};}return e};this.getTopicByReference=function(e){if(typeof e==="undefined"||e===null)return null;switch(e.substr(0,3)){case "si:":return this.tm.createTopicBySubjectIdentifier(this.tm.createLocator(this.curieToLocator(e.substr(3))));case "sl:":return this.tm.createTopicBySubjectLocator(this.tm.createLocator(this.curieToLocator(e.substr(3))));case "ii:":return this.tm.createTopicByItemIdentifier(this.tm.createLocator(this.curieToLocator(e.substr(3))))}throw{name:"InvalidFormat", +message:"Invaild topic reference '"+e+"'"};}};n.prototype.fromString=function(h){return this.fromObject(JSON.parse(h))};n.prototype.fromObject=function(h,g){g=g||null;if(h.version!=="1.0"&&h.version!=="1.1")throw{name:"InvalidFormat",message:"Unknown version of JTM: "+h.version};this.version=h.version;if(h.version==="1.1"&&h.prefixes){if((this.prefixes=h.prefixes)&&h.prefixes.xsd&&h.prefixes.xsd!=="http://www.w3.org/2001/XMLSchema#")throw{name:"InvalidFormat",message:'The XSD prefix MUST have the value "http://www.w3.org/2001/XMLSchema#"'}; +}else if(h.prefixes)throw{name:"InvalidFormat",message:"Prefixes are invalid in JTM 1.0: "+h.version};if(!this.prefixes.xsd)this.prefixes.xsd="http://www.w3.org/2001/XMLSchema#";if(!h.item_type)throw{name:"InvalidFormat",message:"Missing item_type"};switch(h.item_type.toLowerCase()){case "topicmap":h=this.parseTopicMap(h);break;case "topic":h=this.parseTopic(h);break;case "name":h=this.parseName(g,h);break;case "variant":h=this.parseVariant(g,h);break;case "occurrence":h=this.parseOccurrence(g,h); +break;case "association":h=this.parseAssociation(h);break;case "role":h=this.parseRole(g,h);break;default:throw{name:"InvalidFormat",message:"Unknown item_type property"};}return h};n.prototype.parseParentAsTopic=function(h){var g=null,e,f;if(h.parent){if(!(h.parent instanceof Array)||h.parent.length===0)throw{name:"InvalidFormat",message:"Missing parent topic reference in occurrence"};}else g=this.tm.createTopic();if(h.parent)for(f=0;f0)return"si:"+e(i[0].getReference());i=f.getSubjectLocators();if(i.length>0)return"sl:"+e(i[0].getReference());i=f.getItemIdentifiers();if(i.length>0)return"ii:"+e(i[0].getReference())};this.exportIdentifiers= +function(f,i,l){var m,o=i.length;if(o>0){f[l]=[];for(m=0;m0){f.scope=[];for(i=0;i0){o.names=[];for(l=0;l0){o.occurrences= +[];for(l=0;l0){o.instance_of=[];for(l=0;l0){m.variants=[];for(i=0;i Author: lgiessmann Date: Wed Sep 7 01:25:11 2011 New Revision: 838 Log: Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Tue Sep 6 23:55:07 2011 (r837) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Wed Sep 7 01:25:11 2011 (r838) @@ -9,18 +9,16 @@ (in-package :rest-interface) -(defparameter *base-address* "/");"/gdl/") -(defparameter *get-fragment* (concat *base-address* "fragment/(.+)$")) -(defparameter *get-schema* (concat *base-address* "schema/?$")) -(defparameter *commit-fragment* (concat *base-address* "commit/?")) -(defparameter *delete-fragment* (concat *base-address* "delete/?")) -(defparameter *host-address* (concat *base-address* "anatomia")) +(defparameter *get-fragment* "/gdl/fragment/(.+)$") +(defparameter *get-schema* "/gdl/schema/?$") +(defparameter *commit-fragment* "/gdl/commit/?") +(defparameter *delete-fragment* "/gdl/delete/?") +(defparameter *host-address* "/anatomia") (defparameter *base-path* "anaToMia/hosted_files/") (defparameter *host-file* (concat *base-path* "GDL_Widgets.html")) -(defun set-up-gdl-interface (&key (base-address *base-address*) - (get-fragment *get-fragment*) +(defun set-up-gdl-interface (&key (get-fragment *get-fragment*) (get-schema *get-schema*) (commit-fragment *commit-fragment*) (delete-fragment *delete-fragment*) @@ -30,8 +28,8 @@ (declare (String get-fragment get-schema commit-fragment delete-fragment host-address)) - (init-cache nil) - (format t "~%") + ;(init-cache nil) + ;(format t "~%") (init-fragments nil) ;; registers the http-code 500 for an internal server error to the standard @@ -41,7 +39,7 @@ (push hunchentoot:+http-internal-server-error+ hunchentoot:*approved-return-codes*) (init-hosted-files :host-address host-address :host-file host-file - :base-address base-address :base-path base-path) + :base-path base-path) (push (create-regex-dispatcher get-fragment #'return-json-fragment-handler) @@ -62,10 +60,9 @@ (defun init-hosted-files (&key (host-address *host-address*) (host-file *host-file*) - (base-address *base-address*) (base-path *base-path*)) "Adds handlers for the css, html and js files needed by the frontend." - (declare (String host-address host-file base-address base-path)) + (declare (String host-address host-file base-path)) ;; add the actual html file (let ((full-host-path (concat (namestring @@ -89,8 +86,7 @@ (string= full-host-path (namestring item))) (let* ((rel-addr (subseq (namestring item) absolute-base-path-len)) (content-type (generate-content-type (file-namestring item))) - (rel-uri (concat base-address rel-addr))) - (format t "~a >> ~a~%" rel-uri content-type) + (rel-uri (concat "/" rel-addr))) (push (create-static-file-dispatcher-and-handler rel-uri item content-type) @@ -167,7 +163,8 @@ can be served separately." (let ((http-method (hunchentoot:request-method*))) (if (eq http-method :GET) - (jtm-exporter:export-as-jtm-string :revision 0) + (progn (setf (hunchentoot:content-type*) "application/json") + (jtm-exporter:export-as-jtm-string :revision 0)) (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) From lgiessmann at common-lisp.net Wed Sep 7 08:57:37 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 01:57:37 -0700 Subject: [isidorus-cvs] r839 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus Message-ID: Author: lgiessmann Date: Wed Sep 7 01:57:37 2011 New Revision: 839 Log: gdl-frontend: Widgets: added the correct URLs for isidorus Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 7 01:25:11 2011 (r838) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 7 01:57:37 2011 (r839) @@ -63,6 +63,8 @@ }); mainPanel.add(requestButton); + + Window.alert(">> " + Window.Location.getHost()); }catch(Exception e){ e.printStackTrace(); Window.alert(">> e >> " + e.getClass() + " >> " + e.getMessage()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 7 01:25:11 2011 (r838) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 7 01:57:37 2011 (r839) @@ -1,9 +1,10 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; +import com.google.gwt.user.client.Window; + public class IsidorusConstants { - // TODO: set the actual values - public final static String DELETE_REUQEST_URL = ""; - public final static String COMMIT_REQUEST_URL = ""; - public final static String GET_FRAGMENT_REQUEST_URL = ""; - public final static String GET_SCHEMA_REQUEST_URL = "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + public final static String DELETE_REUQEST_URL = Window.Location.getHost() + "/gdl/delete"; + public final static String COMMIT_REQUEST_URL = Window.Location.getHost() + "/gdl/commit"; + public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getHost() + "/gdl/fragment/"; + public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getHost() + "/gdl/schema"; //"TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } From lgiessmann at common-lisp.net Wed Sep 7 09:24:09 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 02:24:09 -0700 Subject: [isidorus-cvs] r840 - branches/gdl-frontend/src/anaToMia/hosted_files Message-ID: Author: lgiessmann Date: Wed Sep 7 02:24:08 2011 New Revision: 840 Log: Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/ From lgiessmann at common-lisp.net Wed Sep 7 09:26:23 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 02:26:23 -0700 Subject: [isidorus-cvs] r841 - in branches/gdl-frontend/src/anaToMia/hosted_files: . gdl_widgets gdl_widgets/gwt gdl_widgets/gwt/clean gdl_widgets/gwt/clean/images gdl_widgets/lib Message-ID: Author: lgiessmann Date: Wed Sep 7 02:26:22 2011 New Revision: 841 Log: Added: branches/gdl-frontend/src/anaToMia/hosted_files/ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2699B5B403164BB7EA8AB0294BD2D5CC.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2A2F6E34D076D6DA3EE0F6B5310C7C3F.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5416331398D598E4184CA108746CE01C.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/96587888B15BBB752E6AD70B60B2B47B.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/C9BB7A15DB9A8D6F9FCC163A1840A9D9.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FE65C71869FEC328EF8A46510ED16928.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js Added: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,34 @@ +/** Add css rules here for your application. */ + + +/** Example rules used by the template application (remove for your app) */ +h1 { + font-size: 2em; + font-weight: bold; + color: #777777; + margin: 40px 0px 70px; + text-align: center; +} + +.sendButton { + display: block; + font-size: 16pt; +} + +/** Most GWT widgets already have a style name defined */ +.gwt-DialogBox { + width: 400px; +} + +.dialogVPanel { + margin: 5px; +} + +.serverResponseLabelError { + color: red; +} + +/** Set ids using widget.getElement().setId("idOfElement") */ +#closeButton { + margin: 15px 6px 6px; +} Added: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + Web Application Starter Project + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2699B5B403164BB7EA8AB0294BD2D5CC.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2699B5B403164BB7EA8AB0294BD2D5CC.cache.html Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,1682 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2A2F6E34D076D6DA3EE0F6B5310C7C3F.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2A2F6E34D076D6DA3EE0F6B5310C7C3F.cache.html Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,1719 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5416331398D598E4184CA108746CE01C.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5416331398D598E4184CA108746CE01C.cache.html Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,1701 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/96587888B15BBB752E6AD70B60B2B47B.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/96587888B15BBB752E6AD70B60B2B47B.cache.html Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,1670 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/C9BB7A15DB9A8D6F9FCC163A1840A9D9.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/C9BB7A15DB9A8D6F9FCC163A1840A9D9.cache.html Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,1661 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FE65C71869FEC328EF8A46510ED16928.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FE65C71869FEC328EF8A46510ED16928.cache.html Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,1672 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='2699B5B403164BB7EA8AB0294BD2D5CC',Pb='2A2F6E34D076D6DA3EE0F6B5310C7C3F',Qb='5416331398D598E4184CA108746CE01C',Rb='96587888B15BBB752E6AD70B60B2B47B',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js Wed Sep 7 02:26:22 2011 (r841) @@ -0,0 +1,115 @@ +// tmjs, version 0.4.0 +// http://github.com/jansc/tmjs +// Copyright (c) 2010 Jan Schreiber +// Licensed under the MIT-License. +var TM,TopicMapSystemFactory; +TM=function(){var n,C,h,g,e,f,i,l,m,o,t,u,p,D,x,A,B,v,y,w,z,O,E,J,H,s,q,P;Function.prototype.swiss=function(a){var b,c;for(b=1;b0?c.type2associations.put(k.getId(),d):c.type2associations.remove(k.getId());break;case e.REMOVE_NAME:k=j.getType();d=c.type2names.get(k.getId());d.remove(j.getId());d.length>0?c.type2names.put(k.getId(),d):c.type2names.remove(k.getId());break;case e.REMOVE_OCCURRENCE:k= +j.getType();d=c.type2occurrences.get(k.getId());d.remove(j.getId());d.length>0?c.type2occurrences.put(k.getId(),d):c.type2occurrences.remove(k.getId());break;case e.REMOVE_ROLE:k=j.getType();d=c.type2roles.get(k.getId());d.remove(j.getId());d.length>0?c.type2roles.put(k.getId(),d):c.type2roles.remove(k.getId());break;case e.REMOVE_TOPIC:k=j.getTypes();for(r=0;r0?c.type2associations.put(k.old.getId(),d):c.type2associations.remove(k.old.getId())}d=c.type2associations.get(k.type.getId());if(typeof d==="undefined")d=[];d.push(j);c.type2associations.put(k.type.getId(),d)}else if(j.isName()){if(d=c.type2names.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2names.put(k.old.getId(),d):c.type2names.remove(k.old.getId())}d=c.type2names.get(k.type.getId());if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2names.put(k.type.getId(), +d)}else if(j.isOccurrence()){if(d=c.type2occurrences.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2occurrences.put(k.old.getId(),d):c.type2occurrences.remove(k.old.getId())}d=c.type2occurrences.get(k.type.getId());if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2occurrences.put(k.type.getId(),d)}else if(j.isRole()){if(d=c.type2roles.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2roles.put(k.old.getId(),d):c.type2roles.remove(k.old.getId())}d=c.type2roles.get(k.type.getId()); +if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2roles.put(k.type.getId(),d)}break}};a.addAssociationEvent.registerHandler(b);a.addNameEvent.registerHandler(b);a.addOccurrenceEvent.registerHandler(b);a.addRoleEvent.registerHandler(b);a.addTopicEvent.registerHandler(b);a.addTypeEvent.registerHandler(b);a.removeAssociationEvent.registerHandler(b);a.removeNameEvent.registerHandler(b);a.removeOccurrenceEvent.registerHandler(b);a.removeRoleEvent.registerHandler(b);a.removeTopicEvent.registerHandler(b); +a.removeTypeEvent.registerHandler(b);a.setTypeEvent.registerHandler(b)};y.swiss(l,"close","isAutoUpdated","isOpen","open","reindex");y.prototype.getAssociations=function(a){a=this.type2associations.get(a.getId());if(!a)return[];return a};y.prototype.getAssociationTypes=function(){var a=[],b=this.type2associations.keys(),c;for(c=0;c0||j.getReifier()!==null||j.getItemIdentifiers().length>0)){k=j.getRoles();if(k.length===2){if(k[0].getType().equals(c)&&k[1].getType().equals(d))k[1].getPlayer().addType(k[0].getPlayer());else if(k[1].getType().equals(c)&&k[0].getType().equals(d))k[0].getPlayer().addType(k[1].getPlayer());else continue;j.remove()}}}}}};return{TopicMapSystemFactory:TopicMapSystemFactory, +XSD:C,TMDM:h,Hash:n,Version:"0.4.0"}}();TopicMapSystemFactory=TM.TopicMapSystemFactory;if(typeof exports==="object"&&exports!==null){exports.TopicMapSystemFactory=TopicMapSystemFactory;exports.TM=TM} +TM.JTM=function(){var n,C;n=function(h){var g=this;this.tm=h;this.version=null;this.prefixes={};this.defaultDatatype=this.tm.createLocator(TM.XSD.string);this.curieToLocator=function(e){var f,i;if(g.version==="1.1"&&e.substr(0,1)==="["){if(e.substr(e.length-1,1)!=="]")throw{name:"InvalidFormat",message:"Invaild CURIE: missing tailing bracket"};e=e.substr(1,e.length-2);i=e.indexOf(":");if(i!==-1){f=e.substr(0,i);if(g.prefixes[f])return e=g.prefixes[f]+e.substr(i+1,e.length-1);else throw{name:"InvalidFormat", +message:"Missing prefix declaration: "+f};}else throw{name:"InvalidFormat",message:"Invaild CURIE: missing colon"};}return e};this.getTopicByReference=function(e){if(typeof e==="undefined"||e===null)return null;switch(e.substr(0,3)){case "si:":return this.tm.createTopicBySubjectIdentifier(this.tm.createLocator(this.curieToLocator(e.substr(3))));case "sl:":return this.tm.createTopicBySubjectLocator(this.tm.createLocator(this.curieToLocator(e.substr(3))));case "ii:":return this.tm.createTopicByItemIdentifier(this.tm.createLocator(this.curieToLocator(e.substr(3))))}throw{name:"InvalidFormat", +message:"Invaild topic reference '"+e+"'"};}};n.prototype.fromString=function(h){return this.fromObject(JSON.parse(h))};n.prototype.fromObject=function(h,g){g=g||null;if(h.version!=="1.0"&&h.version!=="1.1")throw{name:"InvalidFormat",message:"Unknown version of JTM: "+h.version};this.version=h.version;if(h.version==="1.1"&&h.prefixes){if((this.prefixes=h.prefixes)&&h.prefixes.xsd&&h.prefixes.xsd!=="http://www.w3.org/2001/XMLSchema#")throw{name:"InvalidFormat",message:'The XSD prefix MUST have the value "http://www.w3.org/2001/XMLSchema#"'}; +}else if(h.prefixes)throw{name:"InvalidFormat",message:"Prefixes are invalid in JTM 1.0: "+h.version};if(!this.prefixes.xsd)this.prefixes.xsd="http://www.w3.org/2001/XMLSchema#";if(!h.item_type)throw{name:"InvalidFormat",message:"Missing item_type"};switch(h.item_type.toLowerCase()){case "topicmap":h=this.parseTopicMap(h);break;case "topic":h=this.parseTopic(h);break;case "name":h=this.parseName(g,h);break;case "variant":h=this.parseVariant(g,h);break;case "occurrence":h=this.parseOccurrence(g,h); +break;case "association":h=this.parseAssociation(h);break;case "role":h=this.parseRole(g,h);break;default:throw{name:"InvalidFormat",message:"Unknown item_type property"};}return h};n.prototype.parseParentAsTopic=function(h){var g=null,e,f;if(h.parent){if(!(h.parent instanceof Array)||h.parent.length===0)throw{name:"InvalidFormat",message:"Missing parent topic reference in occurrence"};}else g=this.tm.createTopic();if(h.parent)for(f=0;f0)return"si:"+e(i[0].getReference());i=f.getSubjectLocators();if(i.length>0)return"sl:"+e(i[0].getReference());i=f.getItemIdentifiers();if(i.length>0)return"ii:"+e(i[0].getReference())};this.exportIdentifiers= +function(f,i,l){var m,o=i.length;if(o>0){f[l]=[];for(m=0;m0){f.scope=[];for(i=0;i0){o.names=[];for(l=0;l0){o.occurrences= +[];for(l=0;l0){o.instance_of=[];for(l=0;l0){m.variants=[];for(i=0;i Author: lgiessmann Date: Wed Sep 7 03:23:59 2011 New Revision: 842 Log: gdl-frontend: Widgets: finalised the commit operation of created Environments Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 7 02:26:22 2011 (r841) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 7 03:23:59 2011 (r842) @@ -62,9 +62,7 @@ } }); - mainPanel.add(requestButton); - - Window.alert(">> " + Window.Location.getHost()); + mainPanel.add(requestButton); }catch(Exception e){ e.printStackTrace(); Window.alert(">> e >> " + e.getClass() + " >> " + e.getMessage()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 7 02:26:22 2011 (r841) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 7 03:23:59 2011 (r842) @@ -17,6 +17,8 @@ import com.google.gwt.json.client.JSONString; import com.google.gwt.json.client.JSONValue; import com.google.gwt.user.client.Window; +import com.google.gwt.user.client.ui.RootPanel; + import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Association; @@ -80,12 +82,17 @@ Locator psi = tm.createLocator("http://textgrid.org/serviceregistry/environment/" + envName.getValue()); top.removeSubjectIdentifier(carrierLocator); top.addSubjectIdentifier(psi); + top.addType(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/types/Environment", tm)); } String jtm = null; if(topicMaps.size() != 0){ jtm = tmEngine.exportTm(topicMaps.get(0)); } else if(topics.size() != 0){ + topics.add(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/types/Environment", tm)); + topics.add(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/environment-name", tm)); + topics.add(TmHelper.getTopicByPsi(PSIs.TMCL.tmclNameType, tm)); + topics.add(TmHelper.getTopicByPsi(PSIs.TMCL.tmclTopictype, tm)); jtm = tmEngine.exportTm(topics, new ArrayList()); } @@ -94,6 +101,8 @@ try{ // a check for an existing environment topic is not necessary, // since it would be exactly the same topic. + + //RootPanel.getBodyElement().setInnerText(jtm); // TODO: remove builder.sendRequest(null, new EnvironmentCommitRequest(jtm)); }catch(RequestException e){ Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 7 02:26:22 2011 (r841) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 7 03:23:59 2011 (r842) @@ -1,10 +1,12 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; +import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; + public class IsidorusConstants { public final static String DELETE_REUQEST_URL = Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getHost() + "/gdl/fragment/"; - public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getHost() + "/gdl/schema"; //"TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; //"gdl/schema"; } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Wed Sep 7 02:26:22 2011 (r841) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Wed Sep 7 03:23:59 2011 (r842) @@ -1,8 +1,6 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; import java.util.ArrayList; - -import com.google.gwt.core.client.GWT; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.http.client.Request; @@ -23,7 +21,7 @@ // this class can be used as a callback that requests the Topic Map data // addressable by the URI isidorusUrl public class LoadSchemaCallback implements ILoadSchemaCallback{ - private final String isidorusUrl = URL.encode(GWT.getModuleBaseURL() + IsidorusConstants.GET_SCHEMA_REQUEST_URL); + private final String isidorusUrl = URL.encode(IsidorusConstants.GET_SCHEMA_REQUEST_URL); private ArrayList> requestedTopicsToCreate = new ArrayList>(); private Pair requestedTopicToEdit = null; private RequestBuilder requestBuilder = new RequestBuilder(RequestBuilder.GET, isidorusUrl); From lgiessmann at common-lisp.net Wed Sep 7 10:48:20 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 03:48:20 -0700 Subject: [isidorus-cvs] r843 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: isidorus view Message-ID: Author: lgiessmann Date: Wed Sep 7 03:48:19 2011 New Revision: 843 Log: gdl-frontend: Widgets: each instance of GdlDefaultCreatorTopicView and GdlSpecialCreatorTopicView sets the topic type of a topic instance automatically by examining the requested topic types of the GdlPanel class Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 7 03:23:59 2011 (r842) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 7 03:48:19 2011 (r843) @@ -82,17 +82,12 @@ Locator psi = tm.createLocator("http://textgrid.org/serviceregistry/environment/" + envName.getValue()); top.removeSubjectIdentifier(carrierLocator); top.addSubjectIdentifier(psi); - top.addType(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/types/Environment", tm)); } String jtm = null; if(topicMaps.size() != 0){ jtm = tmEngine.exportTm(topicMaps.get(0)); } else if(topics.size() != 0){ - topics.add(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/types/Environment", tm)); - topics.add(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/environment-name", tm)); - topics.add(TmHelper.getTopicByPsi(PSIs.TMCL.tmclNameType, tm)); - topics.add(TmHelper.getTopicByPsi(PSIs.TMCL.tmclTopictype, tm)); jtm = tmEngine.exportTm(topics, new ArrayList()); } @@ -171,6 +166,8 @@ commitBuilder.setHeader("Content-type", "application/json"); RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.GET, getUrl); try{ + //RootPanel.getBodyElement().setInnerText(jtm); //TODO: remove + if(edited)getBuilder.sendRequest(null, new EditedHashObjectCommitRequest(null, jtm, false)); else commitBuilder.sendRequest(jtm, new HashObjectCommitRequest(jtm)); }catch(RequestException e){ Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Wed Sep 7 03:23:59 2011 (r842) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Wed Sep 7 03:48:19 2011 (r843) @@ -21,6 +21,7 @@ import us.isidor.gdl.anaToMia.Widgets.environment.InvalidContentException; import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; +import us.isidor.gdl.anaToMia.Widgets.environment.TopicIdentifierTypes; import us.isidor.gdl.anaToMia.Widgets.value.ContentOrientationValue; @@ -177,11 +178,21 @@ } - // returns the recieved topic or creates a topic stub + // returns the received topic or creates a topic stub public Topic getRepresentedTopic() throws InvalidGdlSchemaException { if(this.receivedData ==null){ if(this.representedTopic == null){ this.representedTopic = this.tmRepresentative.getTopicMap().createTopicBySubjectIdentifier(this.tm.createLocator(PSIs.GDL.gdl + this.getId())); + + if((this instanceof GdlDefaultCreatorTopicView) || (this instanceof GdlSpecialCreatorTopicView)){ + ArrayList topicTypes = new ArrayList(); + ArrayList> ids = this.getRoot().getReqeustedTopicsToCreate(); + if(ids != null) + for (Pair pair : ids) topicTypes.add(TmHelper.getTopicByAnyIdentifier(pair, this.tmRepresentative.getTopicMap())); + + for (Topic topType : topicTypes) this.representedTopic.addType(topType); + } + return this.representedTopic; } else { return this.representedTopic; From lgiessmann at common-lisp.net Wed Sep 7 11:08:40 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 04:08:40 -0700 Subject: [isidorus-cvs] r844 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base button environment isidorus Message-ID: Author: lgiessmann Date: Wed Sep 7 04:08:40 2011 New Revision: 844 Log: gdl-frontend: Widgets: fixed a bug in the json format of the delete callback Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/IDeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Wed Sep 7 03:48:19 2011 (r843) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Wed Sep 7 04:08:40 2011 (r844) @@ -254,7 +254,7 @@ ArrayList> data = new ArrayList>(); data.add(new Pair(this.requestedSchemaTm, TopicMapsTypes.TopicMap)); - this.deleteCallback.deleteTmConstruct(data, null); + this.deleteCallback.deleteTmConstruct(data, this.getTmEngine(), null); }catch(Exception e){ for (IOnErrorCallback handler : localOnErrorContainer) handler.onError(GdlErrorTypes.DeleteError, e); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 7 03:48:19 2011 (r843) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 7 04:08:40 2011 (r844) @@ -36,7 +36,7 @@ //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Poet", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Musician", TopicIdentifierTypes.SubjectIdentifier)); - //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-env-1", TopicIdentifierTypes.SubjectIdentifier); + Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-env-1", TopicIdentifierTypes.SubjectIdentifier); //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-hash-2", TopicIdentifierTypes.SubjectIdentifier); GdlPanel.addClickHandler("hash_object_reset_button_id", new ClickHandler() { @Override @@ -46,7 +46,7 @@ } }); - gdlPanel = new GdlPanel(null, requestedTopicsToCreate); + gdlPanel = new GdlPanel(requestedTopicToEdit, null); mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java Wed Sep 7 03:48:19 2011 (r843) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java Wed Sep 7 04:08:40 2011 (r844) @@ -38,7 +38,7 @@ public void onClick(ClickEvent event) { try{ IDeleteCallback callback = this.owner.getRoot().getDeleteCallback(); - callback.deleteTmConstruct(this.owner.getGdlParent().getContent(null, false), this.owner.getId()); + callback.deleteTmConstruct(this.owner.getGdlParent().getContent(null, false), this.owner.getRoot().getTmEngine(), this.owner.getId()); }catch(Exception e){ e.printStackTrace(); Window.alert("caught: " + e.getMessage()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/IDeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/IDeleteCallback.java Wed Sep 7 03:48:19 2011 (r843) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/IDeleteCallback.java Wed Sep 7 04:08:40 2011 (r844) @@ -1,11 +1,11 @@ package us.isidor.gdl.anaToMia.Widgets.environment; import java.util.ArrayList; - +import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes; public interface IDeleteCallback { - public void deleteTmConstruct(ArrayList> constructs, String buttonId); + public void deleteTmConstruct(ArrayList> constructs, TmEngine tmEngine, String buttonId); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 7 03:48:19 2011 (r843) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 7 04:08:40 2011 (r844) @@ -17,8 +17,6 @@ import com.google.gwt.json.client.JSONString; import com.google.gwt.json.client.JSONValue; import com.google.gwt.user.client.Window; -import com.google.gwt.user.client.ui.RootPanel; - import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Association; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 7 03:48:19 2011 (r843) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 7 04:08:40 2011 (r844) @@ -9,8 +9,12 @@ import com.google.gwt.http.client.URL; import com.google.gwt.json.client.JSONArray; import com.google.gwt.json.client.JSONObject; +import com.google.gwt.json.client.JSONParser; import com.google.gwt.json.client.JSONString; +import com.google.gwt.json.client.JSONValue; import com.google.gwt.user.client.Window; +import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException; +import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes; @@ -23,36 +27,38 @@ @Override - public void deleteTmConstruct(ArrayList> constructs, String buttonId) { - this.deleteTopic(constructs); + public void deleteTmConstruct(ArrayList> constructs, TmEngine tmEngine, String buttonId) { + this.deleteTopic(constructs, tmEngine); } - private void deleteTopic(ArrayList> constructs){ + private void deleteTopic(ArrayList> constructs, TmEngine tmEngine){ for (Pair pair : constructs) { if(pair.getSecond().equals(TopicMapsTypes.Topic)){ Topic env = (Topic)pair.getFirst(); if(env.getSubjectIdentifiers().length() != 0){ String psi = env.getSubjectIdentifiers().get(0).getReference(); - JSONObject topObj = new JSONObject(); JSONArray psis = new JSONArray(); psis.set(0, new JSONString(psi)); - topObj.put("subjectIdentifiers", psis); JSONObject delObj = new JSONObject(); delObj.put("type", new JSONString("Topic")); - delObj.put("delete", topObj); - - - String url = URL.encode(this.REUQEST_URL); - RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); - builder.setHeader("Content-type", "application/json"); try{ + JSONValue val = JSONParser.parseStrict(tmEngine.exportTm(env)); + delObj.put("delete", val.isObject()); + + String url = URL.encode(this.REUQEST_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); + builder.setHeader("Content-type", "application/json"); + + //RootPanel.getBodyElement().setInnerText(delObj.toString()); // TODO: remove builder.sendRequest(delObj.toString(), new DeleteRequest(delObj)); }catch(RequestException e){ Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); + }catch(ExporterException e){ + Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); } } } From lgiessmann at common-lisp.net Wed Sep 7 11:11:15 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 04:11:15 -0700 Subject: [isidorus-cvs] r845 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base Message-ID: Author: lgiessmann Date: Wed Sep 7 04:11:14 2011 New Revision: 845 Log: Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 7 04:08:40 2011 (r844) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 7 04:11:14 2011 (r845) @@ -53,7 +53,6 @@ gdlPanel.setCommitCallback(new CommitCallback()); gdlPanel.setDeleteCallback(new DeleteCallback()); - Button requestButton = new Button("load schema"); requestButton.addClickHandler(new ClickHandler() { @Override From lgiessmann at common-lisp.net Wed Sep 7 11:30:51 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 04:30:51 -0700 Subject: [isidorus-cvs] r846 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Wed Sep 7 04:30:51 2011 New Revision: 846 Log: Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2699B5B403164BB7EA8AB0294BD2D5CC.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2A2F6E34D076D6DA3EE0F6B5310C7C3F.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5416331398D598E4184CA108746CE01C.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/96587888B15BBB752E6AD70B60B2B47B.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/C9BB7A15DB9A8D6F9FCC163A1840A9D9.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FE65C71869FEC328EF8A46510ED16928.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Wed Sep 7 11:32:39 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 04:32:39 -0700 Subject: [isidorus-cvs] r847 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt gwt/clean gwt/clean/images Message-ID: Author: lgiessmann Date: Wed Sep 7 04:32:38 2011 New Revision: 847 Log: Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/18FF2258A2E4E9EDBAF628CF8F836F34.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1ABFFA09FB935227E38ADCFDCFB16392.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/66F114BF5390C6AF39FF5232D8DD9FD7.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9595A1660BBB73E652C658A396F10F77.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DFA78D07F39AE245745AAD16C08FA261.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EE8FA68B7FC9D19FFD542F77022B10BA.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/18FF2258A2E4E9EDBAF628CF8F836F34.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/18FF2258A2E4E9EDBAF628CF8F836F34.cache.html Wed Sep 7 04:32:38 2011 (r847) @@ -0,0 +1,1665 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1ABFFA09FB935227E38ADCFDCFB16392.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1ABFFA09FB935227E38ADCFDCFB16392.cache.html Wed Sep 7 04:32:38 2011 (r847) @@ -0,0 +1,1705 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/66F114BF5390C6AF39FF5232D8DD9FD7.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/66F114BF5390C6AF39FF5232D8DD9FD7.cache.html Wed Sep 7 04:32:38 2011 (r847) @@ -0,0 +1,1676 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9595A1660BBB73E652C658A396F10F77.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9595A1660BBB73E652C658A396F10F77.cache.html Wed Sep 7 04:32:38 2011 (r847) @@ -0,0 +1,1686 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DFA78D07F39AE245745AAD16C08FA261.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DFA78D07F39AE245745AAD16C08FA261.cache.html Wed Sep 7 04:32:38 2011 (r847) @@ -0,0 +1,1723 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EE8FA68B7FC9D19FFD542F77022B10BA.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EE8FA68B7FC9D19FFD542F77022B10BA.cache.html Wed Sep 7 04:32:38 2011 (r847) @@ -0,0 +1,1678 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Wed Sep 7 04:32:38 2011 (r847) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='18FF2258A2E4E9EDBAF628CF8F836F34',Pb='1ABFFA09FB935227E38ADCFDCFB16392',Qb='66F114BF5390C6AF39FF5232D8DD9FD7',Rb='9595A1660BBB73E652C658A396F10F77',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + From lgiessmann at common-lisp.net Wed Sep 7 12:04:11 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 05:04:11 -0700 Subject: [isidorus-cvs] r848 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 7 05:04:11 2011 New Revision: 848 Log: gdl-frontend: Widgets: fixed the isidorus constants Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 7 04:32:38 2011 (r847) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 7 05:04:11 2011 (r848) @@ -1,12 +1,12 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; -import com.google.gwt.core.client.GWT; + import com.google.gwt.user.client.Window; public class IsidorusConstants { - public final static String DELETE_REUQEST_URL = Window.Location.getHost() + "/gdl/delete"; - public final static String COMMIT_REQUEST_URL = Window.Location.getHost() + "/gdl/commit"; - public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getHost() + "/gdl/fragment/"; - public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; //"gdl/schema"; + public final static String DELETE_REUQEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; + public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; + public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; + public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; //GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Wed Sep 7 04:32:38 2011 (r847) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Wed Sep 7 05:04:11 2011 (r848) @@ -35,6 +35,7 @@ public void loadSchema(GdlPanel panel, Pair requestedTopicToEdit , ArrayList> requestedTopicsToCreate)throws RequestException { this.requestedTopicsToCreate = requestedTopicsToCreate; this.requestedTopicToEdit = requestedTopicToEdit; + Window.alert("request address >> " + isidorusUrl); //TODO: remove requestBuilder.sendRequest(null, new RequestCallbackImpl(panel)); } @@ -63,7 +64,7 @@ }catch(ExecutionException e){ Window.alert("Execution Error: " + e.getMessage()); }catch(Exception e){ - Window.alert("panel: " + panel + ", tm: " + panel.getSchemaTm() + "\ncought error: " + e.getLocalizedMessage()); // TODO: implement smarter error handling + Window.alert("panel: " + panel + ", tm: " + panel.getSchemaTm() + "\ncaught error: " + e.getLocalizedMessage()); // TODO: implement smarter error handling e.printStackTrace(); } } else { From lgiessmann at common-lisp.net Wed Sep 7 12:08:37 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 05:08:37 -0700 Subject: [isidorus-cvs] r849 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Wed Sep 7 05:08:36 2011 New Revision: 849 Log: Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/18FF2258A2E4E9EDBAF628CF8F836F34.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1ABFFA09FB935227E38ADCFDCFB16392.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/66F114BF5390C6AF39FF5232D8DD9FD7.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9595A1660BBB73E652C658A396F10F77.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DFA78D07F39AE245745AAD16C08FA261.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EE8FA68B7FC9D19FFD542F77022B10BA.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Wed Sep 7 12:09:10 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 05:09:10 -0700 Subject: [isidorus-cvs] r850 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt gwt/clean gwt/clean/images Message-ID: Author: lgiessmann Date: Wed Sep 7 05:09:09 2011 New Revision: 850 Log: Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/60D425144DEB89C769190AE7DBCFF36B.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/85026878439D3B9B06FE24F740D47B09.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9E175DC3274C371E25CF956438ACF716.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/B3FD0B7D33EE307D43B6E2974D1AA148.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D62BF14D86217B56B4DF1FC4EE595EAA.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/F48231D57D57AA211ADF395BF323F144.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/60D425144DEB89C769190AE7DBCFF36B.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/60D425144DEB89C769190AE7DBCFF36B.cache.html Wed Sep 7 05:09:09 2011 (r850) @@ -0,0 +1,1686 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/85026878439D3B9B06FE24F740D47B09.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/85026878439D3B9B06FE24F740D47B09.cache.html Wed Sep 7 05:09:09 2011 (r850) @@ -0,0 +1,1678 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9E175DC3274C371E25CF956438ACF716.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9E175DC3274C371E25CF956438ACF716.cache.html Wed Sep 7 05:09:09 2011 (r850) @@ -0,0 +1,1723 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/B3FD0B7D33EE307D43B6E2974D1AA148.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/B3FD0B7D33EE307D43B6E2974D1AA148.cache.html Wed Sep 7 05:09:09 2011 (r850) @@ -0,0 +1,1665 @@ + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D62BF14D86217B56B4DF1FC4EE595EAA.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D62BF14D86217B56B4DF1FC4EE595EAA.cache.html Wed Sep 7 05:09:09 2011 (r850) @@ -0,0 +1,1705 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/F48231D57D57AA211ADF395BF323F144.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/F48231D57D57AA211ADF395BF323F144.cache.html Wed Sep 7 05:09:09 2011 (r850) @@ -0,0 +1,1676 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Wed Sep 7 05:09:09 2011 (r850) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='60D425144DEB89C769190AE7DBCFF36B',Pb='85026878439D3B9B06FE24F740D47B09',Qb='9E175DC3274C371E25CF956438ACF716',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + From lgiessmann at common-lisp.net Wed Sep 7 13:12:52 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 06:12:52 -0700 Subject: [isidorus-cvs] r851 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Wed Sep 7 06:12:51 2011 New Revision: 851 Log: Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/60D425144DEB89C769190AE7DBCFF36B.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/85026878439D3B9B06FE24F740D47B09.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9E175DC3274C371E25CF956438ACF716.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/B3FD0B7D33EE307D43B6E2974D1AA148.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D62BF14D86217B56B4DF1FC4EE595EAA.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/F48231D57D57AA211ADF395BF323F144.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Wed Sep 7 14:01:40 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 07:01:40 -0700 Subject: [isidorus-cvs] r852 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment Message-ID: Author: lgiessmann Date: Wed Sep 7 07:01:38 2011 New Revision: 852 Log: Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java Wed Sep 7 06:12:51 2011 (r851) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java Wed Sep 7 07:01:38 2011 (r852) @@ -128,9 +128,7 @@ for (Pair pair : panel.getReqeustedTopicsToCreate()) values += ", " + pair.getFirst(); if(values.length() >= 2 )values = values.substring(2); - String bindings = ""; - for (Topic top : views) - bindings += ", " + TmHelper.getAnyIdOfTopic(top); + String bindings = Utils.topicArrayToString(views); if(bindings.length() >= 2)bindings = bindings.substring(2); else bindings = "[]"; throw new InvalidGdlSchemaException("the combination of topics requested (" + values + ") must be bound exactly once to a " + PSIs.GDL.TopicType.gdlDefaultCreatorTopicView + " but is bound to " + bindings); @@ -217,9 +215,7 @@ if(views.size() == 1){ return new GdlDefaultEditorTopicView(views.get(0), requestedTop, null, panel); }else if(views.size() > 1){ - String bindings = ""; - for (Topic top : views) - bindings += ", " + TmHelper.getAnyIdOfTopic(top); + String bindings = Utils.topicArrayToString(views); if(bindings.length() >= 2)bindings = bindings.substring(2); throw new InvalidGdlSchemaException("the topic " + panel.getRequestedTopicToEdit().getFirst() + " requested for editing must be bound to exaclty one " + PSIs.GDL.TopicType.gdlDefaultEditorTopicView + ", but is bound to " + bindings); }else { @@ -234,9 +230,7 @@ for (Pair pair : typesOfRequestedTopic) values += ", " + pair.getFirst(); if(values.length() >= 2)values = values.substring(2); - String bindings = "["; - for (Topic top : views) - bindings += ", " + TmHelper.getAnyIdOfTopic(top); + String bindings = Utils.topicArrayToString(views); if(bindings.length() >= 2)bindings = bindings.substring(2) + "]"; else bindings = "[ ]"; throw new InvalidGdlSchemaException("the combination of topic types (" + values + ") for the requested topic " + panel.getRequestedTopicToEdit().getFirst() + " must be bound exactly once to a " + PSIs.GDL.TopicType.gdlDefaultEditorTopicView + " but is bound to " + bindings); From lgiessmann at common-lisp.net Wed Sep 7 15:10:12 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 07 Sep 2011 08:10:12 -0700 Subject: [isidorus-cvs] r853 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base Message-ID: Author: lgiessmann Date: Wed Sep 7 08:10:11 2011 New Revision: 853 Log: gdl-frontend: Widgets: fixed a bug in GdlVisibleObject.getOccurrences(...) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Wed Sep 7 07:01:38 2011 (r852) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Wed Sep 7 08:10:11 2011 (r853) @@ -221,9 +221,10 @@ // a helper method that returns all occurrences of the type bound to the passed PSI + @SuppressWarnings("unchecked") protected JsArray getOccurrences(String occurrenceType){ Topic occType = tm.getTopicBySubjectIdentifier(tm.createLocator(occurrenceType)); - if(occType == null) return null; + if(occType == null) return (JsArray)JsArray.createArray(); else return tmRepresentative.getOccurrences(occType); } From lgiessmann at common-lisp.net Thu Sep 8 12:38:55 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 08 Sep 2011 05:38:55 -0700 Subject: [isidorus-cvs] r854 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Thu Sep 8 05:38:54 2011 New Revision: 854 Log: gdl-frontend: Widgets: fixed a bug when declaring the tmdm:supertype of gdlt:Hidden-Value Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Wed Sep 7 08:10:11 2011 (r853) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Sep 8 05:38:54 2011 (r854) @@ -157,7 +157,7 @@ {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:View]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Association-View]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Association-View]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Editor-Association-View]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Descriptor]"}]}, - {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Hidden-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Descriptor]"}]}, + {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Descriptor]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Hidden-Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:TM-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:TM-Single-Type-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:TM-Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Default-Literal-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Literal-Value]"}]}, Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Wed Sep 7 08:10:11 2011 (r853) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Thu Sep 8 05:38:54 2011 (r854) @@ -9341,13 +9341,13 @@ "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:subtype]", "reifier":null, "player":"si:[pref_2:Hidden-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:supertype]", "reifier":null, "player":"si:[pref_2:Descriptor]" } @@ -10515,25 +10515,6 @@ } ] }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - } - ] - }, { "item_identifiers":null, "type":"si:[pref_6:supertype-subtype]", From lgiessmann at common-lisp.net Thu Sep 8 13:05:58 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 08 Sep 2011 06:05:58 -0700 Subject: [isidorus-cvs] r855 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Thu Sep 8 06:05:57 2011 New Revision: 855 Log: gdl-frontend: Widgets: fixed a bug when declaring with gdlt:Hidden-Value of the creator view of http://textgrid.org/serviceregistry/model/types/Hash-Object Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Thu Sep 8 05:38:54 2011 (r854) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Thu Sep 8 06:05:57 2011 (r855) @@ -22,6 +22,8 @@ {"subject_identifiers":["[tmcl:topic-role-constraint]"], "instance_of":["si:[tmcl:topic-type]"]}, {"subject_identifiers":["[tmcl:association-role-constraint]"], "instance_of":["si:[tmcl:topic-type]"]}, {"subject_identifiers":["[tmcl:topic-name-constraint]"], "instance_of":["si:[tmcl:topic-type]"]}, + {"subject_identifiers":["[tgm:hash-hash-type-constraint]"], "instance_of":["si:[tmcl:topic-occurrence-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, + {"subject_identifiers":["[tmdm:supertype]"], "instance_of":["si:[tmcl:role-type]"]}, {"subject_identifiers":["[tmdm:subtype]"], "instance_of":["si:[tmcl:role-type]"]}, @@ -35,7 +37,8 @@ {"subject_identifiers":["[tgm:has-environment-hash-role-constraint]"], "instance_of":["si:[tmcl:topic-role-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, {"subject_identifiers":["[tgm:has-environment-hash-association-role-constraint]"], "instance_of":["si:[tmcl:association-role-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, {"subject_identifiers":["[tgm:environment-name-constraint]"], "instance_of":["si:[tmcl:topic-name-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, - + {"subject_identifiers":["[tgm:hash-hash-type-constraint]"], "instance_of":["si:[tmcl:topic-occurrence-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, + {"subject_identifiers":["[gdl:contains]"], "instance_of":["si:[tmcl:association-type]"]}, {"subject_identifiers":["[gdl:topic-view-binding]"], "instance_of":["si:[tmcl:association-type]"]}, {"subject_identifiers":["[gdl:association-view-binding]"], "instance_of":["si:[tmcl:association-type]"]}, @@ -103,6 +106,9 @@ {"subject_identifiers":["[tgg:hash-object-default-creator-topic-view]"], "instance_of":["si:[gdlt:Default-Creator-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object"}], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_default_creator_topic_view_id"}, {"type":"si:[gdl:width]", "value":"362px"}, {"type":"si:[gdl:height]", "value":"160px"},{"type":"si:[gdl:background-color]", "value":"gray"}]}, {"subject_identifiers":["[tgg:hash-object-creator-view-binding]"], "instance_of":["si:[gdlt:TM-Single-Type-Value]"]}, + {"subject_identifiers":["[tgg:hash-hash-type-hidden-value]"], "instance_of":["si:[gdlt:Hidden-Value]"]}, + {"subject_identifiers":["[tgg:hash-hash-type-default-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"confserver"}]}, + {"subject_identifiers":["[tgg:has-environment-creator-association-view]"], "instance_of":["si:[gdlt:Creator-Association-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"has_environment_createor_association_view_id"}, {"type":"si:[gdl:width]", "value":"230px"}]}, {"subject_identifiers":["[tgg:hash-object-has-environement-creator-association-view-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, @@ -176,6 +182,10 @@ {"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-creator-view-binding]"},{"type":"si:[gdl:tm-construct]", "player":"si:[tgt:Hash-Object]"}]}, {"type":"si:[gdl:topic-view-binding]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-default-creator-topic-view]"},{"type":"si:[gdl:tm-value]", "player":"si:[tgg:hash-object-creator-view-binding]"}]}, + {"type":"si:[gdl:contains]", "roles":[{"type":"si:[gdl:container]", "player":"si:[tgg:hash-object-default-creator-topic-view]"}, {"type":"si:[gdl:containee]", "player":"si:[tgg:hash-hash-type-hidden-value]"}]}, + {"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:hidden-value]", "player":"si:[tgg:hash-hash-type-hidden-value]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:hash-hash-type-constraint]"}]}, + {"type":"si:[gdl:value-binding]", "roles":[{"type":"si:[gdl:hidden-value]", "player":"si:[tgg:hash-hash-type-hidden-value]"}, {"type":"si:[gdl:value]", "player":"si:[tgg:hash-hash-type-default-value]"}]}, + {"type":"si:[gdl:contains]", "roles":[{"type":"si:[gdl:container]", "player":"si:[tgg:hash-object-default-creator-topic-view]"},{"type":"si:[gdl:containee]", "player":"si:[tgg:hash-object-creator-text-label-env]"}]}, {"type":"si:[gdl:position]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-creator-text-label-env-position]"},{"type":"si:[gdl:ancestor]", "player":"si:[tgg:hash-object-default-creator-topic-view]"},{"type":"si:[gdl:descendant]", "player":"si:[tgg:hash-object-creator-text-label-env]"}]}, {"type":"si:[gdl:value-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-creator-text-label-env-value-group]"},{"type":"si:[gdl:value]", "player":"si:[tgg:hash-object-creator-text-label-env-value]"}]}, Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Sep 8 05:38:54 2011 (r854) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Sep 8 06:05:57 2011 (r855) @@ -35,7 +35,6 @@ {"subject_identifiers":["[tgm:has-environment-hash-role-constraint]"], "instance_of":["si:[tmcl:topic-role-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, {"subject_identifiers":["[tgm:has-environment-hash-association-role-constraint]"], "instance_of":["si:[tmcl:association-role-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, {"subject_identifiers":["[tgm:environment-name-constraint]"], "instance_of":["si:[tmcl:topic-name-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, - {"subject_identifiers":["[tgm:hash-hash-type-constraint]"], "instance_of":["si:[tmcl:topic-occurrence-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, {"subject_identifiers":["[gdl:contains]"], "instance_of":["si:[tmcl:association-type]"]}, {"subject_identifiers":["[gdl:topic-view-binding]"], "instance_of":["si:[tmcl:association-type]"]}, @@ -54,13 +53,11 @@ {"subject_identifiers":["[gdl:value]"], "instance_of":["si:[tmcl:role-type]"]}, {"subject_identifiers":["[gdl:ancestor]"], "instance_of":["si:[tmcl:role-type]"]}, {"subject_identifiers":["[gdl:descendant]"], "instance_of":["si:[tmcl:role-type]"]}, - {"subject_identifiers":["[gdl:hidden-value]"], "instance_of":["si:[tmcl:role-type]"]}, {"subject_identifiers":["[gdlt:Schema]"], "instance_of":["si:[tmcl:topic-type]"]}, {"subject_identifiers":["[gdl:schema-name]"], "instance_of":["si:[tmcl:name-type]"]}, {"subject_identifiers":["[gdlt:Descriptor]"], "instance_of":["si:[tmcl:topic-type]"]}, {"subject_identifiers":["[gdlt:Role-Player]"]}, - {"subject_identifiers":["[gdlt:Hidden-Value]"]}, {"subject_identifiers":["[gdlt:Visible-Object]"]}, {"subject_identifiers":["[gdl:width]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:height]"], "instance_of":["si:[tmcl:occurrence-type]"]}, @@ -104,9 +101,6 @@ {"subject_identifiers":["[tgg:hash-object-default-editor-topic-view]"], "instance_of":["si:[gdlt:Default-Editor-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object"}], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_default_editor_topic_view_id"}, {"type":"si:[gdl:width]", "value":"362px"}, {"type":"si:[gdl:height]", "value":"160px"},{"type":"si:[gdl:background-color]", "value":"gray"}]}, {"subject_identifiers":["[tgg:hash-object-editor-view-binding]"], "instance_of":["si:[gdlt:TM-Single-Type-Value]"]}, - {"subject_identifiers":["[tgg:hash-hash-type-hidden-value]"], "instance_of":["si:[gdlt:Hidden-Value]"]}, - {"subject_identifiers":["[tgg:hash-hash-type-default-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"confserver"}]}, - {"subject_identifiers":["[tgg:hash-object-editor-text-label-env]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_label_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"gray"}, {"type":"si:[gdl:border-style]", "value":"none"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-label-env-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"10px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-label-env-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, @@ -157,7 +151,6 @@ {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:View]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Association-View]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Association-View]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Editor-Association-View]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Descriptor]"}]}, - {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Descriptor]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Hidden-Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:TM-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:TM-Single-Type-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:TM-Value]"}]}, {"type":"si:[tmdm:supertype-subtype]", "roles":[{"type":"si:[tmdm:supertype]", "player":"si:[gdlt:Default-Literal-Value]"},{"type":"si:[tmdm:subtype]", "player":"si:[gdlt:Literal-Value]"}]}, @@ -173,11 +166,7 @@ {"type":"si:[gdl:contains]", "roles":[{"type":"si:[gdl:container]", "player":"si:[tgg:textgrid-ui-schema]"},{"type":"si:[gdl:containee]", "player":"si:[tgg:hash-object-default-editor-topic-view]"}]}, {"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-editor-view-binding]"},{"type":"si:[gdl:tm-construct]", "player":"si:[tgt:Hash-Object]"}]}, {"type":"si:[gdl:topic-view-binding]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-default-editor-topic-view]"},{"type":"si:[gdl:tm-value]", "player":"si:[tgg:hash-object-editor-view-binding]"}]}, - - {"type":"si:[gdl:contains]", "roles":[{"type":"si:[gdl:container]", "player":"si:[tgg:hash-object-default-editor-topic-view]"}, {"type":"si:[gdl:containee]", "player":"si:[tgg:hash-hash-type-hidden-value]"}]}, - {"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:hidden-value]", "player":"si:[tgg:hash-hash-type-hidden-value]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:hash-hash-type-constraint]"}]}, - {"type":"si:[gdl:value-binding]", "roles":[{"type":"si:[gdl:hidden-value]", "player":"si:[tgg:hash-hash-type-hidden-value]"}, {"type":"si:[gdl:value]", "player":"si:[tgg:hash-hash-type-default-value]"}]}, - + {"type":"si:[gdl:contains]", "roles":[{"type":"si:[gdl:container]", "player":"si:[tgg:hash-object-default-editor-topic-view]"},{"type":"si:[gdl:containee]", "player":"si:[tgg:hash-object-editor-text-label-env]"}]}, {"type":"si:[gdl:position]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-editor-text-label-env-position]"},{"type":"si:[gdl:ancestor]", "player":"si:[tgg:hash-object-default-editor-topic-view]"},{"type":"si:[gdl:descendant]", "player":"si:[tgg:hash-object-editor-text-label-env]"}]}, {"type":"si:[gdl:value-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-editor-text-label-env-value-group]"},{"type":"si:[gdl:value]", "player":"si:[tgg:hash-object-editor-text-label-env-value]"}]}, From lgiessmann at common-lisp.net Thu Sep 8 14:02:39 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 08 Sep 2011 07:02:39 -0700 Subject: [isidorus-cvs] r856 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Thu Sep 8 07:02:36 2011 New Revision: 856 Log: gdl-frontend: Widgets: merged the new schema files Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Thu Sep 8 06:05:57 2011 (r855) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Thu Sep 8 07:02:36 2011 (r856) @@ -23,8 +23,7 @@ {"subject_identifiers":["[tmcl:association-role-constraint]"], "instance_of":["si:[tmcl:topic-type]"]}, {"subject_identifiers":["[tmcl:topic-name-constraint]"], "instance_of":["si:[tmcl:topic-type]"]}, {"subject_identifiers":["[tgm:hash-hash-type-constraint]"], "instance_of":["si:[tmcl:topic-occurrence-constraint]"], "occurrences":[{"type":"si:[tmcl:card-min]", "value":"1"}, {"type":"si:[tmcl:card-max]", "value":"1"}]}, - - + {"subject_identifiers":["[tmdm:supertype]"], "instance_of":["si:[tmcl:role-type]"]}, {"subject_identifiers":["[tmdm:subtype]"], "instance_of":["si:[tmcl:role-type]"]}, {"subject_identifiers":["[tmdm:supertype-subtype]"], "instance_of":["si:[tmcl:association-type]"]}, Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Thu Sep 8 06:05:57 2011 (r855) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Thu Sep 8 07:02:36 2011 (r856) @@ -3338,34 +3338,6 @@ ] }, { - "subject_identifiers":["[pref_1:hash-hash-type-default-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"confserver", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" - ], - "names":null, - "occurrences":null - }, - { "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" ], "subject_locators":null, @@ -4349,6 +4321,34 @@ ] }, { + "subject_identifiers":["[pref_1:hash-hash-type-default-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"confserver", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" ], "subject_locators":null, @@ -4477,8 +4477,7 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]", - "si:[pref_3:left]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null @@ -4494,7 +4493,8 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:position-style]" + "subject_identifiers":["[pref_3:position-style]", + "[pref_3:position-style]" ], "subject_locators":null, "item_identifiers":null, @@ -4722,8 +4722,7 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]", - "si:[pref_3:background-color]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null @@ -4783,8 +4782,7 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]", - "si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null @@ -4897,8 +4895,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:tm-construct]", - "[pref_3:tm-construct]" + "subject_identifiers":["[pref_3:tm-construct]" ], "subject_locators":null, "item_identifiers":null, @@ -4942,13 +4939,15 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_7:association-type]", + "si:[pref_3:position]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:value-binding]" + "subject_identifiers":["[pref_3:value-binding]", + "[pref_3:value-binding]" ], "subject_locators":null, "item_identifiers":null, @@ -4992,7 +4991,8 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_7:association-type]", + "si:[pref_3:topic-view-binding]" ], "names":null, "occurrences":null @@ -5668,8 +5668,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_5:Service]", - "[pref_5:Service]" + "subject_identifiers":["[pref_5:Service]" ], "subject_locators":null, "item_identifiers":null, @@ -6302,6 +6301,25 @@ }, { "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, @@ -8106,25 +8124,6 @@ }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - } - ] - }, - { - "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, "scope":null, @@ -9147,63 +9146,6 @@ }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - } - ] - }, - { - "item_identifiers":null, "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, @@ -9287,25 +9229,6 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, "player":"si:[pref_2:Association-View]" }, { @@ -10170,6 +10093,63 @@ }, { "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-default-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + } + ] + }, + { + "item_identifiers":null, "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, @@ -10374,12 +10354,6 @@ "type":"si:[pref_6:subtype]", "reifier":null, "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" } ] }, @@ -10684,6 +10658,12 @@ "type":"si:[pref_7:constraint]", "reifier":null, "player":"si:[pref_4:has-hash-service-association-role-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" } ] }, @@ -10836,6 +10816,12 @@ "type":"si:[pref_7:constraint]", "reifier":null, "player":"si:[pref_4:has-hash-hash-role-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, @@ -11469,4 +11455,4 @@ ], "item_type":"topicmap", "reifier":null -} \ No newline at end of file +} Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Thu Sep 8 06:05:57 2011 (r855) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Thu Sep 8 07:02:36 2011 (r856) @@ -1,2 +1,14596 @@ - -11^http://textgrid.org/serviceregistry/environment/.+$11^.+$11^http://textgrid.org/serviceregistry/hashobject/.+/.+$11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$1111111111111111GDL Schema for the TextGrid-ServiceRegistry-UIGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_creator_topic_view_id362px160pxgrayA Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_createor_association_view_id230pxabsolute10px120pxhash_object_text_label_env_idtrue100pxgraynoneabsolute10px10pxenvironment:hash_object_text_list_box_env_idtrue232pxabsolute0px0pxhash_object_text_label_key_idtrue100pxgraynoneabsolute40px10pxkey:hash_object_text_key_idfalse230pxtextnone2pxabsolute40px120pxhash_object_text_label_value_idtrue100pxgraynoneabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_reset_button_id30px80px12pxabsolute115px10pxresethash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_editor_topic_view_id362px160pxgrayconfserverhash_object_text_label_env_idtrue100pxgraynoneabsolute10px10pxenvironment:A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_editor_association_view_id230pxabsolute10px120pxhash_object_text_env_idtrue230px2pxabsolute0px0pxhash_object_text_label_key_idtrue100pxgraynoneabsolute40px10pxkey:hash_object_text_key_idtrue230pxtextnone2pxabsolute40px120pxhash_object_text_label_value_idtrue100pxgraynoneabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_delete_button_id30px80px12pxabsolute115px10pxhash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_creator_topic_view_id322px100pxgrayenvironment_text_label_idtrue60pxgraynoneabsolute10px10pxname:environment_name_text_idfalse240pxtext2pxabsolute10px70pxenvironment_commit_button_id30px80px12pxabsolute65px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_editor_topic_view_id322px100pxgrayenvironment_text_label_idtrue60pxgraynoneabsolute10px10pxname:environment_name_text_idtrue240pxtext2pxabsolute10px70pxenvironment_delete_button_id30px80px12pxabsolute65px10px11^http://textgrid.org/serviceregistry/service/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean11^http://textgrid.org/serviceregistry/parameter/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean11^http://textgrid.org/serviceregistry/parameter-config/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string1111111111111111 \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/environment/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Schema for the TextGrid-ServiceRegistry-UI + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_creator_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + gray + + + + + + + + + + + + + + + + + + + + + + + + + + + confserver + + + + + + + + + + + + + A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_createor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + hash_object_text_list_box_env_id + + + + + + true + + + + + + 232px + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_reset_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + reset + + + + + + + + + + + + + hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_editor_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + gray + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_editor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + hash_object_text_env_id + + + + + + true + + + + + + 230px + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + true + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_creator_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + gray + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + false + + + + + + 240px + + + + + + text + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_editor_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + gray + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + true + + + + + + 240px + + + + + + text + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/service/.+$ + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/parameter/.+$ + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/parameter-config/.+$ + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Thu Sep 8 06:05:57 2011 (r855) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Thu Sep 8 07:02:36 2011 (r856) @@ -1 +1,7724 @@ -{"version":"1.1","prefixes":{"pref_5":"http:\/\/textgrid.org\/serviceregistry\/model\/types\/","pref_4":"http:\/\/textgrid.org\/serviceregistry\/model\/","pref_1":"http:\/\/textgrid.org\/serviceregistry\/gdl\/","pref_6":"http:\/\/psi.topicmaps.org\/iso13250\/model\/","pref_8":"http:\/\/textgrid.org\/serviceregistry\/","xsd":"http:\/\/www.w3.org\/2001\/XMLSchema#","pref_2":"http:\/\/psi.isidor.us\/gdl\/types\/","pref_7":"http:\/\/psi.topicmaps.org\/tmcl\/","pref_3":"http:\/\/psi.isidor.us\/gdl\/"},"item_identifiers":["[pref_8:services-tm]"],"topics":[{"subject_identifiers":["[pref_1:environment-editor-delete-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"65px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-delete-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Delete-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_delete_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-name-text-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-editor-name-text-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"70px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-name-text]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_name_text_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"240px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"name:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-editor-text-label-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_text_label_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"60px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-default-editor-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Editor-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Editor Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_default_editor_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"322px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"65px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-name-text-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-creator-name-text-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"70px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-name-text]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_name_text_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"240px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"name:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-creator-text-label-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_text_label_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"60px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-default-creator-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Creator-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Creator Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_default_creator_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"322px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_3:cursor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-delete-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Delete-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_delete_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:pointer]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"value:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:pointer]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"key:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"0px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"0px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:has-environment-editor-association-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Editor-Association-View]"],"names":[{"item_identifiers":null,"value":"A Editor View for associations of the type http:\/\/textgrid.org\/serviceregistry\/model\/has-environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"has_environment_editor_association_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"environment:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-hash-type-default-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"confserver","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-hash-type-hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Hidden-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Editor-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Editor Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Hash-Object","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_default_editor_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"362px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"160px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_2:Delete-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Editor-Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Editor-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"reset","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Action-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_reset_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:pointer]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"value:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:pointer]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"key:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Role-Player]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"0px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"0px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:List-Box]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_list_box_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"232px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"environment:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Role-Player]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Hidden-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:has-environment-creator-association-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Creator-Association-View]"],"names":[{"item_identifiers":null,"value":"A Creator View for associations of the type http:\/\/textgrid.org\/serviceregistry\/model\/has-environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"has_environment_createor_association_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Creator-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Creator Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Hash-Object","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_default_creator_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"362px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"160px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:textgrid-ui-schema]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Schema]"],"names":[{"item_identifiers":null,"value":"GDL Schema for the TextGrid-ServiceRegistry-UI","type":"si:[pref_3:schema-name]","scope":null,"variants":null,"reifier":null}],"occurrences":null},{"subject_identifiers":["[pref_2:Commit-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Action-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Value-Group]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:right]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:left]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]","si:[pref_3:left]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:top]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:position-style]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Position]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:font-size]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:readonly]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Text]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:List-Box]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Text-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Literal-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:fixed]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:literal-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Literal-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:TM-Single-Type-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:display-by]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:TM-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Creator-Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Creator-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:view-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:id]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:background-color]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]","si:[pref_3:background-color]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:border-style]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:pointer]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:height]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:padding-left]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:width]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]","si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Hidden-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Visible-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Role-Player]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Descriptor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:schema-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Schema]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:descendant]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:ancestor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:descriptor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-construct]","[pref_3:tm-construct]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:containee]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:container]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:association-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:topic-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:contains]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-service-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-hash-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-hash-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-environment-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/hashobject\/.+\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/environment\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:hash]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:service]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-hash]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:environment-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:hash-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Hash-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Service]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:supertype-subtype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:subtype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:supertype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-role]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-topic-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-statement]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:occurrence-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-occurrence-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:subject-identifier-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]","si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:datatype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:regexp]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:card-max]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:card-min]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:association-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:role-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:occurrence-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:name-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null}],"associations":[{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:environment-editor-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Environment]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Visible-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Text-Object]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:environment-creator-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Environment]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:display-by]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-hash-type-default-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:hash-object-editor-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Hash-Object]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Action-Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Delete-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Hidden-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Descriptor]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Association-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Editor-Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Editor-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:display-by]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-hash-role-player]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-hash-role-hidden-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:has-environment-hash-role-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-hash-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:hash-object-creator-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Hash-Object]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Action-Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Commit-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Action-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value-Group]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Position]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Text]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:List-Box]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Visible-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Visible-Object]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Literal-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:TM-Single-Type-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:TM-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:TM-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Hidden-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Descriptor]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Association-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Creator-Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Creator-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Visible-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Visible-Object]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Role-Player]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment-name]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment-name]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-psi-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-psi-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-occurrence-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:subject-identifier-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-name-constraint]"}]}],"item_type":"topicmap","reifier":null} \ No newline at end of file +{ + "version":"1.1", + "prefixes":{ + "pref_5":"http://textgrid.org/serviceregistry/model/types/", + "pref_4":"http://textgrid.org/serviceregistry/model/", + "pref_1":"http://textgrid.org/serviceregistry/gdl/", + "pref_6":"http://psi.topicmaps.org/iso13250/model/", + "pref_8":"http://textgrid.org/serviceregistry/", + "xsd":"http://www.w3.org/2001/XMLSchema#", + "pref_2":"http://psi.isidor.us/gdl/types/", + "pref_7":"http://psi.topicmaps.org/tmcl/", + "pref_3":"http://psi.isidor.us/gdl/" + }, + "item_identifiers":["[pref_8:services-tm]" + ], + "topics":[{ + "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-delete-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Delete-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"70px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"240px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"60px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"322px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-commit-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"70px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"240px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"60px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_default_creator_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"322px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_3:cursor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Delete-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:has-environment-editor-association-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Editor-Association-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_editor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_2:Delete-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Editor-Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"reset", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Action-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_reset_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Role-Player]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:List-Box]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_list_box_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"232px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Role-Player]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Creator-Association-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_createor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-hash-type-default-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"confserver", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_creator_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:textgrid-ui-schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Schema]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_3:schema-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Commit-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Action-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value-Group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:right]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:left]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:top]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position-style]", + "[pref_3:position-style]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:font-size]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:readonly]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:List-Box]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Text-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Literal-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:fixed]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:literal-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Literal-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Single-Type-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:display-by]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Creator-Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:background-color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:border-style]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:pointer]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:height]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:padding-left]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:width]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Hidden-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Visible-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Role-Player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:schema-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descendant]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:ancestor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-construct]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:containee]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:container]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]", + "si:[pref_3:position]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-binding]", + "[pref_3:value-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:association-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:topic-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]", + "si:[pref_3:topic-view-binding]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:contains]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:environment-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Hash-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype-subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-role]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-statement]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-occurrence-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:subject-identifier-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:datatype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regexp]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-max]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-min]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:role-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:name-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + } + ], + "associations":[{ + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:environment-editor-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Environment]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:environment-creator-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Environment]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Delete-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Editor-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Editor-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-default-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Commit-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:List-Box]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Creator-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Creator-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-psi-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-psi-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-occurrence-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:subject-identifier-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-name-constraint]" + } + ] + } + ], + "item_type":"topicmap", + "reifier":null +} Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Thu Sep 8 06:05:57 2011 (r855) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Thu Sep 8 07:02:36 2011 (r856) @@ -1,2 +1,9730 @@ - -11^http://textgrid.org/serviceregistry/environment/.+$11^.+$11^http://textgrid.org/serviceregistry/hashobject/.+/.+$11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$1111111111111111GDL Schema for the TextGrid-ServiceRegistry-UIGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_creator_topic_view_id362px160pxgrayA Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_createor_association_view_id230pxabsolute10px120pxhash_object_text_label_env_idtrue100pxgraynoneabsolute10px10pxenvironment:hash_object_text_list_box_env_idtrue232pxabsolute0px0pxhash_object_text_label_key_idtrue100pxgraynoneabsolute40px10pxkey:hash_object_text_key_idfalse230pxtextnone2pxabsolute40px120pxhash_object_text_label_value_idtrue100pxgraynoneabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_reset_button_id30px80px12pxabsolute115px10pxresethash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_editor_topic_view_id362px160pxgrayconfserverhash_object_text_label_env_idtrue100pxgraynoneabsolute10px10pxenvironment:A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_editor_association_view_id230pxabsolute10px120pxhash_object_text_env_idtrue230px2pxabsolute0px0pxhash_object_text_label_key_idtrue100pxgraynoneabsolute40px10pxkey:hash_object_text_key_idtrue230pxtextnone2pxabsolute40px120pxhash_object_text_label_value_idtrue100pxgraynoneabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_delete_button_id30px80px12pxabsolute115px10pxhash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_creator_topic_view_id322px100pxgrayenvironment_text_label_idtrue60pxgraynoneabsolute10px10pxname:environment_name_text_idfalse240pxtext2pxabsolute10px70pxenvironment_commit_button_id30px80px12pxabsolute65px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_editor_topic_view_id322px100pxgrayenvironment_text_label_idtrue60pxgraynoneabsolute10px10pxname:environment_name_text_idtrue240pxtext2pxabsolute10px70pxenvironment_delete_button_id30px80px12pxabsolute65px10px \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/environment/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Schema for the TextGrid-ServiceRegistry-UI + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_creator_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + gray + + + + + + + + + + + + + + + + + + + + + + + + + + + confserver + + + + + + + + + + + + + A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_createor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + hash_object_text_list_box_env_id + + + + + + true + + + + + + 232px + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_reset_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + reset + + + + + + + + + + + + + hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_editor_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + gray + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_editor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + hash_object_text_env_id + + + + + + true + + + + + + 230px + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + true + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_creator_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + gray + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + false + + + + + + 240px + + + + + + text + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_editor_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + gray + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + true + + + + + + 240px + + + + + + text + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Thu Sep 8 06:05:57 2011 (r855) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Thu Sep 8 07:02:36 2011 (r856) @@ -34,1791 +34,1619 @@ {"type":"si:[pref_4:value]", "value":"value-value-2", "datatype":"[xsd:string]"}] }, { - "subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + ], + "instance_of":["si:[pref_2:Position]" + ], + "occurrences":[{ + "type":"si:[pref_3:position-style]", + "value":"absolute" + }, + { + "type":"si:[pref_3:top]", + "value":"65px" + }, + { + "type":"si:[pref_3:left]", + "value":"10px" + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:Delete-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"environment_delete_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:height]", + "value":"30px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-config-configuration-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"80px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-config-parameter-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-name-text-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"10px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:left]", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-parameter-service-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-name-text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"240px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:cursor]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:literal-value]", + "value":"name:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-data-constraint]" + "subject_identifiers":["[pref_1:environment-editor-text-label-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"10px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-config-form-constraint]" + "subject_identifiers":["[pref_1:environment-editor-text-label]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:width]", + "value":"60px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-default-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]" + "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_default_editor_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"322px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:height]", + "value":"100px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-config-psi-constraint]" + "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"65px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", + "type":"si:[pref_3:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:id]", + "value":"environment_commit_button_id", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:height]", + "value":"30px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-crud-constraint]" + "subject_identifiers":["[pref_1:environment-creator-name-text-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"10px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:left]", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-multiple-constraint]" + "subject_identifiers":["[pref_1:environment-creator-name-text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"false", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"240px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-mime-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:cursor]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-param-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-param-constraint]" + "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"10px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-parameter-type-constraint]" + "subject_identifiers":["[pref_1:environment-creator-text-label]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"60px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-parameter-id-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-name-constraint]" + "subject_identifiers":["[pref_1:environment-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-psi-constraint]" + "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"environment_default_creator_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"322px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/parameter/.+$", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]" + "subject_identifiers":["[pref_3:cursor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-tg-approved-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"115px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-textgrid-url-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_commit_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:height]", + "value":"30px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-identifier-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-identifier-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"115px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-owner-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-owner-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Delete-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_delete_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-use-target-ns-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"70px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-target-namespace-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-description-location-body-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"70px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-inline-description-location-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-location-uri-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-keywords-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-keywords-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"40px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-description-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-service-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-service-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:pointer]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-operation-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-operation-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-name-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"100px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/service/.+$", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:data]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:form]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:default]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter-config-id]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:parameter-config-name]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:example-config]" + "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:needs-b64-encoding]" + "subject_identifiers":["[pref_1:has-environment-editor-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:crud]" + "instance_of":["si:[pref_2:Editor-Association-View]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "names":[{ + "item_identifiers":null, + "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_editor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:multiple]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:mime-type]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:param]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:parameter-type]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:parameter-id]" + "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-name]" + "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:tg-approved]" + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:textgrid-url]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:identifier]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:owner]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:use-target-ns]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:target-namespace]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:description-location-body]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:inline-description-location]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:description-location-uri]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:keywords]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:description]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:operation]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:configuration]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-config]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:has-parameter]" + "subject_identifiers":["[pref_2:Delete-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_5:Parameter-Config]" + "subject_identifiers":["[pref_2:Editor-Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_5:Parameter]" + "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, @@ -1837,14 +1665,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"65px", + "value":"115px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", + "type":"si:[pref_3:right]", "value":"10px", "scope":null, "reifier":null @@ -1852,18 +1680,18 @@ ] }, { - "subject_identifiers":["[pref_1:environment-editor-delete-button]" + "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_delete_button_id", + "value":"hash_object_commit_button_id", "scope":null, "reifier":null }, @@ -1894,7 +1722,25 @@ ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"reset", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -1904,7 +1750,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-position]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" ], "subject_locators":null, "item_identifiers":null, @@ -1923,7 +1769,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"10px", + "value":"115px", "scope":null, "reifier":null }, @@ -1931,33 +1777,33 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"70px", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_2:Action-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_name_text_id", + "value":"hash_object_reset_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_3:height]", + "value":"30px", "scope":null, "reifier":null }, @@ -1965,48 +1811,22 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"240px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", + "value":"80px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2016,7 +1836,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2035,7 +1855,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"10px", + "value":"70px", "scope":null, "reifier":null }, @@ -2043,14 +1863,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"10px", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value]" ], "subject_locators":null, "item_identifiers":null, @@ -2061,7 +1881,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "value":"hash_object_text_value_id", "scope":null, "reifier":null }, @@ -2069,7 +1889,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:readonly]", - "value":"true", + "value":"false", "scope":null, "reifier":null }, @@ -2077,15 +1897,15 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"60px", + "value":"230px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", + "type":"si:[pref_3:pointer]", + "value":"text", "scope":null, "reifier":null }, @@ -2096,71 +1916,47 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-view-binding]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", + "type":"si:[pref_3:literal-value]", + "value":"value:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2179,14 +1975,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"65px", + "value":"70px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", + "type":"si:[pref_3:left]", "value":"10px", "scope":null, "reifier":null @@ -2194,26 +1990,26 @@ ] }, { - "subject_identifiers":["[pref_1:environment-creator-commit-button]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_commit_button_id", + "value":"hash_object_text_label_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, @@ -2221,22 +2017,30 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"80px", + "value":"100px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2246,7 +2050,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2265,7 +2069,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"10px", + "value":"40px", "scope":null, "reifier":null }, @@ -2273,14 +2077,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"70px", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key]" ], "subject_locators":null, "item_identifiers":null, @@ -2291,7 +2095,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_name_text_id", + "value":"hash_object_text_key_id", "scope":null, "reifier":null }, @@ -2307,14 +2111,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"240px", + "value":"230px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", + "type":"si:[pref_3:pointer]", "value":"text", "scope":null, "reifier":null @@ -2322,6 +2126,14 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:padding-left]", "value":"2px", "scope":null, @@ -2330,7 +2142,7 @@ ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, @@ -2341,14 +2153,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:literal-value]", - "value":"name:", + "value":"key:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2358,7 +2170,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2377,7 +2189,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"10px", + "value":"40px", "scope":null, "reifier":null }, @@ -2392,7 +2204,7 @@ ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" ], "subject_locators":null, "item_identifiers":null, @@ -2403,7 +2215,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "value":"hash_object_text_label_key_id", "scope":null, "reifier":null }, @@ -2419,7 +2231,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"60px", + "value":"100px", "scope":null, "reifier":null }, @@ -2442,77 +2254,27 @@ ] }, { - "subject_identifiers":["[pref_1:environment-creator-view-binding]" + "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_2:Role-Player]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_creator_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_3:cursor]" + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2531,41 +2293,41 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"115px", + "value":"0px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_3:left]", + "value":"0px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_2:List-Box]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", + "value":"hash_object_text_list_box_env_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, @@ -2573,98 +2335,32 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "value":"232px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_delete_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_3:literal-value]", + "value":"environment:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2674,7 +2370,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2693,7 +2389,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"70px", + "value":"10px", "scope":null, "reifier":null }, @@ -2701,14 +2397,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"120px", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" ], "subject_locators":null, "item_identifiers":null, @@ -2719,7 +2415,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", + "value":"hash_object_text_label_env_id", "scope":null, "reifier":null }, @@ -2727,7 +2423,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:readonly]", - "value":"false", + "value":"true", "scope":null, "reifier":null }, @@ -2735,15 +2431,15 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"230px", + "value":"100px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null }, @@ -2754,47 +2450,31 @@ "value":"none", "scope":null, "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" + "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_2:Role-Player]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_2:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2813,7 +2493,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"70px", + "value":"10px", "scope":null, "reifier":null }, @@ -2821,33 +2501,33 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"10px", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" + "subject_identifiers":["[pref_1:has-environment-creator-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_2:Creator-Association-View]" ], - "names":null, - "occurrences":[{ + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", "scope":null, + "variants":null, "reifier":null - }, - { + } + ], + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_3:id]", + "value":"has_environment_createor_association_view_id", "scope":null, "reifier":null }, @@ -2855,93 +2535,71 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"230px", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-hash-type-default-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_3:literal-value]", + "value":"confserver", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" + "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_2:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" + "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key]" + "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" ], - "names":null, - "occurrences":[{ + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", "scope":null, + "variants":null, "reifier":null - }, - { + } + ], + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_3:id]", + "value":"hash_object_default_creator_topic_view_id", "scope":null, "reifier":null }, @@ -2949,513 +2607,219 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", + "value":"362px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_3:height]", + "value":"160px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" + "subject_identifiers":["[pref_1:textgrid-ui-schema]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_2:Schema]" ], - "names":null, - "occurrences":[{ + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_3:schema-name]", + "scope":null, + "variants":null, "reifier":null } - ] + ], + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" + "subject_identifiers":["[pref_2:Commit-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + "subject_identifiers":["[pref_2:Action-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" + "subject_identifiers":["[pref_2:Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" + "subject_identifiers":["[pref_2:Value-Group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" + "subject_identifiers":["[pref_3:right]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env]" + "subject_identifiers":["[pref_3:left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" + "subject_identifiers":["[pref_3:top]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:has-environment-editor-association-view]" + "subject_identifiers":["[pref_3:position-style]", + "[pref_3:position-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Editor-Association-View]" + "instance_of":["si:[pref_7:occurrence-type]" ], - "names":[{ - "item_identifiers":null, - "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Position]" ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_editor_association_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - } - ] + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" + "subject_identifiers":["[pref_3:font-size]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" + "subject_identifiers":["[pref_3:readonly]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" + "subject_identifiers":["[pref_2:Text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" + "subject_identifiers":["[pref_2:List-Box]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-hash-type-default-value]" + "subject_identifiers":["[pref_2:Text-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"confserver", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" + "subject_identifiers":["[pref_2:Default-Literal-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" + "subject_identifiers":["[pref_3:fixed]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" + "subject_identifiers":["[pref_2:Default-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - } - ] + "instance_of":null, + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_2:Delete-Button]" + "subject_identifiers":["[pref_3:literal-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Editor-Association-View]" + "subject_identifiers":["[pref_2:Literal-Value]" ], "subject_locators":null, "item_identifiers":null, @@ -3464,7 +2828,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" + "subject_identifiers":["[pref_2:TM-Single-Type-Value]" ], "subject_locators":null, "item_identifiers":null, @@ -3473,1170 +2837,1009 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + "subject_identifiers":["[pref_3:display-by]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" + "subject_identifiers":["[pref_2:TM-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + "subject_identifiers":["[pref_2:Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"reset", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + "subject_identifiers":["[pref_2:Creator-Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + "subject_identifiers":["[pref_2:Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" + "subject_identifiers":["[pref_2:Default-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Action-Button]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_reset_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + "subject_identifiers":["[pref_2:Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + "subject_identifiers":["[pref_3:view-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + "subject_identifiers":["[pref_2:View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + "subject_identifiers":["[pref_3:id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + "subject_identifiers":["[pref_3:background-color]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + "subject_identifiers":["[pref_3:border-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + "subject_identifiers":["[pref_3:pointer]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + "subject_identifiers":["[pref_3:height]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + "subject_identifiers":["[pref_3:padding-left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + "subject_identifiers":["[pref_3:width]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + "subject_identifiers":["[pref_3:hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + "subject_identifiers":["[pref_2:Hidden-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + "subject_identifiers":["[pref_2:Visible-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Role-Player]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + "subject_identifiers":["[pref_2:Descriptor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + "subject_identifiers":["[pref_3:schema-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + "subject_identifiers":["[pref_2:Schema]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + "subject_identifiers":["[pref_3:descendant]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + "subject_identifiers":["[pref_3:ancestor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:List-Box]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_list_box_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"232px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + "subject_identifiers":["[pref_3:value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + "subject_identifiers":["[pref_3:value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + "subject_identifiers":["[pref_3:descriptor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-construct]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:containee]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:container]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]", + "si:[pref_3:position]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-binding]", + "[pref_3:value-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:association-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:topic-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]", + "si:[pref_3:topic-view-binding]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:contains]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" + "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Creator-Association-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "instance_of":["si:[pref_7:association-role-constraint]" ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_createor_association_view_id", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" + "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "instance_of":["si:[pref_7:association-role-constraint]" ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_creator_topic_view_id", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"gray", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:textgrid-ui-schema]" + "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Schema]" + "instance_of":["si:[pref_7:regular-expression-constraint]" ], - "names":[{ + "names":null, + "occurrences":[{ "item_identifiers":null, - "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", - "type":"si:[pref_3:schema-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", "scope":null, - "variants":null, "reifier":null } - ], - "occurrences":null + ] }, { - "subject_identifiers":["[pref_2:Commit-Button]" + "subject_identifiers":["[pref_4:hash-type-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Action-Button]" + "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Button]" + "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Value-Group]" + "subject_identifiers":["[pref_4:hash-value-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:right]" + "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:left]" + "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]", - "si:[pref_3:left]" + "instance_of":["si:[pref_7:regular-expression-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:top]" + "subject_identifiers":["[pref_4:hash-key-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:position-style]" + "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Position]" + "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:font-size]" + "subject_identifiers":["[pref_4:hash-hash-type-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:readonly]" + "subject_identifiers":["[pref_4:hash-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:subject-identifier-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Text]" + "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:List-Box]" + "subject_identifiers":["[pref_4:environment-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Text-Object]" + "subject_identifiers":["[pref_4:environment-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Default-Literal-Value]" + "subject_identifiers":["[pref_4:environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:role-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:fixed]" + "subject_identifiers":["[pref_4:hash]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Value]" + "subject_identifiers":["[pref_4:service]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:role-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:literal-value]" + "subject_identifiers":["[pref_4:has-environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Literal-Value]" + "subject_identifiers":["[pref_4:has-hash]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:association-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:TM-Single-Type-Value]" + "subject_identifiers":["[pref_4:environment-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:name-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:display-by]" + "subject_identifiers":["[pref_4:value]" ], "subject_locators":null, "item_identifiers":null, @@ -4646,198 +3849,167 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:TM-Value]" + "subject_identifiers":["[pref_4:key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Creator-Association-View]" + "subject_identifiers":["[pref_4:hash-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Association-View]" + "instance_of":["si:[pref_7:occurrence-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" + "subject_identifiers":["[pref_5:Environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Topic-View]" + "instance_of":["si:[pref_7:topic-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Topic-View]" + "subject_identifiers":["[pref_5:Hash-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:topic-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:view-name]" + "subject_identifiers":["[pref_5:Service]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:View]" + "subject_identifiers":["[pref_6:supertype-subtype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:association-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:id]" + "subject_identifiers":["[pref_6:subtype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:background-color]" + "subject_identifiers":["[pref_6:supertype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]", - "si:[pref_3:background-color]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:border-style]" + "subject_identifiers":["[pref_7:constrained-role]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:pointer]" + "subject_identifiers":["[pref_7:constrained-topic-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:height]" + "subject_identifiers":["[pref_7:constrained-statement]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:padding-left]" + "subject_identifiers":["[pref_7:constrained]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:width]" + "subject_identifiers":["[pref_7:association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:hidden-value]" + "subject_identifiers":["[pref_7:topic-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]", - "si:[pref_7:role-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Hidden-Value]" + "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Visible-Object]" + "instance_of":["si:[pref_7:topic-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Role-Player]" + "subject_identifiers":["[pref_7:regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:topic-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Descriptor]" + "subject_identifiers":["[pref_7:topic-occurrence-constraint]" ], "subject_locators":null, "item_identifiers":null, @@ -4847,17 +4019,17 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:schema-name]" + "subject_identifiers":["[pref_7:topic-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Schema]" + "subject_identifiers":["[pref_7:subject-identifier-constraint]" ], "subject_locators":null, "item_identifiers":null, @@ -4867,3031 +4039,140 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:descendant]" + "subject_identifiers":["[pref_7:constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:ancestor]" + "subject_identifiers":["[pref_7:datatype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:value]" + "subject_identifiers":["[pref_7:regexp]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:value-group]" + "subject_identifiers":["[pref_7:card-max]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:descriptor]" + "subject_identifiers":["[pref_7:card-min]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:tm-construct]", - "[pref_3:tm-construct]" + "subject_identifiers":["[pref_7:association-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:tm-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:containee]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:container]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:association-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:topic-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:contains]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" + "subject_identifiers":["[pref_7:role-type]" ], "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/environment/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:environment-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:key]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Hash-Object]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Service]", - "[pref_5:Service]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:supertype-subtype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:subtype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:supertype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-role]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-topic-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-statement]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-occurrence-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:subject-identifier-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]", - "si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:datatype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:regexp]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:card-max]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:card-min]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:association-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:role-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:occurrence-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:name-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - } - ], - "associations":[{"item_identifiers":null, - "type":"si:[pref_4:has-environment]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_4:hash]", - "reifier":null, - "player":"si:[pref_8:test-hash-1]" - }, - { - "item_identifiers":null, - "type":"si:[pref_4:environment]", - "reifier":null, - "player":"si:[pref_8:test-env-1]" - } - ] - }, - {"item_identifiers":null, - "type":"si:[pref_4:has-environment]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_4:hash]", - "reifier":null, - "player":"si:[pref_8:test-hash-2]" - }, - { - "item_identifiers":null, - "type":"si:[pref_4:environment]", - "reifier":null, - "player":"si:[pref_8:test-env-2]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:data]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:data]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:form]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:form]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:default]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:default]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:crud]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:crud]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:multiple]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:multiple]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:param]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:param]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:identifier]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:identifier]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:owner]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:owner]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:keywords]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:keywords]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:operation]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:operation]" - } - ] + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null }, { + "subject_identifiers":["[pref_7:occurrence-type]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null }, { + "subject_identifiers":["[pref_7:name-type]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-name]" - } - ] + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null }, { + "subject_identifiers":["[pref_7:topic-type]" + ], + "subject_locators":null, "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + } + ], + "associations":[{"item_identifiers":null, + "type":"si:[pref_4:has-environment]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_4:hash]", "reifier":null, - "player":"si:[pref_4:service-name-constraint]" + "player":"si:[pref_8:test-hash-1]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_4:environment]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_8:test-env-1]" } ] }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + {"item_identifiers":null, + "type":"si:[pref_4:has-environment]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_4:hash]", "reifier":null, - "player":"si:[pref_4:service-psi-constraint]" + "player":"si:[pref_8:test-hash-2]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_4:environment]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_8:test-env-2]" } ] }, @@ -8162,25 +4443,6 @@ }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - } - ] - }, - { - "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, "scope":null, @@ -9203,63 +5465,6 @@ }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - } - ] - }, - { - "item_identifiers":null, "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, @@ -9341,25 +5546,6 @@ "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, "player":"si:[pref_2:Association-View]" @@ -10226,6 +6412,63 @@ }, { "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-default-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + } + ] + }, + { + "item_identifiers":null, "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, @@ -10430,12 +6673,6 @@ "type":"si:[pref_6:subtype]", "reifier":null, "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" } ] }, @@ -10524,6 +6761,25 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, "player":"si:[pref_2:Value]" }, { @@ -11506,4 +7762,5 @@ ], "item_type":"topicmap", "reifier":null -} \ No newline at end of file +} + \ No newline at end of file From lgiessmann at common-lisp.net Thu Sep 8 14:47:57 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 08 Sep 2011 07:47:57 -0700 Subject: [isidorus-cvs] r857 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus view Message-ID: Author: lgiessmann Date: Thu Sep 8 07:47:55 2011 New Revision: 857 Log: gdl-frontend: Widgets: implemented the handling of GdlHiddenValue when set to an tmcl:topic-occurrence-constraint Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlHiddenValue.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlHiddenValue.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlHiddenValue.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlHiddenValue.java Thu Sep 8 07:47:55 2011 (r857) @@ -1,6 +1,7 @@ package us.isidor.gdl.anaToMia.Widgets.base; +import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Occurrence; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException; @@ -89,6 +90,17 @@ } + // returns the actual literal value that is set for this hidden value + // to be used + public String getRawDefaultLiteralValue() throws InvalidGdlSchemaException { + if(this.getDefaultLiteralValue() == null) return null; + + Occurrence occurrence = TmHelper.getSingleOccurrence(this.getDefaultLiteralValue(), TmHelper.getTopicByPsi(PSIs.GDL.OccurrenceType.gdlLiteralValue, this.tmRepresentative.getTopicMap())); + if(occurrence == null) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(this.getDefaultLiteralValue()) + " must be bound to exactly one occurrence of the type: " + PSIs.GDL.OccurrenceType.gdlLiteralValue + ", but is: unbound"); + else return occurrence.getValue(); + } + + // returns the topic that represents the default value of // the value-group that is bound to this element - null if it is unbound public Topic getDefaultValue() throws InvalidGdlSchemaException { @@ -98,7 +110,7 @@ } - //returns the actual values represetned by the tmValues + //returns the actual values represented by the tmValues public Topic getRawTmValue() throws InvalidGdlSchemaException{ if(this.rawTmValuesSet){ return this.rawTmValue; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Thu Sep 8 07:47:55 2011 (r857) @@ -31,12 +31,12 @@ mainPanel.setPixelSize(1000, 600); ArrayList> requestedTopicsToCreate = new ArrayList>(); - //requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); - requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Environment", TopicIdentifierTypes.SubjectIdentifier)); + requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); + //requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Environment", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Poet", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Musician", TopicIdentifierTypes.SubjectIdentifier)); - Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-env-1", TopicIdentifierTypes.SubjectIdentifier); + //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-env-1", TopicIdentifierTypes.SubjectIdentifier); //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-hash-2", TopicIdentifierTypes.SubjectIdentifier); GdlPanel.addClickHandler("hash_object_reset_button_id", new ClickHandler() { @Override @@ -46,7 +46,7 @@ } }); - gdlPanel = new GdlPanel(requestedTopicToEdit, null); + gdlPanel = new GdlPanel(null, requestedTopicsToCreate); mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Thu Sep 8 07:47:55 2011 (r857) @@ -687,10 +687,10 @@ TopicMap tm = hiddenValue.getTopicMap(); Topic valueBindingAssocTopic = getTopicByPsi(PSIs.GDL.AssociationType.gdlValueBinding, tm); - Topic valueGroupRoleType = getTopicByPsi(PSIs.GDL.RoleType.gdlValueGroup, tm); + Topic hiddenValueRoleType = getTopicByPsi(PSIs.GDL.RoleType.gdlHiddenValue, tm); Topic valueRoleType = getTopicByPsi(PSIs.GDL.RoleType.gdlValue, tm); Topic defaultLiteralValueType = getTopicByPsi(PSIs.GDL.TopicType.gdlDefaultLiteralValue, tm); - ArrayList defaultTmValues = getOtherPlayerOfBinaryAssociation(hiddenValue, valueGroupRoleType, valueBindingAssocTopic, null, defaultLiteralValueType, valueRoleType); + ArrayList defaultTmValues = getOtherPlayerOfBinaryAssociation(hiddenValue, hiddenValueRoleType, valueBindingAssocTopic, null, defaultLiteralValueType, valueRoleType); if(defaultTmValues.size() == 1) return defaultTmValues.get(0); else if(defaultTmValues.size() == 0) return null; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java Thu Sep 8 07:47:55 2011 (r857) @@ -3,12 +3,37 @@ import java.util.ArrayList; import com.google.gwt.core.client.JavaScriptObject; +import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Association; +import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Role; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; import us.isidor.gdl.anaToMia.Widgets.environment.Pattern; import com.google.gwt.core.client.JsArray; import com.google.gwt.dom.client.Element; public class Utils { + + // returns a string of the form: + // { + // association-type: psi + // roles: [type: psi, player: psi] + // [type: psi, player: psi]... + // } + // this method is only defined for debugging purpose + public static String toString(Association association){ + if(association == null) return "{ }"; + + String result = "{\ntype: "; + result += TmHelper.getAnyIdOfTopic(association.getType()); + result += "\n\nroles:\n"; + + JsArray roles = association.getRoles(); + for(int i = 0; i != roles.length(); ++i) + result += "[type: " + TmHelper.getAnyIdOfTopic(roles.get(i).getType()) + "\nplayer: " + TmHelper.getAnyIdOfTopic(roles.get(i).getPlayer()) + "]\n\n"; + + return result.substring(0, result.length() - 1) + "\n}"; + } + + // returns a string of the form [item1, item2, ... ] for all // items of an ArrayList public static String arrayToString(ArrayList data){ Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Thu Sep 8 07:47:55 2011 (r857) @@ -31,7 +31,7 @@ public class CommitCallback implements ICommitCallback{ - public final String DELETE_REUQEST_URL = IsidorusConstants.DELETE_REUQEST_URL; + public final String DELETE_REUQEST_URL = IsidorusConstants.DELETE_REQUEST_URL; public final String COMMIT_REQUEST_URL = IsidorusConstants.COMMIT_REQUEST_URL; public final String GET_REQUEST_URL = IsidorusConstants.GET_FRAGMENT_REQUEST_URL; @@ -95,7 +95,7 @@ // a check for an existing environment topic is not necessary, // since it would be exactly the same topic. - //RootPanel.getBodyElement().setInnerText(jtm); // TODO: remove + //Window.alert(jtm); // TODO: remove builder.sendRequest(null, new EnvironmentCommitRequest(jtm)); }catch(RequestException e){ Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); @@ -164,7 +164,7 @@ commitBuilder.setHeader("Content-type", "application/json"); RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.GET, getUrl); try{ - //RootPanel.getBodyElement().setInnerText(jtm); //TODO: remove + Window.alert(jtm); //TODO: remove if(edited)getBuilder.sendRequest(null, new EditedHashObjectCommitRequest(null, jtm, false)); else commitBuilder.sendRequest(jtm, new HashObjectCommitRequest(jtm)); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Thu Sep 8 07:47:55 2011 (r857) @@ -23,7 +23,7 @@ public class DeleteCallback implements IDeleteCallback { - public final String REUQEST_URL = IsidorusConstants.DELETE_REUQEST_URL; + public final String REUQEST_URL = IsidorusConstants.DELETE_REQUEST_URL; @Override Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Thu Sep 8 07:47:55 2011 (r857) @@ -1,12 +1,14 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; +import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; public class IsidorusConstants { - public final static String DELETE_REUQEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; + public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; //GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Thu Sep 8 07:47:55 2011 (r857) @@ -35,7 +35,6 @@ public void loadSchema(GdlPanel panel, Pair requestedTopicToEdit , ArrayList> requestedTopicsToCreate)throws RequestException { this.requestedTopicsToCreate = requestedTopicsToCreate; this.requestedTopicToEdit = requestedTopicToEdit; - Window.alert("request address >> " + isidorusUrl); //TODO: remove requestBuilder.sendRequest(null, new RequestCallbackImpl(panel)); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Thu Sep 8 07:02:36 2011 (r856) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Thu Sep 8 07:47:55 2011 (r857) @@ -13,6 +13,7 @@ import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Variant; import us.isidor.gdl.anaToMia.Widgets.base.ButtonableObject; +import us.isidor.gdl.anaToMia.Widgets.base.GdlHiddenValue; import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject; import us.isidor.gdl.anaToMia.Widgets.base.PSIs; import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; @@ -140,6 +141,7 @@ } + @SuppressWarnings("unchecked") @Override public ArrayList> getContent(Construct carrier, boolean validate) throws InvalidGdlSchemaException, ExecutionException, InvalidContentException { ArrayList> result = new ArrayList>(); @@ -159,14 +161,36 @@ } } - for (@SuppressWarnings("unused") Topic hd : this.getHiddenValues()) { + + for (Topic hd : this.getHiddenValues()) { + GdlHiddenValue hdv = new GdlHiddenValue(hd, this); + if(TmHelper.isInstanceOf(hdv.getConstraint(), PSIs.TMCL.tmclTopicOccurrenceConstraint)){ + if(!hdv.getConstraint().equals(hdv.getRootConstraint())) throw new InvalidGdlSchemaException("the constraint " + TmHelper.getAnyIdOfTopic(hdv.getConstraint()) + " must not be bound to another constraint, but is bound to: " + TmHelper.getAnyIdOfTopic(hdv.getRootConstraint())); + Topic top = this.getRepresentedTopic(); + Topic occurrenceType = TmHelper.getConstrainedStatement(hdv.getConstraint()); + if(occurrenceType == null) throw new InvalidContentException("the constraint " + TmHelper.getAnyIdOfTopic(hdv.getConstraint()) + " must be bound to an occurrence type via a " + PSIs.TMCL.tmclConstrainedStatement + " association"); + String value = hdv.getRawDefaultLiteralValue(); + if(value == null) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(hdv.getTmRepresentative()) + " must be bound to an instance of " + PSIs.GDL.TopicType.gdlHiddenValue + ", but is unbound"); + JsArray occurrences = top.getOccurrences(occurrenceType); + // set the occurrence value only if it does not exist - don't override an existing occurrence + int i = 0; + for( ; i != occurrences.length(); ++i) if(occurrences.get(i).getValue().equals(value)) break; + + if(i == occurrences.length()){ + Occurrence occ = top.createOccurrence(occurrenceType, value, (JsArray)JsArray.createArray()); + Pair newItem = new Pair(occ, TopicMapsTypes.Occurrence); + if(!this.indirectlyContained(newItem, result)) result.add(newItem); + } + } + + // TODO: process hidden values // subject-identifier // subject-locator // item-identifier // topic-name // variant-name - // topic-occurrence + // *topic-occurrence // type => topic-name // type => topic-occurrence // datatype => topic-occurrence From lgiessmann at common-lisp.net Thu Sep 8 14:54:01 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 08 Sep 2011 07:54:01 -0700 Subject: [isidorus-cvs] r858 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view Message-ID: Author: lgiessmann Date: Thu Sep 8 07:54:00 2011 New Revision: 858 Log: gdl-frontend: Widgets: fixed a bug in the hanlding of GdlHiddenValue in GdlAssociationView instances Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java Thu Sep 8 07:47:55 2011 (r857) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java Thu Sep 8 07:54:00 2011 (r858) @@ -8,6 +8,7 @@ import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Association; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Occurrence; +import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Role; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes; import us.isidor.gdl.anaToMia.Widgets.base.ButtonableObject; @@ -201,14 +202,19 @@ // process hidden values for (Topic hd : this.getHiddenValues()) { GdlHiddenValue hdv = new GdlHiddenValue(hd, this); + Topic player = hdv.getRawTmValue(); + if(player == null) throw new InvalidGdlSchemaException("the hidden value " + TmHelper.getAnyIdOfTopic(hd) + " must be bound to exactly one topic, but is unbound"); + Topic roleType = TmHelper.getConstrainedRoleAndPlayerTypeOfConstraint(hdv.getRootConstraint()).getFirst(); + if(TmHelper.isInstanceOf(hdv.getConstraint(), PSIs.GDL.TopicType.gdlRolePlayer)){ if(!TmHelper.isInstanceOf(hdv.getRootConstraint(), PSIs.TMCL.tmclTopicRoleConstraint)) throw new InvalidGdlSchemaException("the constraint " + TmHelper.getAnyIdOfTopic(hdv.getConstraint()) + " must be bound to an instance of " + PSIs.TMCL.tmclTopicRoleConstraint + ", but is: " + TmHelper.getAnyIdOfTopic(hdv.getRootConstraint())); for (Pair pair : result) { if(pair.getSecond().equals(TopicMapsTypes.Association)){ Association assoc = (Association)pair.getFirst(); - Topic player = hdv.getRawTmValue(); - if(player == null) throw new InvalidGdlSchemaException("the hidden value " + TmHelper.getAnyIdOfTopic(hd) + " must be bound to exactly one topic, but is unbound"); - assoc.createRole(TmHelper.getConstrainedRoleAndPlayerTypeOfConstraint(hdv.getRootConstraint()).getFirst(), player); + JsArray roles = assoc.getRoles(roleType); + int i = 0; + for( ; i != roles.length(); ++i) if(roles.get(i).getPlayer().equals(player)) break; + if(i == roles.length()) assoc.createRole(roleType, player); } } } From lgiessmann at common-lisp.net Fri Sep 9 15:25:43 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Fri, 09 Sep 2011 08:25:43 -0700 Subject: [isidorus-cvs] r859 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base Message-ID: Author: lgiessmann Date: Fri Sep 9 08:25:42 2011 New Revision: 859 Log: gdl-frontend: Widgets: fixed a a potential bug in TmHelper.hasRoles(...) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Thu Sep 8 07:54:00 2011 (r858) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Fri Sep 9 08:25:42 2011 (r859) @@ -246,7 +246,7 @@ // the array list rolePlayersAndTypes public static boolean hasRoles(Association assoc, ArrayList> rolePlayertypesAndTypes){ if(assoc == null) return false; - if(assoc.getRoles().length() == 0 && rolePlayertypesAndTypes == null) return true; + if(rolePlayertypesAndTypes == null) return assoc.getRoles().length() == 0; if(assoc.getRoles().length() != rolePlayertypesAndTypes.size()) return false; for (Pair pair : rolePlayertypesAndTypes) { From lgiessmann at common-lisp.net Fri Sep 9 15:27:43 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Fri, 09 Sep 2011 08:27:43 -0700 Subject: [isidorus-cvs] r860 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base Message-ID: Author: lgiessmann Date: Fri Sep 9 08:27:42 2011 New Revision: 860 Log: gdl-frontend: Widgets: fixed a a potential bug in TmHelper.hasThemes(...) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Fri Sep 9 08:25:42 2011 (r859) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Fri Sep 9 08:27:42 2011 (r860) @@ -276,11 +276,9 @@ // returns true if the topics of themes are all equal to the scope of construct public static boolean hasThemes(Construct construct, ArrayList themes){ if(construct == null) return false; + if(themes == null) return ((ScopedStub)construct).getScope().length() == 0; ScopedStub scoped = (ScopedStub)construct; - if(scoped.getScope().length() != 0 && (themes == null || themes.size() == 0)) return false; - if(themes != null && scoped.getScope().length() != themes.size()) return false; - for(int i = 0; i != scoped.getScope().length(); ++i){ if(!themes.contains(scoped.getScope().get(i))) return false; } From lgiessmann at common-lisp.net Fri Sep 9 16:22:06 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Fri, 09 Sep 2011 09:22:06 -0700 Subject: [isidorus-cvs] r861 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base Message-ID: Author: lgiessmann Date: Fri Sep 9 09:22:05 2011 New Revision: 861 Log: gdl-frontend: Widgets: fixed a a potential bug in TmHelper Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Fri Sep 9 08:27:42 2011 (r860) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Fri Sep 9 09:22:05 2011 (r861) @@ -235,7 +235,7 @@ // returns true if the instance topic is an instance of the topic bound to typeSubectIdentifier public static boolean isInstanceOf(Topic instance, String typeSubjectIdentifier){ - if(instance == null) return false; + if(instance == null || typeSubjectIdentifier == null) return false; TopicMap tm = instance.getTopicMap(); Topic type = tm.getTopicBySubjectIdentifier(tm.createLocator(typeSubjectIdentifier)); return isInstanceOf(instance, type); From lgiessmann at common-lisp.net Mon Sep 12 06:31:16 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Sun, 11 Sep 2011 23:31:16 -0700 Subject: [isidorus-cvs] r862 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Sun Sep 11 23:31:15 2011 New Revision: 862 Log: gdl-frontend: Widgets: changed the test ULR for getting the gdl-schema to the actual backend-URL Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Fri Sep 9 09:22:05 2011 (r861) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Sun Sep 11 23:31:15 2011 (r862) @@ -1,7 +1,6 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; -import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -9,6 +8,6 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } From lgiessmann at common-lisp.net Mon Sep 12 07:10:57 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 00:10:57 -0700 Subject: [isidorus-cvs] r863 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base Message-ID: Author: lgiessmann Date: Mon Sep 12 00:10:55 2011 New Revision: 863 Log: gdl-frontend: Widgets: fixed a a potential bug in TmHelper.hashThemes(...) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Sun Sep 11 23:31:15 2011 (r862) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Mon Sep 12 00:10:55 2011 (r863) @@ -8,6 +8,7 @@ import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Name; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Occurrence; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Role; +import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Scoped; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.ScopedStub; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMap; @@ -274,7 +275,7 @@ // returns true if the topics of themes are all equal to the scope of construct - public static boolean hasThemes(Construct construct, ArrayList themes){ + public static boolean hasThemes(Scoped construct, ArrayList themes){ if(construct == null) return false; if(themes == null) return ((ScopedStub)construct).getScope().length() == 0; From lgiessmann at common-lisp.net Mon Sep 12 07:24:25 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 00:24:25 -0700 Subject: [isidorus-cvs] r864 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base Message-ID: Author: lgiessmann Date: Mon Sep 12 00:24:24 2011 New Revision: 864 Log: gdl-frontend: Widgets: fixed a a potential bug in GdlPosition.getOccurrences(...) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPosition.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPosition.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPosition.java Mon Sep 12 00:10:55 2011 (r863) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPosition.java Mon Sep 12 00:24:24 2011 (r864) @@ -28,10 +28,11 @@ // a helper method that returns all occurrences of the type bound to the passed PSI + @SuppressWarnings("unchecked") private JsArray getOccurrences(String occurrenceType){ TopicMap tm = this.tmRepresentative.getTopicMap(); Topic occType = tm.getTopicBySubjectIdentifier(tm.createLocator(occurrenceType)); - if(occType == null) return null; + if(occType == null) return (JsArray)JsArray.createArray(); else return tmRepresentative.getOccurrences(occType); } From lgiessmann at common-lisp.net Mon Sep 12 07:53:29 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 00:53:29 -0700 Subject: [isidorus-cvs] r865 - branches/gdl-frontend/src/rest_interface Message-ID: Author: lgiessmann Date: Mon Sep 12 00:53:29 2011 New Revision: 865 Log: gdl-backend: added a default tm-id for committing new fragments Modified: branches/gdl-frontend/src/rest_interface/rest-interface.lisp branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: branches/gdl-frontend/src/rest_interface/rest-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/rest-interface.lisp Mon Sep 12 00:24:24 2011 (r864) +++ branches/gdl-frontend/src/rest_interface/rest-interface.lisp Mon Sep 12 00:53:29 2011 (r865) @@ -51,7 +51,15 @@ :*ajax-javascript-directory-path* :*ajax-javascript-url-prefix* :*xtm-commit-prefix* - :*sparql-url*)) + :*sparql-url* + :*gdl-get-fragment* + :*gdl-get-schema* + :*gdl-commit-fragment* + :*gdl-delete-fragment* + :*gdl-host-address* + :*gdl-base-path* + :*gdl-host-file* + :*gdl-tm-id*)) (in-package :rest-interface) Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 12 00:24:24 2011 (r864) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 12 00:53:29 2011 (r865) @@ -9,22 +9,23 @@ (in-package :rest-interface) -(defparameter *get-fragment* "/gdl/fragment/(.+)$") -(defparameter *get-schema* "/gdl/schema/?$") -(defparameter *commit-fragment* "/gdl/commit/?") -(defparameter *delete-fragment* "/gdl/delete/?") -(defparameter *host-address* "/anatomia") -(defparameter *base-path* "anaToMia/hosted_files/") -(defparameter *host-file* (concat *base-path* "GDL_Widgets.html")) - - -(defun set-up-gdl-interface (&key (get-fragment *get-fragment*) - (get-schema *get-schema*) - (commit-fragment *commit-fragment*) - (delete-fragment *delete-fragment*) - (base-path *base-path*) - (host-address *host-address*) - (host-file *host-file*)) +(defparameter *gdl-get-fragment* "/gdl/fragment/(.+)$") +(defparameter *gdl-get-schema* "/gdl/schema/?$") +(defparameter *gdl-commit-fragment* "/gdl/commit/?") +(defparameter *gdl-delete-fragment* "/gdl/delete/?") +(defparameter *gdl-host-address* "/anatomia") +(defparameter *gdl-base-path* "anaToMia/hosted_files/") +(defparameter *gdl-host-file* (concat *gdl-base-path* "GDL_Widgets.html")) +(defparameter *gdl-tm-id* "http://textgrid.org/serviceregistry/gdl-frontend/gdl-tm") + + +(defun set-up-gdl-interface (&key (get-fragment *gdl-get-fragment*) + (get-schema *gdl-get-schema*) + (commit-fragment *gdl-commit-fragment*) + (delete-fragment *gdl-delete-fragment*) + (base-path *gdl-base-path*) + (host-address *gdl-host-address*) + (host-file *gdl-host-file*)) (declare (String get-fragment get-schema commit-fragment delete-fragment host-address)) @@ -58,9 +59,9 @@ hunchentoot:*dispatch-table*)) -(defun init-hosted-files (&key (host-address *host-address*) - (host-file *host-file*) - (base-path *base-path*)) +(defun init-hosted-files (&key (host-address *gdl-host-address*) + (host-file *gdl-host-file*) + (base-path *gdl-base-path*)) "Adds handlers for the css, html and js files needed by the frontend." (declare (String host-address host-file base-path)) ;; add the actual html file @@ -150,7 +151,7 @@ :force-text t))) (with-writer-lock (let ((frag (jtm-importer:import-construct-from-jtm-string - json-data :revision (get-revision)))) + json-data :revision (get-revision) :tm-id *gdl-tm-id*))) (when frag (push-to-cache (d:topic frag))))))) (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) From lgiessmann at common-lisp.net Mon Sep 12 08:09:21 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 01:09:21 -0700 Subject: [isidorus-cvs] r866 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Mon Sep 12 01:09:20 2011 New Revision: 866 Log: gdl-frontend: Widgets: fixed a bug in the commit request of created frgments: http-get => http-post Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 00:53:29 2011 (r865) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 01:09:20 2011 (r866) @@ -90,7 +90,7 @@ } String url = URL.encode(this.COMMIT_REQUEST_URL); - RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, url); + RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); try{ // a check for an existing environment topic is not necessary, // since it would be exactly the same topic. @@ -162,7 +162,7 @@ String getUrl = URL.encode(this.GET_REQUEST_URL); RequestBuilder commitBuilder = new RequestBuilder(RequestBuilder.POST, commitUrl); commitBuilder.setHeader("Content-type", "application/json"); - RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.GET, getUrl); + RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.POST, getUrl); try{ Window.alert(jtm); //TODO: remove From lgiessmann at common-lisp.net Mon Sep 12 08:17:38 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 01:17:38 -0700 Subject: [isidorus-cvs] r867 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base Message-ID: Author: lgiessmann Date: Mon Sep 12 01:17:37 2011 New Revision: 867 Log: gdl-frontend: Widgets: changed the requested topic type of GdlPanel to Environment for testing purposes Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Mon Sep 12 01:09:20 2011 (r866) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Mon Sep 12 01:17:37 2011 (r867) @@ -31,8 +31,8 @@ mainPanel.setPixelSize(1000, 600); ArrayList> requestedTopicsToCreate = new ArrayList>(); - requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); - //requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Environment", TopicIdentifierTypes.SubjectIdentifier)); + //requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); + requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Environment", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Poet", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Musician", TopicIdentifierTypes.SubjectIdentifier)); From lgiessmann at common-lisp.net Mon Sep 12 08:50:42 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 01:50:42 -0700 Subject: [isidorus-cvs] r868 - in branches/gdl-frontend/src/anaToMia/GDL_TmEngine: .gwt src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/manifests war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit Message-ID: Author: lgiessmann Date: Mon Sep 12 01:50:41 2011 New Revision: 868 Log: gdl-frontend: Tmengine: fixed a bug when exporting null values Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/manifests/ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/manifests/129D1362A444C683F33495F143598048.txt branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/A93C4A2913B067D3D24A1A5BEFC6FB70.gwt.rpc Modified: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/.gwt/.gwt-log branches/gdl-frontend/src/anaToMia/GDL_TmEngine/src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine/JtmsTmEngine.java Modified: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/.gwt/.gwt-log ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_TmEngine/.gwt/.gwt-log Mon Sep 12 01:17:37 2011 (r867) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/.gwt/.gwt-log Mon Sep 12 01:50:41 2011 (r868) @@ -41057,3 +41057,9251 @@ Translatable source found in... Removing invalidated units Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes +Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/User.gwt.xml +Loading inherited module 'com.google.gwt.canvas.Canvas' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/Canvas.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.canvas.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/canvas/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/dom/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/Core.gwt.xml + Loading inherited module 'com.google.gwt.dev.jjs.intrinsic.Intrinsic' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/dev/jjs/intrinsic/Intrinsic.gwt.xml + Loading inherited module 'com.google.gwt.lang.LongLib' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-dev.jar!/com/google/gwt/lang/LongLib.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/Emulation.gwt.xml + Loading inherited module 'com.google.gwt.logging.LogImpl' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/logging/LogImpl.gwt.xml + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/xhr/XMLHttpRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CompilerParameters' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CompilerParameters.gwt.xml + Loading inherited module 'com.google.gwt.core.EmulateJsStack' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/EmulateJsStack.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.AsyncFragmentLoader' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/AsyncFragmentLoader.gwt.xml + Loading inherited module 'com.google.gwt.core.XSLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/XSLinker.gwt.xml + Loading inherited module 'com.google.gwt.core.CrossSiteIframeLinker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CrossSiteIframeLinker.gwt.xml + Loading inherited module 'com.google.gwt.user.UserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/UserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.EmulationWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/emul/EmulationWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.emul.Emulation' + Module 'com.google.gwt.emul.Emulation' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.core.CoreWithUserAgent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/core/CoreWithUserAgent.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.text.Text' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/text/Text.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/EventBase.gwt.xml + Loading inherited module 'com.google.web.bindery.event.Event' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/web/bindery/event/Event.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.DomEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/DomEvent.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.dom.TouchEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/dom/TouchEvent.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.event.logical.LogicalEvent' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/event/logical/LogicalEvent.gwt.xml + Loading inherited module 'com.google.gwt.event.EventBase' + Module 'com.google.gwt.event.EventBase' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.animation.Animation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/animation/Animation.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.editor.Editor' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/editor/Editor.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'javax.validation.Validation' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/javax/validation/Validation.gwt.xml +Loading inherited module 'com.google.gwt.resources.Resources' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/resources/Resources.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.http.HTTP' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/http/HTTP.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.jsonp.Jsonp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/jsonp/Jsonp.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.layout.Layout' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/layout/Layout.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.animation.Animation' + Module 'com.google.gwt.animation.Animation' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.media.Media' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/Media.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.media.dom.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/media/dom/DOM.gwt.xml +Loading inherited module 'com.google.gwt.touch.Touch' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/touch/Touch.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.uibinder.UiBinder' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/uibinder/UiBinder.gwt.xml + Loading inherited module 'com.google.gwt.resources.Resources' + Module 'com.google.gwt.resources.Resources' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.AsyncProxy' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/AsyncProxy.gwt.xml +Loading inherited module 'com.google.gwt.user.RemoteService' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RemoteService.gwt.xml + Loading inherited module 'com.google.gwt.http.HTTP' + Module 'com.google.gwt.http.HTTP' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DocumentRoot' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DocumentRoot.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.DOM' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/DOM.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Window.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.HTTPRequest' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/HTTPRequest.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.xhr.XMLHttpRequest' + Module 'com.google.gwt.xhr.XMLHttpRequest' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.History' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/History.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.i18n.I18N' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/i18n/I18N.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/regexp/RegExp.gwt.xml + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safehtml/SafeHtml.gwt.xml + Loading inherited module 'com.google.gwt.regexp.RegExp' + Module 'com.google.gwt.regexp.RegExp' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Popup' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Popup.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Form' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Form.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.TextBox' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/TextBox.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Focus' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Focus.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ImageBundle' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ImageBundle.gwt.xml + Loading inherited module 'com.google.gwt.user.ClippedImage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ClippedImage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ClippedImage' + Module 'com.google.gwt.user.ClippedImage' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.RichText' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/RichText.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.SplitPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/SplitPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.CaptionPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/CaptionPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Window' + Module 'com.google.gwt.user.Window' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Tree' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Tree.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.Hyperlink' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/Hyperlink.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.FileUpload' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/FileUpload.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ResizeLayoutPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ResizeLayoutPanel.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.ScrollPanel' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/ScrollPanel.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.user.datepicker.DatePicker' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/datepicker/DatePicker.gwt.xml +Loading inherited module 'com.google.gwt.user.cellview.CellView' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/user/cellview/CellView.gwt.xml + Loading inherited module 'com.google.gwt.user.User' + Module 'com.google.gwt.user.User' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.cell.Cell' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/cell/Cell.gwt.xml + Loading inherited module 'com.google.gwt.dom.DOM' + Module 'com.google.gwt.dom.DOM' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.text.Text' + Module 'com.google.gwt.text.Text' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.editor.Editor' + Module 'com.google.gwt.editor.Editor' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.view.View' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/view/View.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.safecss.SafeCss' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/safecss/SafeCss.gwt.xml +Loading inherited module 'com.google.gwt.safehtml.SafeHtml' + Module 'com.google.gwt.safehtml.SafeHtml' has already been loaded and will be skipped +Loading inherited module 'com.google.gwt.storage.Storage' + Module location: jar:file:/home/lukas/eclipse/plugins/com.google.gwt.eclipse.sdkbundle_2.3.0.r36v201105191508/gwt-2.3.0/gwt-user.jar!/com/google/gwt/storage/Storage.gwt.xml + Loading inherited module 'com.google.gwt.core.Core' + Module 'com.google.gwt.core.Core' has already been loaded and will be skipped + Loading inherited module 'com.google.gwt.user.UserAgent' + Module 'com.google.gwt.user.UserAgent' has already been loaded and will be skipped +Public resources found in... +Translatable source found in... +Removing invalidated units +Finding entry point classes Modified: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine/JtmsTmEngine.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_TmEngine/src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine/JtmsTmEngine.java Mon Sep 12 01:17:37 2011 (r867) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/src/us/isidor/gdl/anaToMia/TmEngine/jtmsBasedEngine/JtmsTmEngine.java Mon Sep 12 01:50:41 2011 (r868) @@ -1087,7 +1087,8 @@ private String exportValue(String value, String key){ - return "\"" + key + "\":" + escapeJSON(value); + if(value == null) return "\"" + key + "\":null"; + else return "\"" + key + "\":" + escapeJSON(value); } @@ -1242,10 +1243,10 @@ json += exportValue("topicmap", "item_type") + ","; // item_identifiers - json += exportValue("null", "item_identifiers") + ","; + json += exportValue(null, "item_identifiers") + ","; // reifier - json += exportValue("null", "reifier") + ","; + json += exportValue(null, "reifier") + ","; // topics ArrayList topicStrings = new ArrayList(); Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/manifests/129D1362A444C683F33495F143598048.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/WEB-INF/deploy/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/rpcPolicyManifest/manifests/129D1362A444C683F33495F143598048.txt Mon Sep 12 01:50:41 2011 (r868) @@ -0,0 +1,2 @@ +serviceClass: com.google.gwt.junit.client.impl.JUnitHost +path: A93C4A2913B067D3D24A1A5BEFC6FB70.gwt.rpc Added: branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/A93C4A2913B067D3D24A1A5BEFC6FB70.gwt.rpc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_TmEngine/war/us.isidor.gdl.anaToMia.TmEngine.GDL_TmEngine.JUnit/A93C4A2913B067D3D24A1A5BEFC6FB70.gwt.rpc Mon Sep 12 01:50:41 2011 (r868) @@ -0,0 +1,70 @@ +com.google.gwt.event.shared.UmbrellaException, false, false, true, true, com.google.gwt.event.shared.UmbrellaException/3104463596, 3104463596 +com.google.gwt.http.client.RequestException, false, false, true, true, com.google.gwt.http.client.RequestException/190587325, 190587325 +com.google.gwt.json.client.JSONException, false, false, true, true, com.google.gwt.json.client.JSONException/2941795468, 2941795468 +com.google.gwt.jsonp.client.TimeoutException, false, false, true, true, com.google.gwt.jsonp.client.TimeoutException/1112787596, 1112787596 +com.google.gwt.junit.client.TimeoutException, true, true, true, true, com.google.gwt.junit.client.TimeoutException/1599913304, 1599913304 +com.google.gwt.junit.client.impl.ExceptionWrapper, false, false, true, true, com.google.gwt.junit.client.impl.ExceptionWrapper/657858793, 657858793 +com.google.gwt.junit.client.impl.JUnitHost, false, false, false, false, _, 86023109 +com.google.gwt.junit.client.impl.JUnitHost$ClientInfo, false, false, true, true, com.google.gwt.junit.client.impl.JUnitHost$ClientInfo/1355526973, 1355526973 +com.google.gwt.junit.client.impl.JUnitHost$InitialResponse, true, true, false, false, com.google.gwt.junit.client.impl.JUnitHost$InitialResponse/3853795919, 3853795919 +com.google.gwt.junit.client.impl.JUnitHost$TestBlock, true, true, false, false, com.google.gwt.junit.client.impl.JUnitHost$TestBlock/1313545657, 1313545657 +com.google.gwt.junit.client.impl.JUnitHost$TestInfo, true, true, true, true, com.google.gwt.junit.client.impl.JUnitHost$TestInfo/393346509, 393346509 +[Lcom.google.gwt.junit.client.impl.JUnitHost$TestInfo;, true, true, false, false, [Lcom.google.gwt.junit.client.impl.JUnitHost$TestInfo;/2459359249, 2459359249 +com.google.gwt.junit.client.impl.JUnitResult, false, false, true, true, com.google.gwt.junit.client.impl.JUnitResult/2699351021, 2699351021 +com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException, true, true, true, true, com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException/3936916533, 3936916533 +com.google.gwt.user.client.rpc.InvocationException, false, false, true, false, com.google.gwt.user.client.rpc.InvocationException/1510557512, 1510557512 +com.google.gwt.user.client.rpc.RpcTokenException, true, true, true, true, com.google.gwt.user.client.rpc.RpcTokenException/2345075298, 2345075298 +com.google.gwt.user.client.rpc.SerializableException, false, false, true, true, com.google.gwt.user.client.rpc.SerializableException/3047383460, 3047383460 +com.google.gwt.user.client.rpc.SerializationException, false, false, true, true, com.google.gwt.user.client.rpc.SerializationException/2836333220, 2836333220 +com.google.gwt.user.client.rpc.ServiceDefTarget$NoServiceEntryPointSpecifiedException, false, false, true, true, com.google.gwt.user.client.rpc.ServiceDefTarget$NoServiceEntryPointSpecifiedException/3408313447, 3408313447 +com.google.gwt.user.client.rpc.XsrfToken, false, false, true, true, com.google.gwt.user.client.rpc.XsrfToken/4254043109, 4254043109 +com.google.web.bindery.event.shared.UmbrellaException, false, false, true, true, com.google.web.bindery.event.shared.UmbrellaException/1025846929, 1025846929 +java.io.IOException, false, false, true, true, java.io.IOException/1159940531, 1159940531 +java.io.UnsupportedEncodingException, false, false, true, true, java.io.UnsupportedEncodingException/1526756933, 1526756933 +java.lang.ArithmeticException, false, false, true, true, java.lang.ArithmeticException/1539622151, 1539622151 +java.lang.ArrayIndexOutOfBoundsException, false, false, true, true, java.lang.ArrayIndexOutOfBoundsException/600550433, 600550433 +java.lang.ArrayStoreException, false, false, true, true, java.lang.ArrayStoreException/3540507190, 3540507190 +java.lang.AssertionError, false, false, true, true, java.lang.AssertionError/3490171458, 3490171458 +java.lang.Boolean, false, false, true, true, java.lang.Boolean/476441737, 476441737 +java.lang.ClassCastException, false, false, true, true, java.lang.ClassCastException/702295179, 702295179 +java.lang.Error, false, false, true, true, java.lang.Error/1331973429, 1331973429 +java.lang.Exception, true, false, true, true, java.lang.Exception/1920171873, 1920171873 +java.lang.IllegalArgumentException, false, false, true, true, java.lang.IllegalArgumentException/1755012560, 1755012560 +java.lang.IllegalStateException, false, false, true, true, java.lang.IllegalStateException/1972187323, 1972187323 +java.lang.IndexOutOfBoundsException, false, false, true, true, java.lang.IndexOutOfBoundsException/2489527753, 2489527753 +java.lang.NegativeArraySizeException, false, false, true, true, java.lang.NegativeArraySizeException/3846860241, 3846860241 +java.lang.NullPointerException, false, false, true, true, java.lang.NullPointerException/1463492344, 1463492344 +java.lang.NumberFormatException, false, false, true, true, java.lang.NumberFormatException/3305228476, 3305228476 +java.lang.RuntimeException, true, false, true, true, java.lang.RuntimeException/515124647, 515124647 +java.lang.StackTraceElement, false, false, true, true, java.lang.StackTraceElement/455763907, 455763907 +[Ljava.lang.StackTraceElement;, false, false, true, true, [Ljava.lang.StackTraceElement;/3867167983, 3867167983 +java.lang.String, true, true, true, true, java.lang.String/2004016611, 2004016611 +java.lang.StringIndexOutOfBoundsException, false, false, true, true, java.lang.StringIndexOutOfBoundsException/500777603, 500777603 +java.lang.Throwable, true, false, true, true, java.lang.Throwable/2953622131, 2953622131 +java.lang.UnsupportedOperationException, false, false, true, true, java.lang.UnsupportedOperationException/3744010015, 3744010015 +java.lang.annotation.AnnotationFormatError, false, false, true, true, java.lang.annotation.AnnotationFormatError/2257184627, 2257184627 +java.lang.annotation.AnnotationTypeMismatchException, false, false, true, true, java.lang.annotation.AnnotationTypeMismatchException/976205828, 976205828 +java.security.DigestException, false, false, true, true, java.security.DigestException/629316798, 629316798 +java.security.GeneralSecurityException, false, false, true, true, java.security.GeneralSecurityException/2669239907, 2669239907 +java.security.NoSuchAlgorithmException, false, false, true, true, java.security.NoSuchAlgorithmException/2892037213, 2892037213 +java.util.Collections$EmptySet, false, false, true, true, java.util.Collections$EmptySet/3523698179, 3523698179 +java.util.ConcurrentModificationException, false, false, true, true, java.util.ConcurrentModificationException/2717383897, 2717383897 +java.util.EmptyStackException, false, false, true, true, java.util.EmptyStackException/89438517, 89438517 +java.util.HashMap, false, false, true, true, java.util.HashMap/1797211028, 1797211028 +java.util.HashSet, false, false, true, true, java.util.HashSet/3273092938, 3273092938 +java.util.LinkedHashMap, false, false, true, true, java.util.LinkedHashMap/3008245022, 3008245022 +java.util.LinkedHashSet, false, false, true, true, java.util.LinkedHashSet/1826081506, 1826081506 +java.util.NoSuchElementException, false, false, true, true, java.util.NoSuchElementException/1559248883, 1559248883 +java.util.TooManyListenersException, false, false, true, true, java.util.TooManyListenersException/2023078032, 2023078032 +java.util.TreeMap, false, false, true, true, java.util.TreeMap/1493889780, 1493889780 +java.util.TreeSet, false, false, true, true, java.util.TreeSet/4043497002, 4043497002 +javax.validation.ConstraintDeclarationException, false, false, true, true, javax.validation.ConstraintDeclarationException/3610544007, 3610544007 +javax.validation.ConstraintDefinitionException, false, false, true, true, javax.validation.ConstraintDefinitionException/3732439488, 3732439488 +javax.validation.ConstraintViolationException, false, false, true, true, javax.validation.ConstraintViolationException/173345760, 173345760 +javax.validation.GroupDefinitionException, false, false, true, true, javax.validation.GroupDefinitionException/4024780846, 4024780846 +javax.validation.UnexpectedTypeException, false, false, true, true, javax.validation.UnexpectedTypeException/593026390, 593026390 +javax.validation.ValidationException, false, false, true, true, javax.validation.ValidationException/1570221831, 1570221831 +junit.framework.AssertionFailedError, false, false, true, true, junit.framework.AssertionFailedError/3756236039, 3756236039 +us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException, false, false, true, true, us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException/4293556240, 4293556240 +us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.FormatException, false, false, true, true, us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.FormatException/33428264, 33428264 +us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.MissingReference, false, false, true, true, us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.MissingReference/2680583992, 2680583992 From lgiessmann at common-lisp.net Mon Sep 12 08:58:19 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 01:58:19 -0700 Subject: [isidorus-cvs] r869 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/lib Message-ID: Author: lgiessmann Date: Mon Sep 12 01:58:19 2011 New Revision: 869 Log: gdl-frontend: Widgets: updated the referenced jar of the TmEngine module Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/lib/GDL_TmEngine.jar Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/lib/GDL_TmEngine.jar ============================================================================== Binary file (source and/or target). No diff available. From lgiessmann at common-lisp.net Mon Sep 12 09:19:01 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 02:19:01 -0700 Subject: [isidorus-cvs] r870 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Mon Sep 12 02:19:01 2011 New Revision: 870 Log: gdl-frontend: Widgets: fixed a bug when sending the commit request for http://textgrid.org/serviceregistry/model/types/Environment instances Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 01:58:19 2011 (r869) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 02:19:01 2011 (r870) @@ -96,7 +96,7 @@ // since it would be exactly the same topic. //Window.alert(jtm); // TODO: remove - builder.sendRequest(null, new EnvironmentCommitRequest(jtm)); + builder.sendRequest(jtm, new EnvironmentCommitRequest(jtm)); }catch(RequestException e){ Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); } From lgiessmann at common-lisp.net Mon Sep 12 09:31:59 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 02:31:59 -0700 Subject: [isidorus-cvs] r871 - branches/gdl-frontend/src/rest_interface Message-ID: Author: lgiessmann Date: Mon Sep 12 02:31:58 2011 New Revision: 871 Log: gdl-backend: removed the json-interface-caching mechanism of the gdl-frontend (for now) Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 12 02:19:01 2011 (r870) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 12 02:31:58 2011 (r871) @@ -125,17 +125,9 @@ (with-writer-lock (let ((result (jtm-delete-interface:mark-as-deleted-from-jtm json-data :revision (get-revision)))) - (if result - (progn - (when (typep result 'd:TopicC) - (append ;;the append function is used only for suppress - ;;style warnings of unused delete return values - (delete (elephant::oid result) *type-table*) - (delete (elephant::oid result) *instance-table*))) - (format nil "")) ;operation succeeded - (progn - (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) - (format nil "object not found"))))))) + (unless result + (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) + (format nil "object not found")))))) (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) @@ -150,10 +142,8 @@ (hunchentoot:raw-post-data :external-format external-format :force-text t))) (with-writer-lock - (let ((frag (jtm-importer:import-construct-from-jtm-string - json-data :revision (get-revision) :tm-id *gdl-tm-id*))) - (when frag - (push-to-cache (d:topic frag))))))) + (jtm-importer:import-construct-from-jtm-string + json-data :revision (get-revision) :tm-id *gdl-tm-id*)))) (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) Modified: branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp Mon Sep 12 02:19:01 2011 (r870) +++ branches/gdl-frontend/src/rest_interface/set-up-json-interface.lisp Mon Sep 12 02:31:58 2011 (r871) @@ -578,11 +578,11 @@ (handler-case (progn (json-tmcl::topictype-p topic-instance topictype topictype-constraint nil 0) - (push (elephant::oid topic-instance) *type-table*)) + (pushnew (elephant::oid topic-instance) *type-table*)) (condition () nil))) (handler-case (progn (json-tmcl::valid-instance-p topic-instance nil nil 0) - (push (elephant::oid topic-instance) *instance-table*)) + (pushnew (elephant::oid topic-instance) *instance-table*)) (condition () nil))) From lgiessmann at common-lisp.net Mon Sep 12 12:18:07 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 05:18:07 -0700 Subject: [isidorus-cvs] r872 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base button environment isidorus view Message-ID: Author: lgiessmann Date: Mon Sep 12 05:18:04 2011 New Revision: 872 Log: gdl-frontend: Widgets: add new functionality to the GdlCommitButton => after a commit of a created topic/association the carrier is reset Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCreateButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlDefaultCreatorTopicView.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Mon Sep 12 05:18:04 2011 (r872) @@ -211,7 +211,7 @@ } ArrayList> data = new ArrayList>(); data.add(new Pair(this.requestedSchemaTm, TopicMapsTypes.TopicMap)); - this.commitCallback.commitTmConstruct(data, this.tmEngine, null); + this.commitCallback.commitTmConstruct(data, null, this.tmEngine); }catch(Exception e){ for (IOnErrorCallback handler : localOnErrorContainer) { handler.onError(GdlErrorTypes.CommitError, e); @@ -276,7 +276,6 @@ } - // Creates the actual view from the requested topic map public void createView(){ try{ Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java Mon Sep 12 05:18:04 2011 (r872) @@ -1,12 +1,15 @@ package us.isidor.gdl.anaToMia.Widgets.button; -import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; + import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject; import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import us.isidor.gdl.anaToMia.Widgets.environment.ICommitCallback; import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException; +import us.isidor.gdl.anaToMia.Widgets.view.GdlAssociationView; +import us.isidor.gdl.anaToMia.Widgets.view.GdlTopicView; + import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.Window; @@ -24,25 +27,34 @@ public GdlCommitButton(Topic tmRepresentative, Construct receivedData, GdlVisibleObject parent) throws InvalidGdlSchemaException, ExecutionException{ super(tmRepresentative, receivedData, parent); ((Button)this.subElements.get(0)).setText("commit"); - this.getButton().addClickHandler(new CommitButtonClickHandler(this)); + this.getButton().addClickHandler(new CommitButtonClickHandler()); } - protected class CommitButtonClickHandler implements ClickHandler { - private GdlCommitButton owner = null; + public void resetCarriers(){ + GdlVisibleObject parent = this.getGdlParent(); - public CommitButtonClickHandler(GdlCommitButton owner){ - this.owner = owner; + while(parent != null){ + if(parent instanceof GdlTopicView)((GdlTopicView)parent).resetRepresentedTopic(); + if(parent instanceof GdlAssociationView)((GdlAssociationView)parent).resetRepresentedAssociations(); + parent = parent.getGdlParent(); } + } + + + protected class CommitButtonClickHandler implements ClickHandler { + private GdlCommitButton owner = null; + + + public CommitButtonClickHandler() { } @Override public void onClick(ClickEvent event) { try{ - TmEngine tmEngine = this.owner.getRoot().getTmEngine(); ICommitCallback callback = this.owner.getRoot().getCommitCallback(); - callback.commitTmConstruct(this.owner.getGdlParent().getContent(null, true), tmEngine, this.owner.getId()); + callback.commitTmConstruct(this.owner.getGdlParent().getContent(null, true), GdlCommitButton.this, this.owner.getRoot().getTmEngine()); }catch(Exception e){ e.printStackTrace(); Window.alert("caught: " + e.getMessage()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCreateButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCreateButton.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCreateButton.java Mon Sep 12 05:18:04 2011 (r872) @@ -8,6 +8,7 @@ import com.google.gwt.user.client.ui.Button; public class GdlCreateButton extends GdlActionButton { + // TOOD: is this class really necessary or is GdlCommitButton sufficient??? // TODO: implement protected GdlCreateButton(){ Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java Mon Sep 12 05:18:04 2011 (r872) @@ -10,6 +10,8 @@ import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import us.isidor.gdl.anaToMia.Widgets.environment.IDeleteCallback; import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException; +import us.isidor.gdl.anaToMia.Widgets.view.GdlAssociationView; +import us.isidor.gdl.anaToMia.Widgets.view.GdlTopicView; public class GdlDeleteButton extends GdlActionButton { // TODO: implement @@ -26,6 +28,17 @@ } + public void resetCarriers(){ + GdlVisibleObject parent = this.getGdlParent(); + + while(parent != null){ + if(parent instanceof GdlTopicView)((GdlTopicView)parent).resetRepresentedTopic(); + if(parent instanceof GdlAssociationView)((GdlAssociationView)parent).resetRepresentedAssociations(); + parent = parent.getGdlParent(); + } + } + + protected class DeleteButtonClickHandler implements ClickHandler { private GdlDeleteButton owner = null; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java Mon Sep 12 05:18:04 2011 (r872) @@ -1,11 +1,13 @@ package us.isidor.gdl.anaToMia.Widgets.environment; import java.util.ArrayList; + import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes; +import us.isidor.gdl.anaToMia.Widgets.button.GdlCommitButton; public interface ICommitCallback { - public void commitTmConstruct(ArrayList> constructs, TmEngine tmengine, String buttonId); + public void commitTmConstruct(ArrayList> constructs, GdlCommitButton sender, TmEngine tmEngine); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 05:18:04 2011 (r872) @@ -3,6 +3,7 @@ import java.util.ArrayList; import us.isidor.gdl.anaToMia.Widgets.base.PSIs; import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; +import us.isidor.gdl.anaToMia.Widgets.button.GdlCommitButton; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; import com.google.gwt.core.client.JsArray; import com.google.gwt.http.client.Request; @@ -37,20 +38,21 @@ @Override - public void commitTmConstruct(ArrayList> constructs, TmEngine tmEngine, String buttonId) { + public void commitTmConstruct(ArrayList> constructs, GdlCommitButton sender, TmEngine tmEngine) { try{ + String buttonId = sender == null ? null : sender.getId(); if("hash_object_commit_button_id".equals(buttonId)){ this.commitCreatedHashObject(constructs, tmEngine, "edited_hash_object_commit_button_id".equals(buttonId)); } else if("environment_commit_button_id".equals(buttonId)){ - this.commitCreatedEnvironment(constructs, tmEngine); + this.commitCreatedEnvironment(constructs, sender, tmEngine); } - }catch(ExporterException ee){ - Window.alert("failed to commit the Topic Maps data, because: " + ee.getMessage()); + }catch(Exception e){ + Window.alert("failed to commit the Topic Maps data, because: " + e.getMessage()); } } - private void commitCreatedEnvironment(ArrayList> constructs, TmEngine tmEngine) throws ExporterException { + private void commitCreatedEnvironment(ArrayList> constructs, GdlCommitButton sender, TmEngine tmEngine) throws ExporterException { final String carrierPsi = PSIs.GDL.gdl + "environment_default_creator_topic_view_id"; ArrayList topics = new ArrayList(); ArrayList topicMaps = new ArrayList(); @@ -94,9 +96,7 @@ try{ // a check for an existing environment topic is not necessary, // since it would be exactly the same topic. - - //Window.alert(jtm); // TODO: remove - builder.sendRequest(jtm, new EnvironmentCommitRequest(jtm)); + builder.sendRequest(jtm, new EnvironmentCommitRequest(jtm, sender)); }catch(RequestException e){ Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); } @@ -177,14 +177,16 @@ private class EnvironmentCommitRequest implements RequestCallback { private String objectToBeSend = null; + private GdlCommitButton sender = null; @SuppressWarnings("unused") private EnvironmentCommitRequest(){} - public EnvironmentCommitRequest(String objectToBeCommitted){ + public EnvironmentCommitRequest(String objectToBeCommitted, GdlCommitButton sender){ this.objectToBeSend = objectToBeCommitted; + this.sender = sender; } @@ -192,6 +194,7 @@ public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { Window.alert("commit operation of the object " + this.objectToBeSend + " successed"); + this.sender.resetCarriers(); // TODO: reset the web page } else { Window.alert("commit operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java Mon Sep 12 05:18:04 2011 (r872) @@ -48,6 +48,16 @@ } + public void resetRepresentedAssociations(){ + for (Widget ctrl : this.subElements) { + if(ctrl instanceof ButtonableObject){ + if(((ButtonableObject)ctrl).getMainObject() instanceof AssociationItem){ + ((AssociationItem)((ButtonableObject)ctrl).getMainObject()).resetRepresentedAssociation(); + } + } + } + } + // content orientation has no effect on a view, so here must the original method // defined in GdlVisibleObject implemented @Override @@ -221,11 +231,11 @@ // TODO: implement // reifier => topic-role - // item-identifeir => topic-role + // item-identifier => topic-role // type => association-role // reifier => association-role // item-identifier => association-role - // scope => assocition-role + // scope => association-role } return result; @@ -238,12 +248,27 @@ // represented by this class public class AssociationItem extends GdlView { private int indexInParent = -1; + private Association representedAssociation = null; @SuppressWarnings("unchecked") public Association getRepresentedAssociation() throws InvalidGdlSchemaException{ - if(this.receivedData != null) return (Association)this.receivedData; - else return this.tmRepresentative.getTopicMap().createAssociation(((GdlAssociationView)this.getGdlParent()).getAssociationType(), (JsArray)JsArray.createArray()); + if(this.receivedData != null){ + return (Association)this.receivedData; + } else if (this.representedAssociation != null){ + return this.representedAssociation; + } else{ + this.representedAssociation = this.tmRepresentative.getTopicMap().createAssociation(((GdlAssociationView)this.getGdlParent()).getAssociationType(), (JsArray)JsArray.createArray()); + return this.representedAssociation; + } + } + + + // can be called to set the represented topic to null, e.g. + // if a created association was submitted and a new association is created, + // so the old carrier is reset as well + public void resetRepresentedAssociation(){ + this.representedAssociation = null; } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlDefaultCreatorTopicView.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlDefaultCreatorTopicView.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlDefaultCreatorTopicView.java Mon Sep 12 05:18:04 2011 (r872) @@ -22,4 +22,12 @@ public GdlPanel getRoot(){ return this.rootPanel; } + + + // removes and destroys the carrier topic that is created when the getContent + // method is invoked, so duplicate data entries are not produced! + public void resetCarrier(){ + //TODO: implement => call for this instance and each child creator instance + + } } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Mon Sep 12 02:31:58 2011 (r871) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Mon Sep 12 05:18:04 2011 (r872) @@ -146,8 +146,7 @@ public ArrayList> getContent(Construct carrier, boolean validate) throws InvalidGdlSchemaException, ExecutionException, InvalidContentException { ArrayList> result = new ArrayList>(); - Topic localCarrier = (Topic)this.receivedData; - if(localCarrier == null) localCarrier = this.getRepresentedTopic(); + Topic localCarrier = this.getRepresentedTopic(); for (Widget ctrl : this.subElements) { int i = 0; @@ -225,4 +224,12 @@ return (Topic)this.receivedData; } } + + + // can be called to set the represented topic to null, e.g. + // if a created topic was submitted and a new topic is created, + // so the old carrier is reset as well + public void resetRepresentedTopic(){ + this.representedTopic = null; + } } From lgiessmann at common-lisp.net Mon Sep 12 12:48:02 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 05:48:02 -0700 Subject: [isidorus-cvs] r873 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: button isidorus Message-ID: Author: lgiessmann Date: Mon Sep 12 05:47:59 2011 New Revision: 873 Log: gdl-frontend: Widgets: fixed a bug when committing jtm-fragments Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java Mon Sep 12 05:18:04 2011 (r872) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java Mon Sep 12 05:47:59 2011 (r873) @@ -43,18 +43,15 @@ protected class CommitButtonClickHandler implements ClickHandler { - private GdlCommitButton owner = null; - - public CommitButtonClickHandler() { } @Override public void onClick(ClickEvent event) { try{ - ICommitCallback callback = this.owner.getRoot().getCommitCallback(); + ICommitCallback callback = GdlCommitButton.this.getRoot().getCommitCallback(); - callback.commitTmConstruct(this.owner.getGdlParent().getContent(null, true), GdlCommitButton.this, this.owner.getRoot().getTmEngine()); + callback.commitTmConstruct(GdlCommitButton.this.getGdlParent().getContent(null, true), GdlCommitButton.this, GdlCommitButton.this.getRoot().getTmEngine()); }catch(Exception e){ e.printStackTrace(); Window.alert("caught: " + e.getMessage()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Mon Sep 12 05:18:04 2011 (r872) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Mon Sep 12 05:47:59 2011 (r873) @@ -1,6 +1,7 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; +import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -8,6 +9,6 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } From lgiessmann at common-lisp.net Mon Sep 12 12:59:43 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 05:59:43 -0700 Subject: [isidorus-cvs] r874 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Mon Sep 12 05:59:41 2011 New Revision: 874 Log: gdl-frontend: Widgets: fixed some error messages Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 05:47:59 2011 (r873) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 05:59:41 2011 (r874) @@ -193,7 +193,7 @@ @Override public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { - Window.alert("commit operation of the object " + this.objectToBeSend + " successed"); + Window.alert("commit operation of the object " + this.objectToBeSend + " succeeded"); this.sender.resetCarriers(); // TODO: reset the web page } else { @@ -225,7 +225,7 @@ @Override public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { - Window.alert("commit operation of the object " + this.objectToBeSend + " successed"); + Window.alert("commit operation of the object " + this.objectToBeSend + " succeeded"); // TODO: reset the web page } else { Window.alert("commit operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); @@ -284,7 +284,7 @@ Window.alert("could not commit the topic: " + this.objectToBeSend + ", because(" + e.getClass() + "): " + e.getMessage()); } } else { - Window.alert("commit operation of the object " + this.objectToBeSend + " successed"); + Window.alert("commit operation of the object " + this.objectToBeSend + " succeeded"); // TODO: reset the web page } } else { Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Mon Sep 12 05:47:59 2011 (r873) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Mon Sep 12 05:59:41 2011 (r874) @@ -82,7 +82,7 @@ @Override public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { - Window.alert("delete operation of the object " + this.objectToBeSend + " successed"); + Window.alert("delete operation of the object " + this.objectToBeSend + " succeeded"); // TODO: reset the web page } else { Window.alert("delete operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Mon Sep 12 05:47:59 2011 (r873) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Mon Sep 12 05:59:41 2011 (r874) @@ -1,7 +1,6 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; -import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -9,6 +8,6 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } From lgiessmann at common-lisp.net Mon Sep 12 13:18:00 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 06:18:00 -0700 Subject: [isidorus-cvs] r875 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: button environment isidorus view Message-ID: Author: lgiessmann Date: Mon Sep 12 06:17:58 2011 New Revision: 875 Log: gdl-frontend: Widgets: changed the behavior of the commit callback Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java Mon Sep 12 05:59:41 2011 (r874) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCommitButton.java Mon Sep 12 06:17:58 2011 (r875) @@ -7,9 +7,6 @@ import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import us.isidor.gdl.anaToMia.Widgets.environment.ICommitCallback; import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException; -import us.isidor.gdl.anaToMia.Widgets.view.GdlAssociationView; -import us.isidor.gdl.anaToMia.Widgets.view.GdlTopicView; - import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.Window; @@ -31,17 +28,6 @@ } - public void resetCarriers(){ - GdlVisibleObject parent = this.getGdlParent(); - - while(parent != null){ - if(parent instanceof GdlTopicView)((GdlTopicView)parent).resetRepresentedTopic(); - if(parent instanceof GdlAssociationView)((GdlAssociationView)parent).resetRepresentedAssociations(); - parent = parent.getGdlParent(); - } - } - - protected class CommitButtonClickHandler implements ClickHandler { public CommitButtonClickHandler() { } @@ -51,7 +37,7 @@ try{ ICommitCallback callback = GdlCommitButton.this.getRoot().getCommitCallback(); - callback.commitTmConstruct(GdlCommitButton.this.getGdlParent().getContent(null, true), GdlCommitButton.this, GdlCommitButton.this.getRoot().getTmEngine()); + callback.commitTmConstruct(GdlCommitButton.this.getGdlParent().getContent(null, true), GdlCommitButton.this.getId(), GdlCommitButton.this.getRoot().getTmEngine()); }catch(Exception e){ e.printStackTrace(); Window.alert("caught: " + e.getMessage()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java Mon Sep 12 05:59:41 2011 (r874) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlDeleteButton.java Mon Sep 12 06:17:58 2011 (r875) @@ -10,8 +10,6 @@ import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import us.isidor.gdl.anaToMia.Widgets.environment.IDeleteCallback; import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException; -import us.isidor.gdl.anaToMia.Widgets.view.GdlAssociationView; -import us.isidor.gdl.anaToMia.Widgets.view.GdlTopicView; public class GdlDeleteButton extends GdlActionButton { // TODO: implement @@ -28,17 +26,6 @@ } - public void resetCarriers(){ - GdlVisibleObject parent = this.getGdlParent(); - - while(parent != null){ - if(parent instanceof GdlTopicView)((GdlTopicView)parent).resetRepresentedTopic(); - if(parent instanceof GdlAssociationView)((GdlAssociationView)parent).resetRepresentedAssociations(); - parent = parent.getGdlParent(); - } - } - - protected class DeleteButtonClickHandler implements ClickHandler { private GdlDeleteButton owner = null; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java Mon Sep 12 05:59:41 2011 (r874) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java Mon Sep 12 06:17:58 2011 (r875) @@ -5,9 +5,9 @@ import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes; -import us.isidor.gdl.anaToMia.Widgets.button.GdlCommitButton; + public interface ICommitCallback { - public void commitTmConstruct(ArrayList> constructs, GdlCommitButton sender, TmEngine tmEngine); + public void commitTmConstruct(ArrayList> constructs, String buttonId, TmEngine tmEngine); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 05:59:41 2011 (r874) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 06:17:58 2011 (r875) @@ -3,7 +3,6 @@ import java.util.ArrayList; import us.isidor.gdl.anaToMia.Widgets.base.PSIs; import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; -import us.isidor.gdl.anaToMia.Widgets.button.GdlCommitButton; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; import com.google.gwt.core.client.JsArray; import com.google.gwt.http.client.Request; @@ -38,13 +37,12 @@ @Override - public void commitTmConstruct(ArrayList> constructs, GdlCommitButton sender, TmEngine tmEngine) { + public void commitTmConstruct(ArrayList> constructs, String buttonId, TmEngine tmEngine) { try{ - String buttonId = sender == null ? null : sender.getId(); if("hash_object_commit_button_id".equals(buttonId)){ this.commitCreatedHashObject(constructs, tmEngine, "edited_hash_object_commit_button_id".equals(buttonId)); } else if("environment_commit_button_id".equals(buttonId)){ - this.commitCreatedEnvironment(constructs, sender, tmEngine); + this.commitCreatedEnvironment(constructs, tmEngine); } }catch(Exception e){ Window.alert("failed to commit the Topic Maps data, because: " + e.getMessage()); @@ -52,7 +50,7 @@ } - private void commitCreatedEnvironment(ArrayList> constructs, GdlCommitButton sender, TmEngine tmEngine) throws ExporterException { + private void commitCreatedEnvironment(ArrayList> constructs, TmEngine tmEngine) throws ExporterException { final String carrierPsi = PSIs.GDL.gdl + "environment_default_creator_topic_view_id"; ArrayList topics = new ArrayList(); ArrayList topicMaps = new ArrayList(); @@ -73,11 +71,16 @@ } else if(topics.size() != 0){ tm = topics.get(0).getTopicMap(); - top = topics.get(0); + top = topics.get(0); carrierLocator = tm.createLocator(carrierPsi); } if(top != null){ + // remove old psis + JsArray psis = top.getSubjectIdentifiers(); + for(int i = 0; i != psis.length(); ++i)top.removeSubjectIdentifier(psis.get(i)); + + // set the new vaid psi Name envName = top.getNames().get(0); Locator psi = tm.createLocator("http://textgrid.org/serviceregistry/environment/" + envName.getValue()); top.removeSubjectIdentifier(carrierLocator); @@ -96,7 +99,7 @@ try{ // a check for an existing environment topic is not necessary, // since it would be exactly the same topic. - builder.sendRequest(jtm, new EnvironmentCommitRequest(jtm, sender)); + builder.sendRequest(jtm, new EnvironmentCommitRequest(jtm)); }catch(RequestException e){ Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); } @@ -177,16 +180,14 @@ private class EnvironmentCommitRequest implements RequestCallback { private String objectToBeSend = null; - private GdlCommitButton sender = null; @SuppressWarnings("unused") private EnvironmentCommitRequest(){} - public EnvironmentCommitRequest(String objectToBeCommitted, GdlCommitButton sender){ + public EnvironmentCommitRequest(String objectToBeCommitted){ this.objectToBeSend = objectToBeCommitted; - this.sender = sender; } @@ -194,7 +195,6 @@ public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { Window.alert("commit operation of the object " + this.objectToBeSend + " succeeded"); - this.sender.resetCarriers(); // TODO: reset the web page } else { Window.alert("commit operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java Mon Sep 12 05:59:41 2011 (r874) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlAssociationView.java Mon Sep 12 06:17:58 2011 (r875) @@ -47,17 +47,6 @@ super(tmRepresentative, receivedData, gdlParent); } - - public void resetRepresentedAssociations(){ - for (Widget ctrl : this.subElements) { - if(ctrl instanceof ButtonableObject){ - if(((ButtonableObject)ctrl).getMainObject() instanceof AssociationItem){ - ((AssociationItem)((ButtonableObject)ctrl).getMainObject()).resetRepresentedAssociation(); - } - } - } - } - // content orientation has no effect on a view, so here must the original method // defined in GdlVisibleObject implemented @Override @@ -264,14 +253,6 @@ } - // can be called to set the represented topic to null, e.g. - // if a created association was submitted and a new association is created, - // so the old carrier is reset as well - public void resetRepresentedAssociation(){ - this.representedAssociation = null; - } - - @SuppressWarnings("unused") private AssociationItem(){ super(); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Mon Sep 12 05:59:41 2011 (r874) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlTopicView.java Mon Sep 12 06:17:58 2011 (r875) @@ -224,12 +224,4 @@ return (Topic)this.receivedData; } } - - - // can be called to set the represented topic to null, e.g. - // if a created topic was submitted and a new topic is created, - // so the old carrier is reset as well - public void resetRepresentedTopic(){ - this.representedTopic = null; - } } From lgiessmann at common-lisp.net Mon Sep 12 16:30:55 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 09:30:55 -0700 Subject: [isidorus-cvs] r876 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Mon Sep 12 09:30:54 2011 New Revision: 876 Log: gdl-frontend: Widgets: changed the behavior of the commit callback => old psis Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 06:17:58 2011 (r875) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Mon Sep 12 09:30:54 2011 (r876) @@ -45,11 +45,22 @@ this.commitCreatedEnvironment(constructs, tmEngine); } }catch(Exception e){ + e.printStackTrace(); Window.alert("failed to commit the Topic Maps data, because: " + e.getMessage()); } } + // remove all psis from the passed topic + private void removeSubjectIdentifiers(Topic top){ + if(top == null) return; + JsArray psis = top.getSubjectIdentifiers(); + ArrayList jPsis = new ArrayList(); + for(int i = 0; i != psis.length(); ++i)jPsis.add(psis.get(i)); + for (Locator jPsi : jPsis)top.removeSubjectIdentifier(jPsi); + } + + private void commitCreatedEnvironment(ArrayList> constructs, TmEngine tmEngine) throws ExporterException { final String carrierPsi = PSIs.GDL.gdl + "environment_default_creator_topic_view_id"; ArrayList topics = new ArrayList(); @@ -77,13 +88,11 @@ if(top != null){ // remove old psis - JsArray psis = top.getSubjectIdentifiers(); - for(int i = 0; i != psis.length(); ++i)top.removeSubjectIdentifier(psis.get(i)); + this.removeSubjectIdentifiers(top); - // set the new vaid psi + // set the new valid psi Name envName = top.getNames().get(0); Locator psi = tm.createLocator("http://textgrid.org/serviceregistry/environment/" + envName.getValue()); - top.removeSubjectIdentifier(carrierLocator); top.addSubjectIdentifier(psi); } @@ -101,6 +110,7 @@ // since it would be exactly the same topic. builder.sendRequest(jtm, new EnvironmentCommitRequest(jtm)); }catch(RequestException e){ + e.printStackTrace(); Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); } } @@ -151,7 +161,7 @@ Name env = assoc.getRoles(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/environment", tm)).get(0).getPlayer().getNames().get(0); Occurrence key = top.getOccurrences(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/key", tm)).get(0); Locator psi = tm.createLocator("http://textgrid.org/serviceregistry/hash-object/" + env.getValue() + "/" + key.getValue()); - top.removeSubjectIdentifier(carrierLocator); + this.removeSubjectIdentifiers(top); top.addSubjectIdentifier(psi); String jtm = null; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Mon Sep 12 06:17:58 2011 (r875) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Mon Sep 12 09:30:54 2011 (r876) @@ -1,6 +1,7 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; +import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -8,6 +9,6 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } From lgiessmann at common-lisp.net Tue Sep 13 06:19:32 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 12 Sep 2011 23:19:32 -0700 Subject: [isidorus-cvs] r877 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus Message-ID: Author: lgiessmann Date: Mon Sep 12 23:19:30 2011 New Revision: 877 Log: gdl-frontend: Widgets: changed the identifier of the schema topic map, so the backend and frontend topic map identifiers are equal Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Mon Sep 12 09:30:54 2011 (r876) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Mon Sep 12 23:19:30 2011 (r877) @@ -14,6 +14,7 @@ import us.isidor.gdl.anaToMia.Widgets.environment.ILoadSchemaCallback; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; import us.isidor.gdl.anaToMia.Widgets.environment.TopicIdentifierTypes; +import us.isidor.gdl.anaToMia.Widgets.isidorus.IsidorusConstants; import us.isidor.gdl.anaToMia.Widgets.view.GdlDefaultTopicView; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.Window; @@ -43,7 +44,7 @@ // the topic map that is the base of the created GDL view private TopicMap requestedSchemaTm = null; // the locator of the topic map "requestedSchemaTm" - private final String REQUESTED_SCHEMA_TOPIC_MAP_LOCATOR = PSIs.GDL.gdl + "topicmap/tm-1"; + private final String REQUESTED_SCHEMA_TOPIC_MAP_LOCATOR = IsidorusConstants.TOPIC_MAP_IDENTIFIER; // callback instance for getting/loading the GDL schema private ILoadSchemaCallback loadSchemaCallback = null; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Mon Sep 12 09:30:54 2011 (r876) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Mon Sep 12 23:19:30 2011 (r877) @@ -1,14 +1,15 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; -import com.google.gwt.core.client.GWT; + import com.google.gwt.user.client.Window; public class IsidorusConstants { + public final static String TOPIC_MAP_IDENTIFIER = "http://textgrid.org/serviceregistry/gdl-frontend/gdl-tm"; public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } From lgiessmann at common-lisp.net Tue Sep 13 07:01:59 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 00:01:59 -0700 Subject: [isidorus-cvs] r878 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets Message-ID: Author: lgiessmann Date: Tue Sep 13 00:01:58 2011 New Revision: 878 Log: gdl-frontend: Widgets: added a TODO Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/TODO.txt Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/TODO.txt ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/TODO.txt Mon Sep 12 23:19:30 2011 (r877) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/TODO.txt Tue Sep 13 00:01:58 2011 (r878) @@ -1,6 +1,9 @@ +* implement export of Fragments, e.g. exportJTM11Fragment(ArrayList topics, ArrayList associaitions), + e.i. the passed topics and associations must be exported with all characteristics and associations, + and all referenced topics must be exported as stubs * implement validation * implement the handling of default-values * Implement TopicMaps data consumption * Implement TopicMaps data generation * Implement HiddenValue -* Fix css-pseudo-class-handlers (=> Buttons) \ No newline at end of file +* Fix css-pseudo-class-handlers \ No newline at end of file From lgiessmann at common-lisp.net Tue Sep 13 07:10:28 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 00:10:28 -0700 Subject: [isidorus-cvs] r879 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 00:10:27 2011 New Revision: 879 Log: gdl-frontend: Widgets: changed the behavior of the delete-callback => if a topic is deleted on the server-side, it is also deleted for the topic map on the client side Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Tue Sep 13 00:01:58 2011 (r878) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Tue Sep 13 00:10:27 2011 (r879) @@ -54,7 +54,7 @@ builder.setHeader("Content-type", "application/json"); //RootPanel.getBodyElement().setInnerText(delObj.toString()); // TODO: remove - builder.sendRequest(delObj.toString(), new DeleteRequest(delObj)); + builder.sendRequest(delObj.toString(), new DeleteRequest(delObj, env)); }catch(RequestException e){ Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); }catch(ExporterException e){ @@ -68,14 +68,16 @@ private class DeleteRequest implements RequestCallback { private JSONObject objectToBeSend = null; + private Topic topicToBeDeleted = null; @SuppressWarnings("unused") private DeleteRequest(){} - public DeleteRequest(JSONObject objectToBeDeleted){ + public DeleteRequest(JSONObject objectToBeDeleted, Topic topicToBeDeleted){ this.objectToBeSend = objectToBeDeleted; + this.topicToBeDeleted = topicToBeDeleted; } @@ -83,6 +85,7 @@ public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { Window.alert("delete operation of the object " + this.objectToBeSend + " succeeded"); + this.topicToBeDeleted.remove(); // TODO: reset the web page } else { Window.alert("delete operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); From lgiessmann at common-lisp.net Tue Sep 13 07:11:39 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 00:11:39 -0700 Subject: [isidorus-cvs] r880 - branches/gdl-frontend/src/json/JTM Message-ID: Author: lgiessmann Date: Tue Sep 13 00:11:38 2011 New Revision: 880 Log: jtm-importer: fixed a bug with the "parent" member Modified: branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_importer.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Tue Sep 13 00:10:27 2011 (r879) +++ branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Tue Sep 13 00:11:38 2011 (r880) @@ -76,7 +76,7 @@ ((string= item_type item_type-topic) (import-topic-stub-from-jtm-list jtm-list nil :revision revision :prefixes prefixes) - (merge-topic-from-jtm-list jtm-list nil :instance-of-p format-1.1-p + (merge-topic-from-jtm-list jtm-list :instance-of-p format-1.1-p :revision revision :prefixes prefixes)) ((string= item_type item_type-name) (import-name-from-jtm-list jtm-list nil :revision revision @@ -347,12 +347,12 @@ (Integer revision)) (map 'list #'(lambda(jtm-list) (merge-topic-from-jtm-list - jtm-list parents :revision revision :prefixes prefixes + jtm-list :revision revision :prefixes prefixes :instance-of-p instance-of-p)) jtm-lists)) -(defun merge-topic-from-jtm-list(jtm-list parents &key (instance-of-p t) +(defun merge-topic-from-jtm-list(jtm-list &key (instance-of-p t) (revision *TM-REVISION*) prefixes) "Creates and returns a topic object from the passed jtm list generated by json:decode-json-from-string. @@ -360,7 +360,7 @@ topic maps, it is only needed for the instance-of-associations - topics are added in the function import-topic-stubs-from-jtm-lists to their topic map elements." - (declare (List jtm-list prefixes parents) + (declare (List jtm-list prefixes) (Boolean instance-of-p) (Integer revision)) (let* ((ids (append (get-item :ITEM--IDENTIFIERS jtm-list) @@ -388,7 +388,9 @@ (when (and (not instance-of-p) instanceof) (error (make-condition 'JTM-error :message (format nil "From merge-topic-from-jtm-list(): the JTM-topic has an instance_of member set, but JTM version 1.0 does not allow an intance_of member within a topic object: ~a" jtm-list)))) (dolist (type-top instanceof) - (make-instance-of-association top type-top parents :revision revision)) + (make-instance-of-association + top type-top (in-topicmaps top :revision revision) + :revision revision)) (dolist (name top-names) (add-name top name :revision revision)) (dolist (occ top-occs) From lgiessmann at common-lisp.net Tue Sep 13 08:35:45 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 01:35:45 -0700 Subject: [isidorus-cvs] r881 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 01:35:44 2011 New Revision: 881 Log: gdl-frontend: Widgets: fixed a bug in the commit-url of http://textgrid.org/serviceregistry/model/types/Hash-Object instances Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 00:11:38 2011 (r880) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 01:35:44 2011 (r881) @@ -171,14 +171,12 @@ jtm = tmEngine.exportTm(topics, associations); } - String commitUrl = URL.encode(this.DELETE_REUQEST_URL); + String commitUrl = URL.encode(this.COMMIT_REQUEST_URL); String getUrl = URL.encode(this.GET_REQUEST_URL); RequestBuilder commitBuilder = new RequestBuilder(RequestBuilder.POST, commitUrl); commitBuilder.setHeader("Content-type", "application/json"); - RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.POST, getUrl); - try{ - Window.alert(jtm); //TODO: remove - + RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.GET, getUrl); + try{ if(edited)getBuilder.sendRequest(null, new EditedHashObjectCommitRequest(null, jtm, false)); else commitBuilder.sendRequest(jtm, new HashObjectCommitRequest(jtm)); }catch(RequestException e){ @@ -229,6 +227,7 @@ public HashObjectCommitRequest(String objectToBeCommitted){ this.objectToBeSend = objectToBeCommitted; + Window.alert("test"); //TODO: remove } From lgiessmann at common-lisp.net Tue Sep 13 09:07:40 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 02:07:40 -0700 Subject: [isidorus-cvs] r882 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 02:07:39 2011 New Revision: 882 Log: gdl-frontend: Widgets: added a check for existing instances of http://textgrid.org/serviceregistry/model/types/Hash-Object instances, so a commit will succeed only of there is no duplicate topic existent Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 01:35:44 2011 (r881) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 02:07:39 2011 (r882) @@ -11,11 +11,6 @@ import com.google.gwt.http.client.RequestException; import com.google.gwt.http.client.Response; import com.google.gwt.http.client.URL; -import com.google.gwt.json.client.JSONArray; -import com.google.gwt.json.client.JSONObject; -import com.google.gwt.json.client.JSONParser; -import com.google.gwt.json.client.JSONString; -import com.google.gwt.json.client.JSONValue; import com.google.gwt.user.client.Window; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; @@ -160,7 +155,8 @@ Name env = assoc.getRoles(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/environment", tm)).get(0).getPlayer().getNames().get(0); Occurrence key = top.getOccurrences(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/key", tm)).get(0); - Locator psi = tm.createLocator("http://textgrid.org/serviceregistry/hash-object/" + env.getValue() + "/" + key.getValue()); + String psiValue = "http://textgrid.org/serviceregistry/hash-object/" + env.getValue() + "/" + key.getValue(); + Locator psi = tm.createLocator(psiValue); this.removeSubjectIdentifiers(top); top.addSubjectIdentifier(psi); @@ -171,14 +167,10 @@ jtm = tmEngine.exportTm(topics, associations); } - String commitUrl = URL.encode(this.COMMIT_REQUEST_URL); - String getUrl = URL.encode(this.GET_REQUEST_URL); - RequestBuilder commitBuilder = new RequestBuilder(RequestBuilder.POST, commitUrl); - commitBuilder.setHeader("Content-type", "application/json"); + String getUrl = URL.encode(this.GET_REQUEST_URL + psiValue); RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.GET, getUrl); - try{ - if(edited)getBuilder.sendRequest(null, new EditedHashObjectCommitRequest(null, jtm, false)); - else commitBuilder.sendRequest(jtm, new HashObjectCommitRequest(jtm)); + try{ + getBuilder.sendRequest(null, new HashObjectCheckRequest(jtm, psiValue, edited)); }catch(RequestException e){ Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); } @@ -217,27 +209,41 @@ } - private class HashObjectCommitRequest implements RequestCallback { + private class HashObjectCheckRequest implements RequestCallback { private String objectToBeSend = null; + private String psi = null; + private boolean edited = false; - @SuppressWarnings("unused") - private HashObjectCommitRequest(){} - - - public HashObjectCommitRequest(String objectToBeCommitted){ - this.objectToBeSend = objectToBeCommitted; - Window.alert("test"); //TODO: remove + public HashObjectCheckRequest(String objectToBeSend, String psi, boolean edited){ + this.objectToBeSend = objectToBeSend; + this.psi = psi; + this.edited = edited; } - + @Override public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { - Window.alert("commit operation of the object " + this.objectToBeSend + " succeeded"); - // TODO: reset the web page + if(edited){ + //TODO: implement + } else { + Window.alert("could not commit the topic with the psi " + psi + " since it already exists"); + //TODO: reset page + } + } else if(404 == response.getStatusCode() && !edited) { + try{ + String commitUrl = URL.encode(CommitCallback.this.COMMIT_REQUEST_URL); + RequestBuilder commitBuilder = new RequestBuilder(RequestBuilder.POST, commitUrl); + commitBuilder.setHeader("Content-type", "application/json"); + commitBuilder.sendRequest(this.objectToBeSend, new HashObjectCommitRequest(this.objectToBeSend)); + }catch(RequestException e){ + Window.alert("could not commit the topic: " + this.objectToBeSend + ", because(" + e.getClass() + "): " + e.getMessage()); + // TODO: reset page + } } else { - Window.alert("commit operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); + Window.alert("could not commit the topic with the psi " + psi + ", because: " + response.getStatusCode() + ": " + response.getStatusText()); + // TODO: reset page } } @@ -245,97 +251,39 @@ @Override public void onError(Request request, Throwable exception) { Window.alert("could not commit the data: " + this.objectToBeSend); + // TODO: reset page } } - private class EditedHashObjectCommitRequest implements RequestCallback{ - private JSONValue requestedData = null; + private class HashObjectCommitRequest implements RequestCallback { private String objectToBeSend = null; - private boolean deletedOldOccurrence = false; - private final String deleteUrl = URL.encode(CommitCallback.this.DELETE_REUQEST_URL); - private final String commitUrl = URL.encode(CommitCallback.this.COMMIT_REQUEST_URL); @SuppressWarnings("unused") - private EditedHashObjectCommitRequest(){} + private HashObjectCommitRequest(){} - public EditedHashObjectCommitRequest(JSONValue requestedData, String objectToBeSend, boolean deletedOldOccurrence){ - this.requestedData = requestedData; - this.objectToBeSend = objectToBeSend; - this.deletedOldOccurrence = deletedOldOccurrence; + public HashObjectCommitRequest(String objectToBeCommitted){ + this.objectToBeSend = objectToBeCommitted; } @Override public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { - if(this.requestedData == null){ - JSONObject occurrenceToBeDeleted = this.getOccurrenceTobeDeleted(response.getText()); - if(occurrenceToBeDeleted != null){ - RequestBuilder deleteBuilder = new RequestBuilder(RequestBuilder.DELETE, this.deleteUrl); - deleteBuilder.setHeader("Content-type", "application/json"); - try{ - deleteBuilder.sendRequest(occurrenceToBeDeleted.toString(), new EditedHashObjectCommitRequest(occurrenceToBeDeleted, this.objectToBeSend, true)); - }catch(RequestException e){ - Window.alert("could not commit the topic: " + this.objectToBeSend + ", because(" + e.getClass() + "): " + e.getMessage()); - } - } else { - Window.alert("commit operation of the object " + this.objectToBeSend + " failed, because: the occurrence http://textgrid.org/serviceregistry/model/hash-type could not be updated"); - } - } else if(deletedOldOccurrence){ - RequestBuilder commitBuilder = new RequestBuilder(RequestBuilder.POST, this.commitUrl); - commitBuilder.setHeader("Content-type", "application/json"); - try{ - commitBuilder.sendRequest(this.objectToBeSend, new HashObjectCommitRequest(this.objectToBeSend)); - }catch(RequestException e){ - Window.alert("could not commit the topic: " + this.objectToBeSend + ", because(" + e.getClass() + "): " + e.getMessage()); - } - } else { - Window.alert("commit operation of the object " + this.objectToBeSend + " succeeded"); - // TODO: reset the web page - } + Window.alert("commit operation of the object " + this.objectToBeSend + " succeeded"); + // TODO: reset the web page } else { Window.alert("commit operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); } } - + @Override public void onError(Request request, Throwable exception) { Window.alert("could not commit the data: " + this.objectToBeSend); - } - - - private JSONObject getOccurrenceTobeDeleted(String json){ - if(json == null) return null; - - JSONValue jsonValue = JSONParser.parseStrict(json); - JSONObject fragment = jsonValue.isObject(); - JSONObject topic = null; - if(fragment != null){ - JSONValue val = fragment.get("topic"); - if(val != null) topic = val.isObject(); - } - if(topic != null){ - JSONValue occs = topic.get("occurrences"); - JSONArray occsArray = null; - if(occs != null) occsArray = occs.isArray(); - if(occsArray != null) { - for(int i = 0; i != occsArray.size(); ++i){ - JSONValue val = occsArray.get(i); - JSONObject occ = val.isObject(); - if(occ == null) continue; - - JSONValue type = occ.get("type"); - JSONString typeStr = type.isString(); - if(typeStr.stringValue().endsWith("hash-type")) return occ; // fr our purpose this soft check is sufficient enough, so the prefix need not to be varified - } - } - } - - return null; + // TODO: reset page } } } From lgiessmann at common-lisp.net Tue Sep 13 09:28:14 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 02:28:14 -0700 Subject: [isidorus-cvs] r883 - in branches/gdl-frontend/src: json/JTM model rest_interface Message-ID: Author: lgiessmann Date: Tue Sep 13 02:28:13 2011 New Revision: 883 Log: jtm-importer + gdl-interface: added a boolean variable to the jtm-importer, so a fragment of each topic that is contained in the received jtm-fragment can be created automiticaly Modified: branches/gdl-frontend/src/json/JTM/jtm_importer.lisp branches/gdl-frontend/src/model/changes.lisp branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_importer.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Tue Sep 13 02:07:39 2011 (r882) +++ branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Tue Sep 13 02:28:13 2011 (r883) @@ -29,7 +29,8 @@ (defun import-construct-from-jtm-string (jtm-string &key (revision *TM-REVISION*) - (jtm-format :1.1) tm-id) + (jtm-format :1.1) tm-id + (create-fragments nil)) "Imports the passed jtm-string. Note tm-id needs not to be declared, but if the imported construct is a topicmap and it has no item-identifiers defined, a JTM-error @@ -37,15 +38,18 @@ (declare (String jtm-string) (type (or Null String) tm-id) (Integer revision) - (Keyword jtm-format)) + (Keyword jtm-format) + (Boolean create-fragments)) (let* ((jtm-list (json:decode-json-from-string jtm-string))) (import-construct-from-jtm-decoded-list - jtm-list :revision revision :jtm-format jtm-format :tm-id tm-id))) + jtm-list :revision revision :jtm-format jtm-format + :tm-id tm-id :create-fragments create-fragments))) (defun import-construct-from-jtm-decoded-list (jtm-list &key - (revision *TM-REVISION*) - (jtm-format :1.1) tm-id) + (revision *TM-REVISION*) + (jtm-format :1.1) tm-id + (create-fragments nil)) "Imports the passed jtm-decoded-list. Note tm-id needs not to be declared, but if the imported construct is a topicmap and it has no item-identifiers defined, a JTM-error @@ -53,7 +57,8 @@ (declare (List jtm-list) (Integer revision) (Keyword jtm-format) - (type (or Null String) tm-id)) + (type (or Null String) tm-id) + (Boolean create-fragments)) (let* ((version (get-item :VERSION jtm-list)) (item_type (get-item :ITEM--TYPE jtm-list)) (prefixes (make-prefix-list-from-jtm-list (get-item :PREFIXES jtm-list))) @@ -72,12 +77,13 @@ (string= item_type item_type-topicmap)) (import-topic-map-from-jtm-list jtm-list tm-id :revision revision :prefixes prefixes - :instance-of-p format-1.1-p)) + :instance-of-p format-1.1-p :create-fragments create-fragments)) ((string= item_type item_type-topic) (import-topic-stub-from-jtm-list jtm-list nil :revision revision :prefixes prefixes) (merge-topic-from-jtm-list jtm-list :instance-of-p format-1.1-p - :revision revision :prefixes prefixes)) + :revision revision :prefixes prefixes + :create-fragment create-fragments)) ((string= item_type item_type-name) (import-name-from-jtm-list jtm-list nil :revision revision :prefixes prefixes)) @@ -111,13 +117,14 @@ (defun import-topic-map-from-jtm-list (jtm-list tm-id &key (revision *TM-REVISION*) - prefixes (instance-of-p t)) + prefixes (instance-of-p t) + (create-fragments nil)) "Creates and returns a topic map corresponding to the tm-id or a given item-identifier in the jtm-list and returns the tm construct after all topics and associations contained in the jtm-list has been created." (declare (List jtm-list prefixes) (Integer revision) - (Boolean instance-of-p)) + (Boolean instance-of-p create-fragments)) (let* ((iis (let ((value (append (import-identifiers-from-jtm-strings (get-item :ITEM--IDENTIFIERS jtm-list) :prefixes prefixes) @@ -134,8 +141,9 @@ :item-identifiers iis))) (import-topic-stubs-from-jtm-lists j-tops (list tm) :revision revision :prefixes prefixes) - (merge-topics-from-jtm-lists j-tops (list tm) :instance-of-p instance-of-p - :revision revision :prefixes prefixes) + (merge-topics-from-jtm-lists j-tops :instance-of-p instance-of-p + :revision revision :prefixes prefixes + :create-fragments create-fragments) (import-associations-from-jtm-lists j-assocs (list tm) :revision revision :prefixes prefixes) tm)) @@ -339,21 +347,24 @@ assoc))) -(defun merge-topics-from-jtm-lists (jtm-lists parents &key (instance-of-p t) - (revision *TM-REVISION*) prefixes) +(defun merge-topics-from-jtm-lists (jtm-lists &key (instance-of-p t) + (revision *TM-REVISION*) prefixes + (create-fragments nil)) "Creates and returns a list of topics." - (declare (List jtm-lists parents prefixes) - (Boolean instance-of-p) + (declare (List jtm-lists prefixes) + (Boolean instance-of-p create-fragments) (Integer revision)) (map 'list #'(lambda(jtm-list) (merge-topic-from-jtm-list jtm-list :revision revision :prefixes prefixes - :instance-of-p instance-of-p)) + :instance-of-p instance-of-p + :create-fragment create-fragments)) jtm-lists)) (defun merge-topic-from-jtm-list(jtm-list &key (instance-of-p t) - (revision *TM-REVISION*) prefixes) + (revision *TM-REVISION*) prefixes + (create-fragment nil)) "Creates and returns a topic object from the passed jtm list generated by json:decode-json-from-string. Note that the merged topics are not added explicitly to the parent @@ -362,7 +373,8 @@ to their topic map elements." (declare (List jtm-list prefixes) (Boolean instance-of-p) - (Integer revision)) + (Integer revision) + (Boolean create-fragment)) (let* ((ids (append (get-item :ITEM--IDENTIFIERS jtm-list) (get-item :SUBJECT--IDENTIFIERS jtm-list) (get-item :SUBJECT--LOCATORS jtm-list))) @@ -396,6 +408,8 @@ (dolist (occ top-occs) (add-occurrence top occ :revision revision)) (format t "t") + (when create-fragment + (create-latest-fragment-of-topic top)) top)) Modified: branches/gdl-frontend/src/model/changes.lisp ============================================================================== --- branches/gdl-frontend/src/model/changes.lisp Tue Sep 13 02:07:39 2011 (r882) +++ branches/gdl-frontend/src/model/changes.lisp Tue Sep 13 02:28:13 2011 (r883) @@ -412,10 +412,12 @@ (find-associations top :revision revision))) -(defun create-latest-fragment-of-topic (topic-psi) +(defun create-latest-fragment-of-topic (topic-or-psi) "Returns the latest fragment of the passed topic-psi" - (declare (string topic-psi)) - (let ((topic (get-latest-topic-by-psi topic-psi))) + (declare (type (or String TopicC) topic-or-psi)) + (let ((topic (if (stringp topic-or-psi) + (get-latest-topic-by-psi topic-or-psi) + topic-or-psi))) (when topic (let ((start-revision (start-revision Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Tue Sep 13 02:07:39 2011 (r882) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Tue Sep 13 02:28:13 2011 (r883) @@ -143,7 +143,8 @@ :force-text t))) (with-writer-lock (jtm-importer:import-construct-from-jtm-string - json-data :revision (get-revision) :tm-id *gdl-tm-id*)))) + json-data :revision (get-revision) :tm-id *gdl-tm-id* + :create-fragments t)))) (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) From lgiessmann at common-lisp.net Tue Sep 13 09:54:27 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 02:54:27 -0700 Subject: [isidorus-cvs] r884 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 02:54:27 2011 New Revision: 884 Log: gdl-frontend: Widgets: refactred the update handler for http://textgrid.org/serviceregistry/model/types/Hash-Object Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 02:28:13 2011 (r883) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 02:54:27 2011 (r884) @@ -226,7 +226,17 @@ public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { if(edited){ - //TODO: implement + String delObj = response.getText(); + try{ + String url = URL.encode(CommitCallback.this.DELETE_REUQEST_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); + builder.setHeader("Content-type", "application/json"); + + builder.sendRequest(delObj, new HashObjectDeleteRequest(delObj, this.objectToBeSend)); + }catch(RequestException e){ + Window.alert("could not update the topic " + delObj); + //TODO: reset page + } } else { Window.alert("could not commit the topic with the psi " + psi + " since it already exists"); //TODO: reset page @@ -255,6 +265,47 @@ } } + + private class HashObjectDeleteRequest implements RequestCallback{ + private String objectToBeDeleted = null; + private String objectToBeSend = null; + + + @SuppressWarnings("unused") + private HashObjectDeleteRequest(){} + + + public HashObjectDeleteRequest(String objectToBeDeleted, String objectToBeSend){ + this.objectToBeDeleted = objectToBeDeleted; + this.objectToBeSend = objectToBeSend; + } + + + @Override + public void onResponseReceived(Request request, Response response) { + if (200 == response.getStatusCode()) { + try{ + String commitUrl = URL.encode(CommitCallback.this.COMMIT_REQUEST_URL); + RequestBuilder commitBuilder = new RequestBuilder(RequestBuilder.POST, commitUrl); + commitBuilder.setHeader("Content-type", "application/json"); + commitBuilder.sendRequest(this.objectToBeSend, new HashObjectCommitRequest(this.objectToBeSend)); + }catch(RequestException e){ + Window.alert("could not commit the data: " + this.objectToBeSend); + // TODO: reset web page + } + } else { + Window.alert("update operation of the object " + this.objectToBeDeleted + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); + } + } + + + @Override + public void onError(Request request, Throwable exception) { + Window.alert("could not update the data: " + this.objectToBeDeleted); + // TODO: reset web page + } + } + private class HashObjectCommitRequest implements RequestCallback { private String objectToBeSend = null; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Tue Sep 13 02:28:13 2011 (r883) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Tue Sep 13 02:54:27 2011 (r884) @@ -53,7 +53,6 @@ RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); builder.setHeader("Content-type", "application/json"); - //RootPanel.getBodyElement().setInnerText(delObj.toString()); // TODO: remove builder.sendRequest(delObj.toString(), new DeleteRequest(delObj, env)); }catch(RequestException e){ Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); From lgiessmann at common-lisp.net Tue Sep 13 10:14:39 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 03:14:39 -0700 Subject: [isidorus-cvs] r885 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 03:14:38 2011 New Revision: 885 Log: gdl-frontend: Widgets: made some changes to easily debug the update handlers Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 13 02:54:27 2011 (r884) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 13 03:14:38 2011 (r885) @@ -31,13 +31,14 @@ mainPanel.setPixelSize(1000, 600); ArrayList> requestedTopicsToCreate = new ArrayList>(); - //requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); - requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Environment", TopicIdentifierTypes.SubjectIdentifier)); + requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); + //requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Environment", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Poet", TopicIdentifierTypes.SubjectIdentifier)); //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Musician", TopicIdentifierTypes.SubjectIdentifier)); //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-env-1", TopicIdentifierTypes.SubjectIdentifier); //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-hash-2", TopicIdentifierTypes.SubjectIdentifier); + Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/hash-object/Test Environment 1/test1", TopicIdentifierTypes.SubjectIdentifier); GdlPanel.addClickHandler("hash_object_reset_button_id", new ClickHandler() { @Override public void onClick(ClickEvent event) { @@ -46,7 +47,7 @@ } }); - gdlPanel = new GdlPanel(null, requestedTopicsToCreate); + gdlPanel = new GdlPanel(requestedTopicToEdit, null); mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 02:54:27 2011 (r884) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:14:38 2011 (r885) @@ -35,6 +35,7 @@ public void commitTmConstruct(ArrayList> constructs, String buttonId, TmEngine tmEngine) { try{ if("hash_object_commit_button_id".equals(buttonId)){ + Window.alert("buttonId: " + buttonId); this.commitCreatedHashObject(constructs, tmEngine, "edited_hash_object_commit_button_id".equals(buttonId)); } else if("environment_commit_button_id".equals(buttonId)){ this.commitCreatedEnvironment(constructs, tmEngine); @@ -170,6 +171,7 @@ String getUrl = URL.encode(this.GET_REQUEST_URL + psiValue); RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.GET, getUrl); try{ + Window.alert("edited: " + edited); getBuilder.sendRequest(null, new HashObjectCheckRequest(jtm, psiValue, edited)); }catch(RequestException e){ Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); From lgiessmann at common-lisp.net Tue Sep 13 10:20:05 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 03:20:05 -0700 Subject: [isidorus-cvs] r886 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Tue Sep 13 03:20:04 2011 New Revision: 886 Log: gdl-frontend: Widgets: fixed a bug with the commit button's id of http://textgrid.org/serviceregistry/model/types/Hash-Object Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Tue Sep 13 03:14:38 2011 (r885) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Tue Sep 13 03:20:04 2011 (r886) @@ -147,7 +147,7 @@ {"subject_identifiers":["[tgg:hash-object-creator-reset-button-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-creator-reset-button-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"reset"}]}, - {"subject_identifiers":["[tgg:hash-object-creator-commit-button]"], "instance_of":["si:[gdlt:Commit-Button]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_commit_button_id"}, {"type":"si:[gdl:height]", "value":"30px"}, {"type":"si:[gdl:width]", "value":"80px"}, {"type":"si:[gdl:font-size]", "value":"12px"}]}, + {"subject_identifiers":["[tgg:hash-object-creator-commit-button]"], "instance_of":["si:[gdlt:Commit-Button]"], "occurrences":[{"type":"si:[gdl:id]", "value":"creator_hash_object_commit_button_id"}, {"type":"si:[gdl:height]", "value":"30px"}, {"type":"si:[gdl:width]", "value":"80px"}, {"type":"si:[gdl:font-size]", "value":"12px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-commit-button-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"115px"}, {"type":"si:[gdl:right]", "value":"10px"}]} ], Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Tue Sep 13 03:14:38 2011 (r885) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Tue Sep 13 03:20:04 2011 (r886) @@ -135,7 +135,7 @@ {"subject_identifiers":["[tgg:hash-object-editor-delete-button]"], "instance_of":["si:[gdlt:Delete-Button]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_delete_button_id"}, {"type":"si:[gdl:height]", "value":"30px"}, {"type":"si:[gdl:width]", "value":"80px"}, {"type":"si:[gdl:font-size]", "value":"12px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-delete-button-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"115px"}, {"type":"si:[gdl:left]", "value":"10px"}]}, - {"subject_identifiers":["[tgg:hash-object-editor-commit-button]"], "instance_of":["si:[gdlt:Commit-Button]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_commit_button_id"}, {"type":"si:[gdl:height]", "value":"30px"}, {"type":"si:[gdl:width]", "value":"80px"}, {"type":"si:[gdl:font-size]", "value":"12px"}]}, + {"subject_identifiers":["[tgg:hash-object-editor-commit-button]"], "instance_of":["si:[gdlt:Commit-Button]"], "occurrences":[{"type":"si:[gdl:id]", "value":"editor_hash_object_commit_button_id"}, {"type":"si:[gdl:height]", "value":"30px"}, {"type":"si:[gdl:width]", "value":"80px"}, {"type":"si:[gdl:font-size]", "value":"12px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-commit-button-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"115px"}, {"type":"si:[gdl:right]", "value":"10px"}]} ], Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Tue Sep 13 03:14:38 2011 (r885) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Tue Sep 13 03:20:04 2011 (r886) @@ -2537,7 +2537,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", + "value":"editor_hash_object_commit_button_id", "scope":null, "reifier":null }, @@ -3470,7 +3470,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", + "value":"creator_hash_object_commit_button_id", "scope":null, "reifier":null }, Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Tue Sep 13 03:14:38 2011 (r885) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Tue Sep 13 03:20:04 2011 (r886) @@ -1696,7 +1696,7 @@ - hash_object_commit_button_id + creator_hash_object_commit_button_id @@ -2373,7 +2373,7 @@ - hash_object_commit_button_id + editor_hash_object_commit_button_id Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Sep 13 03:14:38 2011 (r885) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Sep 13 03:20:04 2011 (r886) @@ -753,7 +753,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", + "value":"editor_hash_object_commit_button_id", "scope":null, "reifier":null }, @@ -1686,7 +1686,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", + "value":"creator_hash_object_commit_button_id", "scope":null, "reifier":null }, Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Tue Sep 13 03:14:38 2011 (r885) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Tue Sep 13 03:20:04 2011 (r886) @@ -1696,7 +1696,7 @@ - hash_object_commit_button_id + creator_hash_object_commit_button_id @@ -2373,7 +2373,7 @@ - hash_object_commit_button_id + editor_hash_object_commit_button_id Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 13 03:14:38 2011 (r885) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 13 03:20:04 2011 (r886) @@ -758,7 +758,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", + "value":"editor_hash_object_commit_button_id", "scope":null, "reifier":null }, @@ -1691,7 +1691,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_commit_button_id", + "value":"creator_hash_object_commit_button_id", "scope":null, "reifier":null }, From lgiessmann at common-lisp.net Tue Sep 13 10:21:42 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 03:21:42 -0700 Subject: [isidorus-cvs] r887 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 03:21:42 2011 New Revision: 887 Log: gdl-frontend: Widgets: fixed a bug with the commit button's id of http://textgrid.org/serviceregistry/model/types/Hash-Object in the CommitCallback class of Isidorus Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:20:04 2011 (r886) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:21:42 2011 (r887) @@ -34,9 +34,10 @@ @Override public void commitTmConstruct(ArrayList> constructs, String buttonId, TmEngine tmEngine) { try{ - if("hash_object_commit_button_id".equals(buttonId)){ - Window.alert("buttonId: " + buttonId); - this.commitCreatedHashObject(constructs, tmEngine, "edited_hash_object_commit_button_id".equals(buttonId)); + if("creator_hash_object_commit_button_id".equals(buttonId)){ + this.commitCreatedHashObject(constructs, tmEngine, false); + }else if("editor_hash_object_commit_button_id".equals(buttonId)){ + this.commitCreatedHashObject(constructs, tmEngine, true); } else if("environment_commit_button_id".equals(buttonId)){ this.commitCreatedEnvironment(constructs, tmEngine); } From lgiessmann at common-lisp.net Tue Sep 13 10:48:14 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 03:48:14 -0700 Subject: [isidorus-cvs] r888 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 03:48:13 2011 New Revision: 888 Log: gdl-frontend: Widgets: fixed a bug when creating delete requests to update http://textgrid.org/serivceregistry/model/types/Hash-Object Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:21:42 2011 (r887) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:48:13 2011 (r888) @@ -3,6 +3,7 @@ import java.util.ArrayList; import us.isidor.gdl.anaToMia.Widgets.base.PSIs; import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; +import us.isidor.gdl.anaToMia.Widgets.base.Utils; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; import com.google.gwt.core.client.JsArray; import com.google.gwt.http.client.Request; @@ -11,6 +12,9 @@ import com.google.gwt.http.client.RequestException; import com.google.gwt.http.client.Response; import com.google.gwt.http.client.URL; +import com.google.gwt.json.client.JSONArray; +import com.google.gwt.json.client.JSONObject; +import com.google.gwt.json.client.JSONString; import com.google.gwt.user.client.Window; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; @@ -172,7 +176,6 @@ String getUrl = URL.encode(this.GET_REQUEST_URL + psiValue); RequestBuilder getBuilder = new RequestBuilder(RequestBuilder.GET, getUrl); try{ - Window.alert("edited: " + edited); getBuilder.sendRequest(null, new HashObjectCheckRequest(jtm, psiValue, edited)); }catch(RequestException e){ Window.alert("could not commit the topic: " + jtm + ", because(" + e.getClass() + "): " + e.getMessage()); @@ -229,13 +232,31 @@ public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { if(edited){ - String delObj = response.getText(); + String[] topPsi = Utils.splitUriByLastFragment(psi); + String[] tmPsi = Utils.splitUriByLastFragment(IsidorusConstants.TOPIC_MAP_IDENTIFIER); + + JSONObject delObj = new JSONObject(); + delObj.put("type", new JSONString("Topic")); + JSONObject prefs = new JSONObject(); + prefs.put("pref_1", new JSONString(topPsi[0])); + prefs.put("pref_2", new JSONString(tmPsi[0])); + JSONObject delTop = new JSONObject(); + delTop.put("prefixes", prefs); + JSONArray jPsis = new JSONArray(); + jPsis.set(0, new JSONString("pref_1:" + topPsi[1])); + delTop.put("subject_identifiers", jPsis); + JSONArray jParents = new JSONArray(); + jParents.set(0, new JSONString("pref_2:" + tmPsi[1])); + delTop.put("parent", jParents); + + Window.alert(">>\n" + delObj.toString()); + try{ String url = URL.encode(CommitCallback.this.DELETE_REUQEST_URL); RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); builder.setHeader("Content-type", "application/json"); - builder.sendRequest(delObj, new HashObjectDeleteRequest(delObj, this.objectToBeSend)); + builder.sendRequest(delObj.toString(), new HashObjectDeleteRequest(delObj.toString(), this.objectToBeSend)); }catch(RequestException e){ Window.alert("could not update the topic " + delObj); //TODO: reset page From lgiessmann at common-lisp.net Tue Sep 13 10:53:22 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 03:53:22 -0700 Subject: [isidorus-cvs] r889 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 03:53:22 2011 New Revision: 889 Log: gdl-frontend: Widgets: fixed a bug when creating delete requests to update http://textgrid.org/serivceregistry/model/types/Hash-Object Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java Tue Sep 13 03:48:13 2011 (r888) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java Tue Sep 13 03:53:22 2011 (r889) @@ -12,6 +12,25 @@ public class Utils { + // returns an array with two string objects. + // * the first element is the uri prefix until the last "/" or "#" character + // * the second element is the sufix + public static String[] splitUriByLastFragment(String uri) { + if(uri == null) return new String[]{null, null}; + + int idxSlash = uri.lastIndexOf("/"); + int idxSharp = uri.lastIndexOf("#"); + int lastPos = idxSlash < idxSharp ? idxSharp : idxSlash; + if(lastPos <= 0) return new String[]{uri, null}; + + String prefix = uri.substring(0, lastPos + 1); + String suffix = uri.substring(lastPos); + suffix = suffix == null ? "" : suffix; + + return new String[]{prefix, suffix}; + } + + // returns a string of the form: // { // association-type: psi Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:48:13 2011 (r888) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:53:22 2011 (r889) @@ -248,6 +248,7 @@ JSONArray jParents = new JSONArray(); jParents.set(0, new JSONString("pref_2:" + tmPsi[1])); delTop.put("parent", jParents); + delObj.put("delete", delTop); Window.alert(">>\n" + delObj.toString()); From lgiessmann at common-lisp.net Tue Sep 13 10:59:14 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 03:59:14 -0700 Subject: [isidorus-cvs] r890 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 03:59:14 2011 New Revision: 890 Log: Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:53:22 2011 (r889) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:59:14 2011 (r890) @@ -246,7 +246,7 @@ jPsis.set(0, new JSONString("pref_1:" + topPsi[1])); delTop.put("subject_identifiers", jPsis); JSONArray jParents = new JSONArray(); - jParents.set(0, new JSONString("pref_2:" + tmPsi[1])); + jParents.set(0, new JSONString("ii:[pref_2:" + tmPsi[1] + "]")); delTop.put("parent", jParents); delObj.put("delete", delTop); From lgiessmann at common-lisp.net Tue Sep 13 12:05:27 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 05:05:27 -0700 Subject: [isidorus-cvs] r891 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 05:05:27 2011 New Revision: 891 Log: gdl-frontend: Widgets: fixed a bug when creating delete requests to update http://textgrid.org/serivceregistry/model/types/Hash-Object Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 03:59:14 2011 (r890) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 05:05:27 2011 (r891) @@ -242,6 +242,7 @@ prefs.put("pref_2", new JSONString(tmPsi[0])); JSONObject delTop = new JSONObject(); delTop.put("prefixes", prefs); + delTop.put("version", new JSONString("1.1")); JSONArray jPsis = new JSONArray(); jPsis.set(0, new JSONString("pref_1:" + topPsi[1])); delTop.put("subject_identifiers", jPsis); From lgiessmann at common-lisp.net Tue Sep 13 12:37:30 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 05:37:30 -0700 Subject: [isidorus-cvs] r892 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 05:37:30 2011 New Revision: 892 Log: gdl-frontend: Widgets: fixed a bug in Utils.splitUri(...) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 13 05:05:27 2011 (r891) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 13 05:37:30 2011 (r892) @@ -2,7 +2,6 @@ import java.util.ArrayList; - import us.isidor.gdl.anaToMia.TmEngine.jtmsBasedEngine.JtmsTmEngine; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; import us.isidor.gdl.anaToMia.Widgets.environment.TopicIdentifierTypes; @@ -25,7 +24,7 @@ @Override public void onModuleLoad() { - try{ + try{ RootPanel.get("GWT_Content").add(mainPanel); mainPanel.setBorderWidth(1); mainPanel.setPixelSize(1000, 600); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java Tue Sep 13 05:05:27 2011 (r891) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java Tue Sep 13 05:37:30 2011 (r892) @@ -24,7 +24,7 @@ if(lastPos <= 0) return new String[]{uri, null}; String prefix = uri.substring(0, lastPos + 1); - String suffix = uri.substring(lastPos); + String suffix = uri.substring(lastPos + 1); suffix = suffix == null ? "" : suffix; return new String[]{prefix, suffix}; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 05:05:27 2011 (r891) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 05:37:30 2011 (r892) @@ -243,6 +243,7 @@ JSONObject delTop = new JSONObject(); delTop.put("prefixes", prefs); delTop.put("version", new JSONString("1.1")); + delTop.put("item_type", new JSONString("topic")); JSONArray jPsis = new JSONArray(); jPsis.set(0, new JSONString("pref_1:" + topPsi[1])); delTop.put("subject_identifiers", jPsis); From lgiessmann at common-lisp.net Tue Sep 13 13:31:09 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 06:31:09 -0700 Subject: [isidorus-cvs] r893 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 06:31:06 2011 New Revision: 893 Log: gdl-frontend: Widgets: set the http-header to application/json in the requests defined in CommitCallback Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 05:37:30 2011 (r892) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 06:31:06 2011 (r893) @@ -106,6 +106,7 @@ String url = URL.encode(this.COMMIT_REQUEST_URL); RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); + builder.setHeader("Content-type", "application/json"); try{ // a check for an existing environment topic is not necessary, // since it would be exactly the same topic. From lgiessmann at common-lisp.net Wed Sep 14 05:56:29 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 13 Sep 2011 22:56:29 -0700 Subject: [isidorus-cvs] r894 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 13 22:56:28 2011 New Revision: 894 Log: gdl-frontend: Widgets: fixed a bug when creating delete requests to update http://textgrid.org/serivceregistry/model/types/Hash-Object Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 06:31:06 2011 (r893) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Tue Sep 13 22:56:28 2011 (r894) @@ -246,7 +246,7 @@ delTop.put("version", new JSONString("1.1")); delTop.put("item_type", new JSONString("topic")); JSONArray jPsis = new JSONArray(); - jPsis.set(0, new JSONString("pref_1:" + topPsi[1])); + jPsis.set(0, new JSONString("[pref_1:" + topPsi[1] + "]")); delTop.put("subject_identifiers", jPsis); JSONArray jParents = new JSONArray(); jParents.set(0, new JSONString("ii:[pref_2:" + tmPsi[1] + "]")); From lgiessmann at common-lisp.net Wed Sep 14 07:29:21 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 00:29:21 -0700 Subject: [isidorus-cvs] r895 - in branches/gdl-frontend/src: json/JTM model Message-ID: Author: lgiessmann Date: Wed Sep 14 00:29:19 2011 New Revision: 895 Log: jtm-delete-interface: changed the implementation of the delete interface => not the constructs that will be deleted won't instantiated before te actual delete operation is invoked Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp branches/gdl-frontend/src/model/datamodel.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Tue Sep 13 22:56:28 2011 (r894) +++ branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 00:29:19 2011 (r895) @@ -13,7 +13,6 @@ (in-package :jtm-delete-interface) - (defun mark-as-deleted-from-jtm (jtm-data &key (revision *TM-REVISION*)) "Marks an object that is specified by the given JSON data as deleted." (declare (string jtm-data) (integer revision)) @@ -64,15 +63,58 @@ "Deletes the passed role object and returns t otherwise this function returns nil." (declare (list jtm-decoded-list) (integer revision)) - (let* ((role-to-delete - (import-construct-from-jtm-decoded-list - jtm-decoded-list :revision revision)) - (parent-assoc - (when role-to-delete - (parent role-to-delete :revision revision)))) - (when parent-assoc - (d:delete-role parent-assoc role-to-delete :revision revision) - role-to-delete))) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (type + (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs)))) + (parent + (let* ((curies (jtm::get-item :PARENT jtm-decoded-list)) + (parents (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (when parents + (first parents)))) + (player-top + (let ((curie (jtm::get-item :PLAYER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs))))) + (let ((role-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (parent + (let ((found-roles + (tools:remove-null + (map 'list (lambda(role) + (when (d::equivalent-construct + role :start-revision revision + :player player-top + :instance-of type) + role)) + (roles parent :revision revision))))) + (when found-roles + (first found-roles)))) + (t + (error "when deleting a role, there must be an item-identifier, reifier or parent set!"))))) + (when role-to-delete + (delete-role (parent role-to-delete :revision revision) + role-to-delete :revision revision) + role-to-delete)))) + + (defun delete-association-from-jtm (jtm-decoded-list &key @@ -80,12 +122,50 @@ "Deletes the passed association object and returns t otherwise this function returns nil." (declare (list jtm-decoded-list) (integer revision)) - (let ((assoc - (import-construct-from-jtm-decoded-list - jtm-decoded-list :revision revision))) - (when assoc - (d:mark-as-deleted assoc :revision revision :source-locator nil) - assoc))) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (scope + (let ((curies (jtm::get-item :SCOPE jtm-decoded-list))) + (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (type + (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs)))) + (roles + (map 'list (lambda(jtm-role) + (jtm::make-plist-of-jtm-role + jtm-role :revision revision :prefixes prefs)) + (jtm::get-item :ROLES jtm-decoded-list)))) + (let ((assoc-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (t + (let ((found-assocs + (tools:remove-null + (map 'list (lambda(assoc) + (d::equivalent-construct + assoc :start-revision revision + :roles roles :instance-of type + :themes scope)) + (get-all-associations revision))))) + (when found-assocs + (first found-assocs))))))) + (when assoc-to-delete + (mark-as-deleted assoc-to-delete :revision revision) + assoc-to-delete)))) (defun delete-variant-from-jtm (jtm-decoded-list @@ -93,16 +173,52 @@ "Deletes the passed variant from the given name and returns t if the operation succeeded." (declare (list jtm-decoded-list) (integer revision)) - (let* ((variant-to-delete - (import-construct-from-jtm-decoded-list - jtm-decoded-list :revision revision)) - (parent-name - (when variant-to-delete - (parent variant-to-delete :revision revision)))) - (when parent-name - (d:delete-variant parent-name variant-to-delete :revision revision) - variant-to-delete))) - + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (value (jtm::get-item :VALUE jtm-decoded-list)) + (datatype (jtm::get-item :DATATYPE jtm-decoded-list)) + (scope + (let ((curies (jtm::get-item :SCOPE jtm-decoded-list))) + (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (parent + (let* ((curies (jtm::get-item :PARENT jtm-decoded-list)) + (parents (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (when parents + (first parents)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs))))) + (let ((var-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (parent + (let ((found-vars + (tools:remove-null + (map 'list (lambda(var) + (when (d::equivalent-construct + var :start-revision revision + :charvalue value :themes scope + :datatype datatype) + var)) + (variants parent :revision revision))))) + (when found-vars + (first found-vars)))) + (t + (error "when deleting a variant, there must be an item-identifier, reifier or parent set!"))))) + (when var-to-delete + (delete-variant (parent var-to-delete :revision revision) + var-to-delete :revision revision) + var-to-delete)))) (defun delete-occurrence-from-jtm (jtm-decoded-list @@ -110,29 +226,114 @@ "Deletes the passed occurrence from the given topic and returns t if the operation succeeded." (declare (list jtm-decoded-list) (integer revision)) - (let* ((occurrence-to-delete - (import-construct-from-jtm-decoded-list - jtm-decoded-list :revision revision)) - (parent-topic - (when occurrence-to-delete - (parent occurrence-to-delete :revision revision)))) - (when parent-topic - (d:delete-occurrence parent-topic occurrence-to-delete :revision revision) - occurrence-to-delete))) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (value (jtm::get-item :VALUE jtm-decoded-list)) + (datatype (jtm::get-item :DATATYPE jtm-decoded-list)) + (type + (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs)))) + (scope + (let ((curies (jtm::get-item :SCOPE jtm-decoded-list))) + (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (parent + (let* ((curies (jtm::get-item :PARENT jtm-decoded-list)) + (parents (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (when parents + (first parents)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs))))) + (let ((occ-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (parent + (let ((found-occs + (tools:remove-null + (map 'list (lambda(occ) + (when (d::equivalent-construct + occ :start-revision revision + :charvalue value :themes scope + :instance-of type :datatype datatype) + occ)) + (occurrences parent :revision revision))))) + (when found-occs + (first found-occs)))) + (t + (error "when deleting an occurrence, there must be an item-identifier, reifier or parent set!"))))) + (when occ-to-delete + (delete-occurrence (parent occ-to-delete :revision revision) + occ-to-delete :revision revision) + occ-to-delete)))) (defun delete-name-from-jtm (jtm-decoded-list &key (revision *TM-REVISION*)) (declare (list jtm-decoded-list) (integer revision)) - (let* ((name-to-delete - (import-construct-from-jtm-decoded-list - jtm-decoded-list :revision revision)) - (parent-topic - (when name-to-delete - (parent name-to-delete :revision revision)))) - (when parent-topic - (d:delete-name parent-topic name-to-delete :revision revision) - name-to-delete))) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (value (jtm::get-item :VALUE jtm-decoded-list)) + (type + (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) + (if curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs) + (get-item-by-psi constants:*topic-name-psi* + :revision revision :error-if-nil t)))) + (scope + (let ((curies (jtm::get-item :SCOPE jtm-decoded-list))) + (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (parent + (let* ((curies (jtm::get-item :PARENT jtm-decoded-list)) + (parents (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (when parents + (first parents)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs))))) + (let ((name-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (parent + (let ((found-names + (tools:remove-null + (map 'list (lambda(name) + (when (d::equivalent-construct + name :start-revision revision + :charvalue value :themes scope + :instance-of type) + name)) + (names parent :revision revision))))) + (when found-names + (first found-names)))) + (t + (error "when deleting a name, there must be an item-identifier, reifier or parent set!"))))) + (when name-to-delete + (delete-name (parent name-to-delete :revision revision) + name-to-delete :revision revision) + name-to-delete)))) (defun delete-identifier-from-json (uri class delete-function @@ -155,12 +356,21 @@ "Searches for a topic corresponding to the given identifiers. Returns t if there was deleted an item otherweise it returns nil." (declare (list jtm-decoded-list) (integer revision)) - (let ((top-to-delete - (import-construct-from-jtm-decoded-list - jtm-decoded-list :revision revision))) - (when top-to-delete - (mark-as-deleted top-to-delete :source-locator nil :revision revision) - top-to-delete))) + + (let* ((prefs + (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ids (append + (jtm::get-item :SUBJECT--IDENTIFIERS jtm-decoded-list) + (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list) + (jtm::get-item :SUBJECT--LOCATORS jtm-decoded-list))) + (uri (if (null ids) + (error (make-condition 'exceptions::JTM-error :message (format nil "From merge-topic-from-jtm-list(): the passed topic has to own at least one identifier: ~a" jtm-decoded-list))) + (jtm::compute-uri-from-jtm-identifier (first ids) prefs)))) + (let ((top-to-delete (get-item-by-any-id uri :revision revision))) + (when top-to-delete + (mark-as-deleted top-to-delete :source-locator uri :revision revision) + top-to-delete)))) (defun delete-identifier-from-jtm (uri class delete-function @@ -170,10 +380,7 @@ (declare (string uri) (integer revision) (symbol class)) (let ((id (elephant:get-instance-by-value class 'd:uri uri))) - (if (and id (typep id class)) - (progn - (apply delete-function - (list (d:identified-construct id :revision revision) - id :revision revision)) - id) - nil))) \ No newline at end of file + (when (and id (typep id class)) + (apply delete-function + (list (d:identified-construct id :revision revision) + id :revision revision))))) \ No newline at end of file Modified: branches/gdl-frontend/src/model/datamodel.lisp ============================================================================== --- branches/gdl-frontend/src/model/datamodel.lisp Tue Sep 13 22:56:28 2011 (r894) +++ branches/gdl-frontend/src/model/datamodel.lisp Wed Sep 14 00:29:19 2011 (r895) @@ -1583,10 +1583,10 @@ (locators top :revision 0)) (mapc (lambda (name) (mark-as-deleted name :revision revision :source-locator source-locator)) - (names top :revision 0)) + (names top :revision 0)) (mapc (lambda (occ) (mark-as-deleted occ :revision revision :source-locator source-locator)) - (occurrences top :revision 0)) + (occurrences top :revision 0)) (mapc (lambda (ass) (mark-as-deleted ass :revision revision :source-locator source-locator)) (find-all-associations top :revision 0)) From lgiessmann at common-lisp.net Wed Sep 14 09:25:05 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 02:25:05 -0700 Subject: [isidorus-cvs] r896 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 14 02:25:05 2011 New Revision: 896 Log: gdl-frontend: Widgets: changed the update mechanism when committing http://textgrid.org/serviceregistry/model/types/Hash-Object instances => instead of deleting the entire old topic, only the old occurrence is deleted Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 14 00:29:19 2011 (r895) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 14 02:25:05 2011 (r896) @@ -5,6 +5,8 @@ import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; import us.isidor.gdl.anaToMia.Widgets.base.Utils; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; +import us.isidor.gdl.anaToMia.Widgets.environment.TopicIdentifierTypes; + import com.google.gwt.core.client.JsArray; import com.google.gwt.http.client.Request; import com.google.gwt.http.client.RequestBuilder; @@ -14,7 +16,9 @@ import com.google.gwt.http.client.URL; import com.google.gwt.json.client.JSONArray; import com.google.gwt.json.client.JSONObject; +import com.google.gwt.json.client.JSONParser; import com.google.gwt.json.client.JSONString; +import com.google.gwt.json.client.JSONValue; import com.google.gwt.user.client.Window; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; @@ -33,6 +37,7 @@ public final String DELETE_REUQEST_URL = IsidorusConstants.DELETE_REQUEST_URL; public final String COMMIT_REQUEST_URL = IsidorusConstants.COMMIT_REQUEST_URL; public final String GET_REQUEST_URL = IsidorusConstants.GET_FRAGMENT_REQUEST_URL; + public final String HASH_VALUE_OCCURRENCE_TYPE = "http://textgrid.org/serviceregistry/model/value"; @Override @@ -234,24 +239,24 @@ if (200 == response.getStatusCode()) { if(edited){ String[] topPsi = Utils.splitUriByLastFragment(psi); - String[] tmPsi = Utils.splitUriByLastFragment(IsidorusConstants.TOPIC_MAP_IDENTIFIER); + String[] hashValuePsi = Utils.splitUriByLastFragment(CommitCallback.this.HASH_VALUE_OCCURRENCE_TYPE); JSONObject delObj = new JSONObject(); - delObj.put("type", new JSONString("Topic")); - JSONObject prefs = new JSONObject(); - prefs.put("pref_1", new JSONString(topPsi[0])); - prefs.put("pref_2", new JSONString(tmPsi[0])); - JSONObject delTop = new JSONObject(); - delTop.put("prefixes", prefs); - delTop.put("version", new JSONString("1.1")); - delTop.put("item_type", new JSONString("topic")); - JSONArray jPsis = new JSONArray(); - jPsis.set(0, new JSONString("[pref_1:" + topPsi[1] + "]")); - delTop.put("subject_identifiers", jPsis); + delObj.put("type", new JSONString("Occurrence")); + JSONObject delOcc = new JSONObject(); + delObj.put("delete", delOcc); + delOcc.put("version", new JSONString("1.1")); + delOcc.put("item_type", new JSONString("occurrence")); + JSONObject prefixes = new JSONObject(); + prefixes.put("pref_1", new JSONString(topPsi[0])); + prefixes.put("pref_2", new JSONString(hashValuePsi[0])); + delOcc.put("prefixes", prefixes); JSONArray jParents = new JSONArray(); - jParents.set(0, new JSONString("ii:[pref_2:" + tmPsi[1] + "]")); - delTop.put("parent", jParents); - delObj.put("delete", delTop); + jParents.set(0, new JSONString("si:[pref_1:" + topPsi[1] + "]")); + delOcc.put("parent", jParents); + + delOcc.put("value", this.getOldHashValue(response.getText(), this.psi)); + delOcc.put("type", new JSONString("si:[pref_2:" + hashValuePsi[1] + "]")); Window.alert(">>\n" + delObj.toString()); @@ -284,6 +289,122 @@ // TODO: reset page } } + + + private JSONString getOldHashValue(String jtmFragment, String topicPsiToBeUpdated){ + JSONString result = new JSONString(""); + if(jtmFragment == null || topicPsiToBeUpdated == null) return result; + + JSONValue receivedFragment = JSONParser.parseStrict(jtmFragment); + JSONObject fragment = receivedFragment.isObject(); + if(fragment == null) return result; + + JSONValue topsVal = fragment.get("topics"); + if(topsVal == null) return result; + JSONArray topics = topsVal.isArray(); + if(topics == null) return result; + + JSONValue prefVal = fragment.get("prefixes"); + JSONObject prefixes = null; + if(prefVal != null) prefixes = prefVal.isObject(); + + for(int topicIdx = 0; topicIdx != topics.size(); ++topicIdx){ + JSONValue hashTopicVal = topics.get(topicIdx); + if(hashTopicVal == null) continue; + + JSONObject hashTopic = hashTopicVal.isObject(); + if(hashTopic == null) continue; + + JSONValue psisVal = topics.get(topicIdx); + if(psisVal == null) continue; + + JSONArray psis = psisVal.isArray(); + if(psis == null) continue; + for(int psiIdx = 0; psiIdx != psis.size(); ++psiIdx){ + JSONValue psiVal = psis.get(psiIdx); + if(psiVal == null) continue; + + JSONString psi = psiVal.isString(); + if(psi != null && this.computeUri(psi.stringValue(), prefixes).equals(psi)){ + JSONObject occ = this.gethashValueOccurrence(hashTopic, prefixes); + if(occ == null) continue; + + JSONValue occVal = occ.get("value"); + if(occVal == null) continue; + + JSONString occValue = occVal.isString(); + if(occValue != null) return occValue; + } + } + } + + + return result; + } + + + private JSONObject gethashValueOccurrence(JSONObject hashTopic, JSONObject prefixes){ + if(hashTopic == null) return null; + + JSONValue occsVal = hashTopic.get("occurrences"); + if(occsVal == null) return null; + JSONArray occurrences = occsVal.isArray(); + if(occurrences == null) return null; + for(int occIdx = 0; occIdx != occurrences.size(); ++occIdx){ + JSONValue occVal = occurrences.get(occIdx); + if(occVal == null) continue; + JSONObject occurrence = occVal.isObject(); + if(occurrence == null) continue; + JSONValue typeVal = occurrence.get("type"); + if(typeVal == null) continue; + JSONString typeReference = typeVal.isString(); + if(typeReference == null) continue; + + Pair typeRef = this.computeReferenceUri(typeReference, prefixes); + if(typeRef != null && typeRef.getSecond().equals(TopicIdentifierTypes.SubjectIdentifier) && typeRef.getFirst().equals(CommitCallback.this.HASH_VALUE_OCCURRENCE_TYPE)) return occurrence; + } + + return null; + } + + + private Pair computeReferenceUri(JSONString curieReference, JSONObject prefixes){ + if(curieReference == null) return null; + + String curieString = curieReference.stringValue(); + if(curieString == null) return null; + + if(curieString.startsWith("ii:")){ + return new Pair(this.computeUri(curieString.substring(3), prefixes), TopicIdentifierTypes.ItemIdentifier); + } else if(curieString.startsWith("si:")){ + return new Pair(this.computeUri(curieString.substring(3), prefixes), TopicIdentifierTypes.SubjectIdentifier); + } else if(curieString.startsWith("sl:")){ + return new Pair(this.computeUri(curieString.substring(3), prefixes), TopicIdentifierTypes.SubjectLocator); + } else { + return null; + } + } + + + private String computeUri(String curie, JSONObject prefixes){ + if(curie == null) return ""; + + if(curie.charAt(0) == '[' && curie.charAt(curie.length() - 1) == ']'){ + if(prefixes == null) return ""; + String rawString = curie.substring(1, curie.length() - 1); + String[] parts = rawString.split(":"); + if(parts.length != 2) return ""; + + JSONValue prefVal = prefixes.get(parts[0]); + if(prefVal == null) return ""; + JSONString prefString = prefVal.isString(); + if(prefString == null) return ""; + + return prefString + parts[1]; + } else { + return curie; + } + } @Override @@ -294,6 +415,8 @@ } + + private class HashObjectDeleteRequest implements RequestCallback{ private String objectToBeDeleted = null; private String objectToBeSend = null; From lgiessmann at common-lisp.net Wed Sep 14 10:35:09 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 03:35:09 -0700 Subject: [isidorus-cvs] r897 - branches/gdl-frontend/src/json/JTM Message-ID: Author: lgiessmann Date: Wed Sep 14 03:35:08 2011 New Revision: 897 Log: jtm-importer: fixed a bug when importing occurrence and variant datatype that are represetned as curies Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 02:25:05 2011 (r896) +++ branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 03:35:08 2011 (r897) @@ -233,7 +233,15 @@ (when curies (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) (value (jtm::get-item :VALUE jtm-decoded-list)) - (datatype (jtm::get-item :DATATYPE jtm-decoded-list)) + (datatype + (let ((curie (jtm::get-item :DATATYPE jtm-decoded-list))) + (cond ((null curie) + constants:*xml-string*) + ((and (tools:string-starts-with curie "[") + (tools:string-ends-with curie "]")) + (jtm::compute-uri-from-jtm-identifier curie prefs)) + (t + curie)))) (type (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) (when curie @@ -260,6 +268,8 @@ (reifier (reified-construct reifier :revision revision)) (parent + (format t "parent: ~a, charvalue: ~a, datatype: ~a, type: ~a, scope: ~a~%" + parent value datatype type scope) (let ((found-occs (tools:remove-null (map 'list (lambda(occ) @@ -274,8 +284,8 @@ (t (error "when deleting an occurrence, there must be an item-identifier, reifier or parent set!"))))) (when occ-to-delete - (delete-occurrence (parent occ-to-delete :revision revision) - occ-to-delete :revision revision) + ;(delete-occurrence (parent occ-to-delete :revision revision) + ;occ-to-delete :revision revision) occ-to-delete)))) Modified: branches/gdl-frontend/src/json/JTM/jtm_importer.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Wed Sep 14 02:25:05 2011 (r896) +++ branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Wed Sep 14 03:35:08 2011 (r897) @@ -469,7 +469,15 @@ (let* ((iis (import-identifiers-from-jtm-strings (get-item :ITEM--IDENTIFIERS jtm-list) :prefixes prefixes)) - (datatype (get-item :DATATYPE jtm-list)) + (datatype + (let ((curie (jtm::get-item :DATATYPE jtm-list))) + (cond ((null curie) + constants:*xml-string*) + ((and (tools:string-starts-with curie "[") + (tools:string-ends-with curie "]")) + (jtm::compute-uri-from-jtm-identifier curie prefixes)) + (t + curie)))) (scope (get-item :SCOPE jtm-list)) (type (get-item :TYPE jtm-list)) (value (get-item :VALUE jtm-list)) @@ -487,7 +495,7 @@ (error (make-condition 'JTM-error :message (format nil "From import-occurrence-from-jtm-list(): the JTM occurrence ~a must have a type set in its members." jtm-list)))) (make-construct 'OccurrenceC :start-revision revision :item-identifiers iis - :datatype (if datatype datatype *xml-string*) + :datatype datatype :charvalue value :themes (get-items-from-jtm-references scope :revision revision :prefixes prefixes) @@ -522,7 +530,15 @@ (let* ((iis (import-identifiers-from-jtm-strings (get-item :ITEM--IDENTIFIERS jtm-list) :prefixes prefixes)) - (datatype (get-item :DATATYPE jtm-list)) + (datatype + (let ((curie (jtm::get-item :DATATYPE jtm-list))) + (cond ((null curie) + constants:*xml-string*) + ((and (tools:string-starts-with curie "[") + (tools:string-ends-with curie "]")) + (jtm::compute-uri-from-jtm-identifier curie prefixes)) + (t + curie)))) (value (get-item :VALUE jtm-list)) (reifier (get-item :REIFIER jtm-list)) (parent-references (get-item :PARENT jtm-list)) From lgiessmann at common-lisp.net Wed Sep 14 10:40:50 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 03:40:50 -0700 Subject: [isidorus-cvs] r898 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 14 03:40:50 2011 New Revision: 898 Log: gdl-frontend: Widgets: fixed a bug when creating delete requests to update http://textgrid.org/serivceregistry/model/types/Hash-Object Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 14 03:35:08 2011 (r897) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 14 03:40:50 2011 (r898) @@ -6,7 +6,6 @@ import us.isidor.gdl.anaToMia.Widgets.base.Utils; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; import us.isidor.gdl.anaToMia.Widgets.environment.TopicIdentifierTypes; - import com.google.gwt.core.client.JsArray; import com.google.gwt.http.client.Request; import com.google.gwt.http.client.RequestBuilder; @@ -239,7 +238,8 @@ if (200 == response.getStatusCode()) { if(edited){ String[] topPsi = Utils.splitUriByLastFragment(psi); - String[] hashValuePsi = Utils.splitUriByLastFragment(CommitCallback.this.HASH_VALUE_OCCURRENCE_TYPE); + String[] hashValuePsi = Utils.splitUriByLastFragment(CommitCallback.this.HASH_VALUE_OCCURRENCE_TYPE); + String[] xsdString = Utils.splitUriByLastFragment(IsidorusConstants.XSD_STRING); JSONObject delObj = new JSONObject(); delObj.put("type", new JSONString("Occurrence")); @@ -250,12 +250,14 @@ JSONObject prefixes = new JSONObject(); prefixes.put("pref_1", new JSONString(topPsi[0])); prefixes.put("pref_2", new JSONString(hashValuePsi[0])); + prefixes.put("pref_3", new JSONString(xsdString[0])); delOcc.put("prefixes", prefixes); JSONArray jParents = new JSONArray(); jParents.set(0, new JSONString("si:[pref_1:" + topPsi[1] + "]")); delOcc.put("parent", jParents); delOcc.put("value", this.getOldHashValue(response.getText(), this.psi)); + delOcc.put("datatype", new JSONString("[pref_3:" + xsdString[1] + "]")); delOcc.put("type", new JSONString("si:[pref_2:" + hashValuePsi[1] + "]")); Window.alert(">>\n" + delObj.toString()); @@ -315,7 +317,7 @@ JSONObject hashTopic = hashTopicVal.isObject(); if(hashTopic == null) continue; - JSONValue psisVal = topics.get(topicIdx); + JSONValue psisVal = hashTopic.get("subject_identifiers"); if(psisVal == null) continue; JSONArray psis = psisVal.isArray(); @@ -325,7 +327,8 @@ if(psiVal == null) continue; JSONString psi = psiVal.isString(); - if(psi != null && this.computeUri(psi.stringValue(), prefixes).equals(psi)){ + + if(psi != null && this.computeUri(psi.stringValue(), prefixes).equals(topicPsiToBeUpdated)){ JSONObject occ = this.gethashValueOccurrence(hashTopic, prefixes); if(occ == null) continue; @@ -338,7 +341,6 @@ } } - return result; } @@ -400,7 +402,7 @@ JSONString prefString = prefVal.isString(); if(prefString == null) return ""; - return prefString + parts[1]; + return prefString.stringValue() + parts[1]; } else { return curie; } From lgiessmann at common-lisp.net Wed Sep 14 10:44:26 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 03:44:26 -0700 Subject: [isidorus-cvs] r899 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 14 03:44:24 2011 New Revision: 899 Log: gdl-frontend: Widgets: added the xsd string uri to IsidorusConstants Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 14 03:40:50 2011 (r898) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 14 03:44:24 2011 (r899) @@ -6,6 +6,7 @@ public class IsidorusConstants { + public final static String XSD_STRING = "http://www.w3.org/2001/XMLSchema#string"; public final static String TOPIC_MAP_IDENTIFIER = "http://textgrid.org/serviceregistry/gdl-frontend/gdl-tm"; public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; From lgiessmann at common-lisp.net Wed Sep 14 11:09:44 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 04:09:44 -0700 Subject: [isidorus-cvs] r900 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 14 04:09:43 2011 New Revision: 900 Log: gdl-frontend: Widgets: removed some debug messages Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 14 03:44:24 2011 (r899) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 14 04:09:43 2011 (r900) @@ -260,8 +260,6 @@ delOcc.put("datatype", new JSONString("[pref_3:" + xsdString[1] + "]")); delOcc.put("type", new JSONString("si:[pref_2:" + hashValuePsi[1] + "]")); - Window.alert(">>\n" + delObj.toString()); - try{ String url = URL.encode(CommitCallback.this.DELETE_REUQEST_URL); RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); From lgiessmann at common-lisp.net Wed Sep 14 11:11:14 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 04:11:14 -0700 Subject: [isidorus-cvs] r901 - branches/gdl-frontend/src/json/JTM Message-ID: Author: lgiessmann Date: Wed Sep 14 04:11:14 2011 New Revision: 901 Log: jtm-delete-interface: fixed a bug when deleting occurrences Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 04:09:43 2011 (r900) +++ branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 04:11:14 2011 (r901) @@ -284,8 +284,8 @@ (t (error "when deleting an occurrence, there must be an item-identifier, reifier or parent set!"))))) (when occ-to-delete - ;(delete-occurrence (parent occ-to-delete :revision revision) - ;occ-to-delete :revision revision) + (delete-occurrence (parent occ-to-delete :revision revision) + occ-to-delete :revision revision) occ-to-delete)))) From lgiessmann at common-lisp.net Wed Sep 14 11:33:05 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 04:33:05 -0700 Subject: [isidorus-cvs] r902 - in branches/gdl-frontend/src: json/JTM rest_interface Message-ID: Author: lgiessmann Date: Wed Sep 14 04:33:04 2011 New Revision: 902 Log: added additional fragment-updates when a construct is deleted, or when a new construct is committed Modified: branches/gdl-frontend/src/json/JTM/jtm_importer.lisp branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_importer.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Wed Sep 14 04:11:14 2011 (r901) +++ branches/gdl-frontend/src/json/JTM/jtm_importer.lisp Wed Sep 14 04:33:04 2011 (r902) @@ -407,9 +407,23 @@ (add-name top name :revision revision)) (dolist (occ top-occs) (add-occurrence top occ :revision revision)) - (format t "t") (when create-fragment - (create-latest-fragment-of-topic top)) + (let ((all-assocs + (remove-null (map 'list (lambda(role) + (parent role :revision revision)) + (player-in-roles top :revision revision))))) + (let ((all-tops + (remove-null + (loop for assoc in all-assocs + append (map 'list (lambda(role) + (d:player role :revision revision)) + (roles assoc :revision revision)))))) + (map nil (lambda(top) + (map nil #'elephant:drop-instance + (elephant:get-instances-by-value 'FragmentC 'topic top)) + (create-latest-fragment-of-topic top)) + (append all-tops (list top)))))) + (format t "t") top)) Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Wed Sep 14 04:11:14 2011 (r901) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Wed Sep 14 04:33:04 2011 (r902) @@ -123,8 +123,37 @@ (hunchentoot:raw-post-data :external-format external-format :force-text t))) (with-writer-lock - (let ((result (jtm-delete-interface:mark-as-deleted-from-jtm - json-data :revision (get-revision)))) + (let* ((rev (d:get-revision)) + (result (jtm-delete-interface:mark-as-deleted-from-jtm + json-data :revision rev))) + (let ((tops + (remove-null + (cond ((or (typep result 'OccurrenceC) + (typep result 'NameC)) + (let ((top (parent result :revision (1- rev)))) + (when top (list top)))) + ((typep result 'VariantC) + (let ((name (parent result :revision (1- rev)))) + (when name + (let ((top (parent name :revision (1- rev)))) + (when top (list top)))))) + ((typep result 'AssociationC) + (map 'list (lambda(role) + (player role :revision (1- rev))) + (roles result :revision (1- rev)))) + ((typep result 'TopicC) + (let ((assocs + (player-in-roles result :revision (1- rev)))) + (loop for assoc in assocs + append (map 'list (lambda(role) + (player role :revision (1- rev))) + (roles assoc :revision (1- rev)))))))))) + (map nil (lambda(top) + (let ((frags + (elephant:get-instances-by-value 'd:FragmentC 'd:topic top))) + (map nil #'elephant:drop-instance frags)) + (create-latest-fragment-of-topic top)) + tops)) (unless result (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) (format nil "object not found")))))) From lgiessmann at common-lisp.net Wed Sep 14 12:05:42 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 05:05:42 -0700 Subject: [isidorus-cvs] r903 - in branches/gdl-frontend/src: json/JTM rest_interface Message-ID: Author: lgiessmann Date: Wed Sep 14 05:05:42 2011 New Revision: 903 Log: gdl-interface: fixed a bug when updated fragments after commit/delete operations Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 04:33:04 2011 (r902) +++ branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 05:05:42 2011 (r903) @@ -268,8 +268,6 @@ (reifier (reified-construct reifier :revision revision)) (parent - (format t "parent: ~a, charvalue: ~a, datatype: ~a, type: ~a, scope: ~a~%" - parent value datatype type scope) (let ((found-occs (tools:remove-null (map 'list (lambda(occ) Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Wed Sep 14 04:33:04 2011 (r902) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Wed Sep 14 05:05:42 2011 (r903) @@ -142,8 +142,11 @@ (player role :revision (1- rev))) (roles result :revision (1- rev)))) ((typep result 'TopicC) + (elephant:drop-instance result) (let ((assocs - (player-in-roles result :revision (1- rev)))) + (map 'list (lambda(role) + (parent role :revision (1- rev))) + (player-in-roles result :revision (1- rev))))) (loop for assoc in assocs append (map 'list (lambda(role) (player role :revision (1- rev))) From lgiessmann at common-lisp.net Wed Sep 14 12:16:59 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 05:16:59 -0700 Subject: [isidorus-cvs] r904 - in branches/gdl-frontend/src: json/JTM rest_interface Message-ID: Author: lgiessmann Date: Wed Sep 14 05:16:58 2011 New Revision: 904 Log: gdl-interface: fixed a bug when updated fragments after commit/delete operations Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp ============================================================================== --- branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 05:05:42 2011 (r903) +++ branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp Wed Sep 14 05:16:58 2011 (r904) @@ -364,7 +364,6 @@ "Searches for a topic corresponding to the given identifiers. Returns t if there was deleted an item otherweise it returns nil." (declare (list jtm-decoded-list) (integer revision)) - (let* ((prefs (jtm::make-prefix-list-from-jtm-list (jtm::get-item :PREFIXES jtm-decoded-list))) Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Wed Sep 14 05:05:42 2011 (r903) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Wed Sep 14 05:16:58 2011 (r904) @@ -156,10 +156,12 @@ (elephant:get-instances-by-value 'd:FragmentC 'd:topic top))) (map nil #'elephant:drop-instance frags)) (create-latest-fragment-of-topic top)) - tops)) - (unless result - (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) - (format nil "object not found")))))) + (if (typep result 'd:TopicC) + (delete result tops) + tops))) + (unless result + (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) + (format nil "object not found")))))) (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) From lgiessmann at common-lisp.net Wed Sep 14 12:49:14 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 14 Sep 2011 05:49:14 -0700 Subject: [isidorus-cvs] r905 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus Message-ID: Author: lgiessmann Date: Wed Sep 14 05:49:14 2011 New Revision: 905 Log: gdl-frontend: Widgets: fixed a bug in the click-handler of the reset-button that appears when the webpage is executed by firefox Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 14 05:16:58 2011 (r904) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Wed Sep 14 05:49:14 2011 (r905) @@ -16,6 +16,8 @@ import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.HorizontalPanel; import com.google.gwt.user.client.ui.RootPanel; +import com.google.gwt.dom.client.Element; +import com.google.gwt.dom.client.TextAreaElement; public class TestClass implements EntryPoint{ @@ -37,16 +39,18 @@ //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-env-1", TopicIdentifierTypes.SubjectIdentifier); //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-hash-2", TopicIdentifierTypes.SubjectIdentifier); - Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/hash-object/Test Environment 1/test1", TopicIdentifierTypes.SubjectIdentifier); + //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/hash-object/Test Environment 1/test1", TopicIdentifierTypes.SubjectIdentifier); GdlPanel.addClickHandler("hash_object_reset_button_id", new ClickHandler() { @Override public void onClick(ClickEvent event) { - DOM.getElementById("hash_object_text_key_id__GDL_0").setInnerText(""); - DOM.getElementById("hash_object_text_value_id__GDL_0").setInnerText(""); + Element elem = DOM.getElementById("hash_object_text_key_id__GDL_0"); + ((TextAreaElement)elem).setValue(""); + elem = DOM.getElementById("hash_object_text_value_id__GDL_0"); + ((TextAreaElement)elem).setValue(""); } }); - gdlPanel = new GdlPanel(requestedTopicToEdit, null); + gdlPanel = new GdlPanel(null, requestedTopicsToCreate); mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 14 05:16:58 2011 (r904) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 14 05:49:14 2011 (r905) @@ -2,6 +2,7 @@ +import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -11,6 +12,6 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; } From lgiessmann at common-lisp.net Thu Sep 15 08:58:58 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 15 Sep 2011 01:58:58 -0700 Subject: [isidorus-cvs] r906 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets src/us/isidor/gdl/anaToMia/Widgets/isidorus war war/gdl_widgets Message-ID: Author: lgiessmann Date: Thu Sep 15 01:58:58 2011 New Revision: 906 Log: gdl-frontend: Widgets: started to implement the acutl frontend for hash-objects Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectUi.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/PsiContainer.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/HashObjectPsis.json branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/textgrid_large.jpg (contents, props changed) branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/textgrid_small.png (contents, props changed) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/GDL_Widgets.gwt.xml branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.html Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/GDL_Widgets.gwt.xml ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/GDL_Widgets.gwt.xml Wed Sep 14 05:49:14 2011 (r905) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/GDL_Widgets.gwt.xml Thu Sep 15 01:58:58 2011 (r906) @@ -18,8 +18,8 @@ - - + + Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectUi.java ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectUi.java Thu Sep 15 01:58:58 2011 (r906) @@ -0,0 +1,103 @@ +package us.isidor.gdl.anaToMia.Widgets.isidorus; + + +import com.google.gwt.core.client.EntryPoint; +import com.google.gwt.http.client.Request; +import com.google.gwt.http.client.RequestBuilder; +import com.google.gwt.http.client.RequestCallback; +import com.google.gwt.http.client.RequestException; +import com.google.gwt.http.client.Response; +import com.google.gwt.http.client.URL; +import com.google.gwt.json.client.JSONArray; +import com.google.gwt.json.client.JSONParser; +import com.google.gwt.json.client.JSONString; +import com.google.gwt.json.client.JSONValue; +import com.google.gwt.user.client.Window; +import com.google.gwt.user.client.ui.Button; +import com.google.gwt.user.client.ui.HorizontalPanel; +import com.google.gwt.user.client.ui.RootPanel; +import com.google.gwt.user.client.ui.VerticalPanel; + + +public class HashObjectUi implements EntryPoint { + private HorizontalPanel mainPanel = new HorizontalPanel(); + private VerticalPanel navigationPanel = new VerticalPanel(); + private Button createNewButton = new Button("create new"); + private PsiContainer psiContainer = new PsiContainer(); + //private Image textGridLogo = new Image(IsidorusConstants.TEXTGRID_LOGO_URL); + + + @Override + public void onModuleLoad() { + RootPanel.get("GWT_Content").add(this.mainPanel); + mainPanel.add(this.navigationPanel); + mainPanel.setBorderWidth(1); + mainPanel.setPixelSize(1024, 700); + navigationPanel.add(createNewButton); + this.requestHashObjectPsis(); + } + + + private void requestHashObjectPsis(){ + String url = URL.encode(IsidorusConstants.GET_HASH_OBJECT_PSIS_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, url); + try{ + builder.sendRequest(null, new PsiRequest()); + }catch(RequestException e){ + e.printStackTrace(); + Window.alert("could not request existing instances of http://textgrid.org/serviceregistry/model/types/Hash-Object, because(" + e.getClass() + "): " + e.getMessage()); + } + } + + + public void resetPage(){ + // TODO: implement + } + + + + + + + private class PsiRequest implements RequestCallback { + public PsiRequest(){} + + + @Override + public void onResponseReceived(Request request, Response response) { + if (200 == response.getStatusCode()) { + JSONValue psiVals = JSONParser.parseStrict(response.getText()); + JSONArray psis = null; + if(psiVals != null) psis = psiVals.isArray(); + if(psis == null){ + Window.alert("got bad json, an array of strings was expected, but got: " + response.getText()); + HashObjectUi.this.resetPage(); + } + for(int psisIdx = 0; psisIdx != psis.size(); ++psisIdx){ + JSONValue psiVal = psis.get(psisIdx); + JSONString psiString = null; + if(psiVal != null) psiString = psiVal.isString(); + HashObjectUi.this.psiContainer.addPsi(psiString); + } + + HashObjectUi.this.psiContainer.insertIn(HashObjectUi.this.navigationPanel); + } else { + Window.alert("could not request existing instances of http://textgrid.org/serviceregistry/model/types/Hash-Object, because(" + response.getStatusCode() + "): " + response.getStatusText()); + HashObjectUi.this.resetPage(); + } + } + + + @Override + public void onError(Request request, Throwable exception) { + String message = null; + Class eClass = null; + if(exception != null){ + message = exception.getMessage(); + eClass = exception.getClass(); + } + Window.alert("could not request existing instances of http://textgrid.org/serviceregistry/model/types/Hash-Object, because(" + eClass + "): " + message); + HashObjectUi.this.resetPage(); + } + } +} Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 14 05:49:14 2011 (r905) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Thu Sep 15 01:58:58 2011 (r906) @@ -14,4 +14,6 @@ public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; + public final static String TEXTGRID_LOGO_URL = GWT.getModuleBaseURL() + "textgrid_small.png"; } Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/PsiContainer.java ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/PsiContainer.java Thu Sep 15 01:58:58 2011 (r906) @@ -0,0 +1,54 @@ +package us.isidor.gdl.anaToMia.Widgets.isidorus; + +import java.util.ArrayList; +import com.google.gwt.json.client.JSONString; +import com.google.gwt.user.client.ui.Label; +import com.google.gwt.user.client.ui.Panel; +import com.google.gwt.user.client.ui.VerticalPanel; +import com.google.gwt.user.client.ui.Widget; + + +public class PsiContainer { + private ArrayList - + - + - + - + - + - + confserver - + - + - + A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - + has_environment_createor_association_view_id @@ -1112,59 +1115,59 @@ - + - + - + absolute - + 10px - + 120px - + - + - + - + - + hash_object_text_label_env_id - + true @@ -1178,7 +1181,7 @@ - gray + #023467 @@ -1186,67 +1189,73 @@ none + + + + + #fff + - + - + - + absolute - + 10px - + 10px - + - + - + - + - + environment: - + - + - + hash_object_text_list_box_env_id - + true @@ -1258,59 +1267,59 @@ - + - + - + absolute - + 0px - + 0px - + - + - + - + - + - + hash_object_text_label_key_id - + true @@ -1324,7 +1333,7 @@ - gray + #023467 @@ -1332,67 +1341,73 @@ none + + + + + #fff + - + - + - + absolute - + 40px - + 10px - + - + - + - + - + key: - + - + - + hash_object_text_key_id - + false @@ -1422,52 +1437,52 @@ - + - + - + absolute - + 40px - + 120px - + - + - + - + - + hash_object_text_label_value_id - + true @@ -1481,7 +1496,7 @@ - gray + #023467 @@ -1489,67 +1504,73 @@ none + + + + + #fff + - + - + - + absolute - + 70px - + 10px - + - + - + - + - + value: - + - + - + hash_object_text_value_id - + false @@ -1579,46 +1600,46 @@ - + - + - + absolute - + 70px - + 120px - + - + - + - + - + hash_object_reset_button_id @@ -1636,65 +1657,65 @@ - + 12px - + - + - + absolute - + 115px - + 10px - + - + - + - + - + reset - + - + - + creator_hash_object_commit_button_id @@ -1712,32 +1733,32 @@ - + 12px - + - + - + absolute - + 115px - + 10px @@ -1762,13 +1783,13 @@ - + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - + hash_object_default_editor_topic_view_id @@ -1788,31 +1809,31 @@ - gray + #023467 - + - + - + hash_object_text_label_env_id - + true @@ -1826,36 +1847,42 @@ - gray + #023467 - none + none + + + + + + #fff - + - + absolute - + 10px - + 10px @@ -1864,18 +1891,18 @@ - + - + - + environment: @@ -1888,13 +1915,13 @@ - + A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - + has_environment_editor_association_view_id @@ -1909,23 +1936,23 @@ - + - + absolute - + 10px - + 120px @@ -1934,17 +1961,17 @@ - + - + hash_object_text_env_id - + true @@ -1965,23 +1992,23 @@ - + - + absolute - + 0px - + 0px @@ -1990,24 +2017,24 @@ - + - + - + hash_object_text_label_key_id - + true @@ -2021,7 +2048,7 @@ - gray + #023467 @@ -2029,28 +2056,34 @@ none + + + + + #fff + - + - + absolute - + 40px - + 10px @@ -2059,18 +2092,18 @@ - + - + - + key: @@ -2079,17 +2112,17 @@ - + - + hash_object_text_key_id - + true @@ -2122,23 +2155,23 @@ - + - + absolute - + 40px - + 120px @@ -2147,24 +2180,24 @@ - + - + - + hash_object_text_label_value_id - + true @@ -2178,7 +2211,7 @@ - gray + #023467 @@ -2186,28 +2219,34 @@ none + + + + + #fff + - + - + absolute - + 70px - + 10px @@ -2216,18 +2255,18 @@ - + - + - + value: @@ -2236,17 +2275,17 @@ - + - + hash_object_text_value_id - + false @@ -2279,23 +2318,23 @@ - + - + absolute - + 70px - + 120px @@ -2304,7 +2343,7 @@ - + @@ -2315,7 +2354,7 @@ - + hash_object_delete_button_id @@ -2333,7 +2372,7 @@ - + 12px @@ -2342,23 +2381,23 @@ - + - + absolute - + 115px - + 10px @@ -2367,11 +2406,11 @@ - + - + editor_hash_object_commit_button_id @@ -2389,7 +2428,7 @@ - + 12px @@ -2398,23 +2437,23 @@ - + - + absolute - + 115px - + 10px @@ -2430,17 +2469,17 @@ - + - + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - + environment_default_creator_topic_view_id @@ -2460,31 +2499,31 @@ - gray + #023467 - + - + - + environment_text_label_id - + true @@ -2498,7 +2537,7 @@ - gray + #023467 @@ -2506,28 +2545,34 @@ none + + + + + #fff + - + - + absolute - + 10px - + 10px @@ -2536,18 +2581,18 @@ - + - + - + name: @@ -2556,17 +2601,17 @@ - + - + environment_name_text_id - + false @@ -2593,23 +2638,23 @@ - + - + absolute - + 10px - + 70px @@ -2618,18 +2663,18 @@ - + - + - + environment_commit_button_id @@ -2647,7 +2692,7 @@ - + 12px @@ -2656,42 +2701,42 @@ - + - + absolute - + 65px - + 10px - + - + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - + environment_default_editor_topic_view_id @@ -2711,31 +2756,31 @@ - gray + #023467 - + - + - + - + - + environment_text_label_id - + true @@ -2749,7 +2794,7 @@ - gray + #023467 @@ -2757,67 +2802,73 @@ none + + + + + #fff + - + - + - + absolute - + 10px - + 10px - + - + - + - + - + name: - + - + - + environment_name_text_id - + true @@ -2841,46 +2892,46 @@ - + - + - + absolute - + 10px - + 70px - + - + - + - + environment_delete_button_id @@ -2898,276 +2949,276 @@ - + 12px - + - + - + absolute - + 65px - + 10px - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3192,7 +3243,7 @@ - + @@ -3211,7 +3262,7 @@ - + @@ -3230,7 +3281,7 @@ - + @@ -3243,7 +3294,7 @@ - + @@ -3262,7 +3313,7 @@ - + @@ -3275,7 +3326,7 @@ - + @@ -3294,7 +3345,7 @@ - + @@ -3307,7 +3358,7 @@ - + @@ -3326,7 +3377,7 @@ - + @@ -3339,7 +3390,7 @@ - + @@ -3358,7 +3409,7 @@ - + @@ -3371,7 +3422,7 @@ - + @@ -3390,7 +3441,7 @@ - + @@ -3403,7 +3454,7 @@ - + @@ -3422,7 +3473,7 @@ - + @@ -3435,7 +3486,7 @@ - + @@ -3454,7 +3505,7 @@ - + @@ -3467,7 +3518,7 @@ - + @@ -3486,7 +3537,7 @@ - + @@ -3499,7 +3550,7 @@ - + @@ -3518,7 +3569,7 @@ - + @@ -3531,7 +3582,7 @@ - + @@ -3550,7 +3601,7 @@ - + @@ -3563,7 +3614,7 @@ - + @@ -3582,7 +3633,7 @@ - + @@ -3595,7 +3646,7 @@ - + @@ -3614,7 +3665,7 @@ - + @@ -3627,7 +3678,7 @@ - + @@ -3652,7 +3703,7 @@ - + @@ -3671,7 +3722,7 @@ - + @@ -3690,7 +3741,7 @@ - + @@ -3703,7 +3754,7 @@ - + @@ -3722,7 +3773,7 @@ - + @@ -3735,7 +3786,7 @@ - + @@ -3754,7 +3805,7 @@ - + @@ -3767,7 +3818,7 @@ - + @@ -3786,7 +3837,7 @@ - + @@ -3799,7 +3850,7 @@ - + @@ -3818,7 +3869,7 @@ - + @@ -3831,7 +3882,7 @@ - + @@ -3850,7 +3901,7 @@ - + @@ -3863,7 +3914,7 @@ - + @@ -3882,7 +3933,7 @@ - + @@ -3895,7 +3946,7 @@ - + @@ -3920,7 +3971,7 @@ - + @@ -3939,7 +3990,7 @@ - + @@ -3958,7 +4009,7 @@ - + @@ -3971,7 +4022,7 @@ - + @@ -3990,7 +4041,7 @@ - + @@ -4003,7 +4054,7 @@ - + @@ -4022,7 +4073,7 @@ - + @@ -4035,7 +4086,7 @@ - + @@ -4054,7 +4105,7 @@ - + @@ -4067,7 +4118,7 @@ - + @@ -4086,7 +4137,7 @@ - + @@ -4105,7 +4156,7 @@ - + @@ -4124,7 +4175,7 @@ - + @@ -4143,7 +4194,7 @@ - + @@ -4162,7 +4213,7 @@ - + @@ -4181,7 +4232,7 @@ - + @@ -4200,7 +4251,7 @@ - + @@ -4227,13 +4278,13 @@ - + - + @@ -4245,13 +4296,13 @@ - + - + @@ -4263,13 +4314,13 @@ - + - + @@ -4281,13 +4332,13 @@ - + - + @@ -4299,13 +4350,13 @@ - + - + @@ -4317,13 +4368,13 @@ - + - + @@ -4335,13 +4386,13 @@ - + - + @@ -4353,13 +4404,13 @@ - + - + @@ -4371,13 +4422,13 @@ - + - + @@ -4389,13 +4440,13 @@ - + - + @@ -4413,7 +4464,7 @@ - + @@ -4425,13 +4476,13 @@ - + - + @@ -4449,7 +4500,7 @@ - + @@ -4461,13 +4512,13 @@ - + - + @@ -4485,7 +4536,7 @@ - + @@ -4497,13 +4548,13 @@ - + - + @@ -4515,13 +4566,13 @@ - + - + @@ -4533,13 +4584,13 @@ - + - + @@ -4551,13 +4602,13 @@ - + - + @@ -4569,31 +4620,13 @@ - - - - - - - - - - - - - - - - - - - + - + @@ -4605,13 +4638,13 @@ - + - + @@ -4623,13 +4656,13 @@ - + - + @@ -4641,13 +4674,13 @@ - + - + @@ -4659,13 +4692,13 @@ - + - + @@ -4677,13 +4710,13 @@ - + - + @@ -4695,13 +4728,13 @@ - + - + @@ -4713,13 +4746,13 @@ - + - + @@ -4731,13 +4764,13 @@ - + - + @@ -4749,13 +4782,13 @@ - + - + @@ -4767,13 +4800,13 @@ - + - + @@ -4785,13 +4818,13 @@ - + - + @@ -4803,13 +4836,13 @@ - + - + @@ -4821,13 +4854,13 @@ - + - + @@ -4839,13 +4872,13 @@ - + - + @@ -4857,13 +4890,13 @@ - + - + @@ -4875,13 +4908,13 @@ - + - + @@ -4893,13 +4926,13 @@ - + - + @@ -4911,13 +4944,13 @@ - + - + @@ -4929,13 +4962,13 @@ - + - + @@ -4947,13 +4980,13 @@ - + - + @@ -4965,13 +4998,13 @@ - + - + @@ -4983,13 +5016,13 @@ - + - + @@ -5001,13 +5034,13 @@ - + - + @@ -5019,13 +5052,13 @@ - + - + @@ -5037,13 +5070,13 @@ - + - + @@ -5055,13 +5088,13 @@ - + - + @@ -5073,13 +5106,13 @@ - + - + @@ -5091,13 +5124,13 @@ - + - + @@ -5109,13 +5142,13 @@ - + - + @@ -5127,13 +5160,13 @@ - + - + @@ -5145,13 +5178,13 @@ - + - + @@ -5163,13 +5196,13 @@ - + - + @@ -5181,13 +5214,13 @@ - + - + @@ -5199,13 +5232,13 @@ - + - + @@ -5217,13 +5250,13 @@ - + - + @@ -5235,13 +5268,13 @@ - + - + @@ -5253,13 +5286,13 @@ - + - + @@ -5271,13 +5304,13 @@ - + - + @@ -5289,13 +5322,13 @@ - + - + @@ -5307,13 +5340,13 @@ - + - + @@ -5325,13 +5358,13 @@ - + - + @@ -5343,7 +5376,7 @@ - + @@ -5361,13 +5394,13 @@ - + - + @@ -5379,13 +5412,13 @@ - + - + @@ -5397,7 +5430,7 @@ - + @@ -5415,13 +5448,13 @@ - + - + @@ -5433,13 +5466,13 @@ - + - + @@ -5451,7 +5484,7 @@ - + @@ -5469,13 +5502,13 @@ - + - + @@ -5487,13 +5520,13 @@ - + - + @@ -5505,7 +5538,7 @@ - + @@ -5523,13 +5556,13 @@ - + - + @@ -5541,13 +5574,13 @@ - + - + @@ -5559,7 +5592,7 @@ - + @@ -5577,13 +5610,13 @@ - + - + @@ -5595,13 +5628,13 @@ - + - + @@ -5613,7 +5646,7 @@ - + @@ -5631,13 +5664,13 @@ - + - + @@ -5649,13 +5682,13 @@ - + - + @@ -5667,7 +5700,7 @@ - + @@ -5685,13 +5718,13 @@ - + - + @@ -5703,13 +5736,13 @@ - + - + @@ -5721,7 +5754,7 @@ - + @@ -5739,13 +5772,13 @@ - + - + @@ -5757,13 +5790,13 @@ - + - + @@ -5775,7 +5808,7 @@ - + @@ -5793,13 +5826,13 @@ - + - + @@ -5811,13 +5844,13 @@ - + - + @@ -5829,7 +5862,7 @@ - + @@ -5847,13 +5880,13 @@ - + - + @@ -5865,13 +5898,13 @@ - + - + @@ -5883,7 +5916,7 @@ - + @@ -5901,13 +5934,13 @@ - + - + @@ -5919,13 +5952,13 @@ - + - + @@ -5937,7 +5970,7 @@ - + @@ -5955,13 +5988,13 @@ - + - + @@ -5973,13 +6006,13 @@ - + - + @@ -5991,7 +6024,7 @@ - + @@ -6009,13 +6042,13 @@ - + - + @@ -6027,7 +6060,7 @@ - + @@ -6045,7 +6078,7 @@ - + @@ -6063,7 +6096,7 @@ - + @@ -6081,7 +6114,7 @@ - + @@ -6099,7 +6132,7 @@ - + @@ -6117,7 +6150,7 @@ - + @@ -6135,7 +6168,7 @@ - + @@ -6153,7 +6186,7 @@ - + @@ -6171,7 +6204,7 @@ - + @@ -6189,7 +6222,7 @@ - + @@ -6207,7 +6240,7 @@ - + @@ -6225,7 +6258,7 @@ - + @@ -6243,7 +6276,7 @@ - + @@ -6261,7 +6294,7 @@ - + @@ -6279,7 +6312,7 @@ - + @@ -6297,7 +6330,7 @@ - + @@ -6315,7 +6348,7 @@ - + @@ -6333,7 +6366,7 @@ - + @@ -6351,7 +6384,7 @@ - + @@ -6369,7 +6402,7 @@ - + @@ -6387,7 +6420,7 @@ - + @@ -6405,7 +6438,7 @@ - + @@ -6423,7 +6456,7 @@ - + @@ -6441,7 +6474,7 @@ - + @@ -6459,7 +6492,7 @@ - + @@ -6477,7 +6510,7 @@ - + @@ -6495,7 +6528,7 @@ - + @@ -6513,7 +6546,7 @@ - + @@ -6531,7 +6564,7 @@ - + @@ -6549,7 +6582,7 @@ - + @@ -6567,7 +6600,7 @@ - + @@ -6585,7 +6618,7 @@ - + @@ -6603,7 +6636,7 @@ - + @@ -6621,7 +6654,7 @@ - + @@ -6639,7 +6672,7 @@ - + @@ -6657,7 +6690,7 @@ - + @@ -6675,7 +6708,7 @@ - + @@ -6693,7 +6726,7 @@ - + @@ -6711,7 +6744,7 @@ - + @@ -6729,7 +6762,7 @@ - + @@ -6747,7 +6780,7 @@ - + @@ -6765,7 +6798,7 @@ - + @@ -6783,7 +6816,7 @@ - + @@ -6801,7 +6834,7 @@ - + @@ -6819,7 +6852,7 @@ - + @@ -6837,7 +6870,7 @@ - + @@ -6855,7 +6888,7 @@ - + @@ -6873,7 +6906,7 @@ - + @@ -6891,7 +6924,7 @@ - + @@ -6909,7 +6942,7 @@ - + @@ -6927,7 +6960,7 @@ - + @@ -6945,7 +6978,7 @@ - + @@ -6963,7 +6996,7 @@ - + @@ -6981,7 +7014,7 @@ - + @@ -6999,7 +7032,7 @@ - + @@ -7017,7 +7050,7 @@ - + @@ -7035,7 +7068,7 @@ - + @@ -7053,7 +7086,7 @@ - + @@ -7071,7 +7104,7 @@ - + @@ -7089,7 +7122,7 @@ - + @@ -7107,7 +7140,7 @@ - + @@ -7125,7 +7158,7 @@ - + @@ -7143,7 +7176,7 @@ - + @@ -7161,7 +7194,7 @@ - + @@ -7179,7 +7212,7 @@ - + @@ -7197,7 +7230,7 @@ - + @@ -7215,7 +7248,7 @@ - + @@ -7233,7 +7266,7 @@ - + @@ -7251,7 +7284,7 @@ - + @@ -7269,7 +7302,7 @@ - + @@ -7287,7 +7320,7 @@ - + @@ -7305,7 +7338,7 @@ - + @@ -7323,7 +7356,7 @@ - + @@ -7341,7 +7374,7 @@ - + @@ -7359,7 +7392,7 @@ - + @@ -7377,7 +7410,7 @@ - + @@ -7395,7 +7428,7 @@ - + @@ -7413,7 +7446,7 @@ - + @@ -7431,7 +7464,7 @@ - + @@ -7449,7 +7482,7 @@ - + @@ -7467,7 +7500,7 @@ - + @@ -7485,7 +7518,7 @@ - + @@ -7503,7 +7536,7 @@ - + @@ -7521,7 +7554,7 @@ - + @@ -7539,7 +7572,7 @@ - + @@ -7557,7 +7590,7 @@ - + @@ -7575,7 +7608,7 @@ - + @@ -7593,7 +7626,7 @@ - + @@ -7611,7 +7644,7 @@ - + @@ -7629,7 +7662,7 @@ - + @@ -7647,7 +7680,7 @@ - + @@ -7665,7 +7698,7 @@ - + @@ -7683,7 +7716,7 @@ - + @@ -7701,7 +7734,7 @@ - + @@ -7719,7 +7752,7 @@ - + @@ -7737,7 +7770,7 @@ - + @@ -7755,7 +7788,7 @@ - + @@ -7773,7 +7806,7 @@ - + @@ -7791,19 +7824,19 @@ - + - + - + @@ -7815,13 +7848,13 @@ - + - + @@ -7833,7 +7866,7 @@ - + @@ -7851,13 +7884,13 @@ - + - + @@ -7869,19 +7902,19 @@ - + - + - + @@ -7893,13 +7926,13 @@ - + - + @@ -7911,13 +7944,13 @@ - + - + @@ -7929,13 +7962,13 @@ - + - + @@ -7947,19 +7980,19 @@ - + - + - + @@ -7971,13 +8004,13 @@ - + - + @@ -7989,13 +8022,13 @@ - + - + @@ -8007,7 +8040,7 @@ - + @@ -8025,13 +8058,13 @@ - + - + @@ -8043,13 +8076,13 @@ - + - + @@ -8061,7 +8094,7 @@ - + @@ -8079,31 +8112,13 @@ - - - - - - - - - - - - - - - - - - - + - + @@ -8115,13 +8130,13 @@ - + - + @@ -8133,13 +8148,13 @@ - + - + @@ -8151,13 +8166,13 @@ - + - + @@ -8169,13 +8184,13 @@ - + - + @@ -8187,13 +8202,13 @@ - + - + @@ -8205,13 +8220,13 @@ - + - + @@ -8223,13 +8238,13 @@ - + - + @@ -8241,13 +8256,13 @@ - + - + @@ -8493,7 +8508,7 @@ - + @@ -8511,13 +8526,13 @@ - + - + @@ -8529,13 +8544,13 @@ - + - + @@ -8553,7 +8568,7 @@ - + @@ -8571,7 +8586,7 @@ - + @@ -8589,7 +8604,7 @@ - + @@ -8607,7 +8622,7 @@ - + @@ -8625,7 +8640,7 @@ - + @@ -8643,7 +8658,7 @@ - + @@ -8661,7 +8676,7 @@ - + @@ -8679,7 +8694,7 @@ - + @@ -8697,7 +8712,7 @@ - + @@ -8715,7 +8730,7 @@ - + @@ -8733,7 +8748,7 @@ - + @@ -9153,7 +9168,7 @@ - + @@ -9183,7 +9198,7 @@ - + @@ -9483,7 +9498,7 @@ - + @@ -9501,7 +9516,7 @@ - + @@ -9519,7 +9534,7 @@ - + @@ -9537,7 +9552,7 @@ - + @@ -9561,7 +9576,7 @@ - + @@ -9579,7 +9594,7 @@ - + @@ -9597,7 +9612,7 @@ - + @@ -9633,7 +9648,7 @@ - + @@ -9651,7 +9666,7 @@ - + @@ -9669,7 +9684,7 @@ - + @@ -9687,7 +9702,7 @@ - + @@ -9705,7 +9720,7 @@ - + @@ -9723,7 +9738,7 @@ - + @@ -9741,7 +9756,7 @@ - + @@ -9759,7 +9774,7 @@ - + @@ -9777,7 +9792,7 @@ - + @@ -9795,7 +9810,7 @@ - + @@ -9813,7 +9828,7 @@ - + @@ -9831,7 +9846,7 @@ - + @@ -9849,7 +9864,7 @@ - + @@ -9867,7 +9882,7 @@ - + @@ -9885,7 +9900,7 @@ - + @@ -9903,7 +9918,7 @@ - + @@ -9921,7 +9936,7 @@ - + @@ -9939,7 +9954,7 @@ - + @@ -9975,7 +9990,7 @@ - + @@ -9993,7 +10008,7 @@ - + @@ -10011,7 +10026,7 @@ - + @@ -10029,7 +10044,7 @@ - + @@ -10047,7 +10062,7 @@ - + @@ -10077,19 +10092,19 @@ - + - + - + @@ -10101,13 +10116,13 @@ - + - + @@ -10119,13 +10134,13 @@ - + - + @@ -10137,13 +10152,13 @@ - + - + @@ -10155,19 +10170,19 @@ - + - + - + @@ -10179,13 +10194,13 @@ - + - + @@ -10197,7 +10212,7 @@ - + @@ -10215,13 +10230,13 @@ - + - + @@ -10233,19 +10248,19 @@ - + - + - + @@ -10257,13 +10272,13 @@ - + - + @@ -10275,13 +10290,13 @@ - + - + @@ -10293,13 +10308,13 @@ - + - + @@ -10311,19 +10326,19 @@ - + - + - + @@ -10335,13 +10350,13 @@ - + - + @@ -10353,7 +10368,7 @@ - + @@ -10371,13 +10386,13 @@ - + - + @@ -10389,19 +10404,19 @@ - + - + - + @@ -10413,13 +10428,13 @@ - + - + @@ -10431,13 +10446,13 @@ - + - + @@ -10449,13 +10464,13 @@ - + - + @@ -10467,19 +10482,19 @@ - + - + - + @@ -10491,25 +10506,25 @@ - + - + - + - + @@ -10527,7 +10542,7 @@ - + @@ -10545,13 +10560,13 @@ - + - + @@ -10563,13 +10578,13 @@ - + - + @@ -10581,19 +10596,19 @@ - + - + - + @@ -10605,13 +10620,13 @@ - + - + @@ -10623,7 +10638,7 @@ - + @@ -10641,13 +10656,13 @@ - + - + @@ -10659,13 +10674,13 @@ - + - + @@ -10677,7 +10692,7 @@ - + @@ -10695,7 +10710,7 @@ - + @@ -10713,7 +10728,7 @@ - + @@ -10731,7 +10746,7 @@ - + @@ -10749,19 +10764,19 @@ - + - + - + @@ -10773,13 +10788,13 @@ - + - + @@ -10791,13 +10806,13 @@ - + - + @@ -10809,13 +10824,13 @@ - + - + @@ -10827,19 +10842,19 @@ - + - + - + @@ -10851,13 +10866,13 @@ - + - + @@ -10869,13 +10884,13 @@ - + - + @@ -10887,7 +10902,7 @@ - + @@ -10905,13 +10920,13 @@ - + - + @@ -10923,13 +10938,13 @@ - + - + @@ -10941,7 +10956,7 @@ - + @@ -10959,13 +10974,13 @@ - + - + @@ -10977,13 +10992,13 @@ - + - + @@ -10995,13 +11010,13 @@ - + - + @@ -11013,13 +11028,13 @@ - + - + @@ -11037,7 +11052,7 @@ - + @@ -11055,7 +11070,7 @@ - + @@ -11067,13 +11082,13 @@ - + - + @@ -11085,13 +11100,13 @@ - + - + @@ -11109,7 +11124,7 @@ - + @@ -11121,13 +11136,13 @@ - + - + @@ -11139,13 +11154,13 @@ - + - + @@ -11157,13 +11172,13 @@ - + - + @@ -11175,13 +11190,13 @@ - + - + @@ -11211,7 +11226,7 @@ - + @@ -11229,13 +11244,13 @@ - + - + @@ -11247,13 +11262,13 @@ - + - + @@ -11265,13 +11280,13 @@ - + - + @@ -11283,13 +11298,13 @@ - + - + @@ -11301,13 +11316,13 @@ - + - + @@ -11325,7 +11340,7 @@ - + @@ -11373,13 +11388,31 @@ + + + + + + + + + + + + + + + + + + - + @@ -11397,7 +11430,7 @@ - + @@ -11415,7 +11448,7 @@ - + @@ -11433,7 +11466,7 @@ - + @@ -11451,7 +11484,7 @@ - + @@ -11469,7 +11502,7 @@ - + @@ -11487,7 +11520,7 @@ - + @@ -11505,7 +11538,7 @@ - + @@ -11523,7 +11556,7 @@ - + @@ -11541,7 +11574,7 @@ - + @@ -11559,7 +11592,7 @@ - + @@ -11577,7 +11610,7 @@ - + @@ -11595,7 +11628,7 @@ - + @@ -11613,7 +11646,7 @@ - + @@ -11631,7 +11664,7 @@ - + @@ -11649,7 +11682,7 @@ - + @@ -11667,7 +11700,7 @@ - + @@ -11685,7 +11718,7 @@ - + @@ -11703,7 +11736,7 @@ - + @@ -11721,7 +11754,7 @@ - + @@ -11739,7 +11772,7 @@ - + @@ -11757,7 +11790,7 @@ - + @@ -11775,7 +11808,7 @@ - + @@ -11793,7 +11826,7 @@ - + @@ -11811,7 +11844,7 @@ - + @@ -11829,7 +11862,7 @@ - + @@ -11847,7 +11880,7 @@ - + @@ -11865,7 +11898,7 @@ - + @@ -11883,7 +11916,7 @@ - + @@ -11901,7 +11934,7 @@ - + @@ -11919,7 +11952,7 @@ - + @@ -11937,7 +11970,7 @@ - + @@ -11955,7 +11988,7 @@ - + @@ -11973,7 +12006,7 @@ - + @@ -11991,7 +12024,7 @@ - + @@ -12009,7 +12042,7 @@ - + @@ -12021,13 +12054,13 @@ - + - + @@ -12093,7 +12126,7 @@ - + @@ -12129,7 +12162,7 @@ - + @@ -12147,7 +12180,7 @@ - + @@ -12165,7 +12198,7 @@ - + @@ -12173,12 +12206,6 @@ - - - - - - @@ -12189,13 +12216,13 @@ - + - + @@ -12207,13 +12234,13 @@ - + - + @@ -12593,18 +12620,6 @@ - - - - - - - - - - - - @@ -12695,18 +12710,6 @@ - - - - - - - - - - - - @@ -12761,12 +12764,6 @@ - - - - - - @@ -12907,12 +12904,6 @@ - - - - - - Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Mon Sep 19 08:46:52 2011 (r930) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Sep 20 00:59:28 2011 (r931) @@ -281,7 +281,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -292,6 +292,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -349,7 +357,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null } @@ -623,7 +631,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -634,6 +642,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -691,7 +707,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null } @@ -1059,7 +1075,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -1070,6 +1086,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -1273,7 +1297,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -1284,6 +1308,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -1539,7 +1571,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -1550,6 +1582,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -1607,7 +1647,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null } @@ -2020,7 +2060,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -2031,6 +2071,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -2234,7 +2282,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -2245,6 +2293,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -2434,7 +2490,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -2445,6 +2501,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -2618,7 +2682,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null } @@ -2709,8 +2773,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:position-style]", - "[pref_3:position-style]" + "subject_identifiers":["[pref_3:position-style]" ], "subject_locators":null, "item_identifiers":null, @@ -2934,6 +2997,16 @@ "occurrences":null }, { + "subject_identifiers":["[pref_3:color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { "subject_identifiers":["[pref_3:background-color]" ], "subject_locators":null, @@ -3155,15 +3228,13 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]", - "si:[pref_3:position]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:value-binding]", - "[pref_3:value-binding]" + "subject_identifiers":["[pref_3:value-binding]" ], "subject_locators":null, "item_identifiers":null, @@ -3207,8 +3278,7 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]", - "si:[pref_3:topic-view-binding]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null @@ -4402,6 +4472,215 @@ }, { "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Delete-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-editor-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Editor-Topic-View]" + } + ] + }, + { + "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, "scope":null, @@ -4705,51 +4984,279 @@ }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_1:environment-creator-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:environment-creator-commit-button]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" + "player":"si:[pref_2:Commit-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Creator-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:cursor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ @@ -5538,531 +6045,552 @@ }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:hash-object-editor-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-editor-commit-button]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_2:Commit-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:hash-object-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:hash-object-editor-delete-button]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" + "player":"si:[pref_2:Delete-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-editor-text-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_1:hash-object-editor-text-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_2:Default-Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-editor-text-label-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + "player":"si:[pref_1:hash-object-editor-text-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-editor-text-label-key-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_2:Default-Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-editor-text-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_1:hash-object-editor-text-env]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_2:Editor-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_2:Default-Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:display-by]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_1:hash-object-editor-text-label-env]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_1:hash-object-editor-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_2:TM-Single-Type-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_2:Default-Editor-Topic-View]" } ] }, @@ -6075,19 +6603,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + "player":"si:[pref_1:hash-object-creator-commit-button-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_1:hash-object-creator-reset-button]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_1:hash-object-creator-commit-button]" } ] }, @@ -6100,386 +6628,3443 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_1:hash-object-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + "player":"si:[pref_1:hash-object-creator-reset-button-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + "player":"si:[pref_1:hash-object-creator-reset-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + "player":"si:[pref_1:hash-object-creator-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" }, { "item_identifiers":null, "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" }, { "item_identifiers":null, "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-default-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Commit-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:List-Box]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Creator-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Creator-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Commit-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:List-Box]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Creator-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-default-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Creator-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Schema]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:right]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:left]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:top]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:position-style]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:font-size]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:readonly]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:fixed]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:literal-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:display-by]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:view-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:name-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:id]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:color]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:background-color]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:border-style]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:pointer]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:height]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:padding-left]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:width]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:topic-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:schema-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:name-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_2:Schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:topic-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:ancestor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:tm-construct]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:tm-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:containee]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:container]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:value-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:tm-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:association-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:topic-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:contains]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_4:hash-key-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:hash-key-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_4:environment-name-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:environment-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:hash-psi-constraint]" } ] }, @@ -6492,13 +10077,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_7:association-role-constraint]" } ] }, @@ -6511,13 +10096,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Button]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, @@ -6530,13 +10115,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Button]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, @@ -6549,13 +10134,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, @@ -6568,13 +10153,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, @@ -6587,1134 +10172,1134 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_7:topic-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:has-hash-service-association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:List-Box]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:has-hash-service-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Default-Value]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Literal-Value]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:TM-Value]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:TM-Value]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Hidden-Value]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_4:hash-type-regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:hash-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_4:hash-value-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" + "player":"si:[pref_7:occurrence-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Topic-View]" + "player":"si:[pref_4:hash-value-regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:hash-value-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Topic-View]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:hash-key-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_7:occurrence-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:hash-key-regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:hash-key-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Role-Player]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_7:occurrence-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:hash-hash-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_4:hash-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:environment-name-regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_4:environment-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_7:topic-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_4:environment-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_7:name-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_5:Service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_6:supertype-subtype]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_6:subtype]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_6:supertype]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_7:constrained-role]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_7:constrained-topic-type]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:constrained-statement]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_7:constrained]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_7:association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_7:topic-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:occurrence-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_7:regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_7:topic-occurrence-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_7:topic-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:subject-identifier-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:datatype]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:regexp]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:card-max]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:card-min]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:association-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:role-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:occurrence-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:name-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:topic-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_7:topic-type]" } ] } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Mon Sep 19 08:46:52 2011 (r930) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Tue Sep 20 00:59:28 2011 (r931) @@ -666,7 +666,6 @@ - @@ -693,7 +692,6 @@ - @@ -703,7 +701,6 @@ - @@ -853,164 +850,170 @@ - + - + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + - + - + - + - + - + - + - + - + @@ -1023,20 +1026,20 @@ - + - + - + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - + hash_object_default_creator_topic_view_id @@ -1056,51 +1059,51 @@ - gray + #023467 - + - + - + - + - + - + confserver - + - + - + A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - + has_environment_createor_association_view_id @@ -1112,59 +1115,59 @@ - + - + - + absolute - + 10px - + 120px - + - + - + - + - + hash_object_text_label_env_id - + true @@ -1178,7 +1181,7 @@ - gray + #023467 @@ -1186,67 +1189,73 @@ none + + + + + #fff + - + - + - + absolute - + 10px - + 10px - + - + - + - + - + environment: - + - + - + hash_object_text_list_box_env_id - + true @@ -1258,59 +1267,59 @@ - + - + - + absolute - + 0px - + 0px - + - + - + - + - + - + hash_object_text_label_key_id - + true @@ -1324,7 +1333,7 @@ - gray + #023467 @@ -1332,67 +1341,73 @@ none + + + + + #fff + - + - + - + absolute - + 40px - + 10px - + - + - + - + - + key: - + - + - + hash_object_text_key_id - + false @@ -1422,52 +1437,52 @@ - + - + - + absolute - + 40px - + 120px - + - + - + - + - + hash_object_text_label_value_id - + true @@ -1481,7 +1496,7 @@ - gray + #023467 @@ -1489,67 +1504,73 @@ none + + + + + #fff + - + - + - + absolute - + 70px - + 10px - + - + - + - + - + value: - + - + - + hash_object_text_value_id - + false @@ -1579,46 +1600,46 @@ - + - + - + absolute - + 70px - + 120px - + - + - + - + - + hash_object_reset_button_id @@ -1636,65 +1657,65 @@ - + 12px - + - + - + absolute - + 115px - + 10px - + - + - + - + - + reset - + - + - + creator_hash_object_commit_button_id @@ -1712,32 +1733,32 @@ - + 12px - + - + - + absolute - + 115px - + 10px @@ -1762,13 +1783,13 @@ - + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - + hash_object_default_editor_topic_view_id @@ -1788,31 +1809,31 @@ - gray + #023467 - + - + - + hash_object_text_label_env_id - + true @@ -1826,7 +1847,7 @@ - gray + #023467 @@ -1834,28 +1855,34 @@ none + + + + + #fff + - + - + absolute - + 10px - + 10px @@ -1864,18 +1891,18 @@ - + - + - + environment: @@ -1888,13 +1915,13 @@ - + A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - + has_environment_editor_association_view_id @@ -1909,23 +1936,23 @@ - + - + absolute - + 10px - + 120px @@ -1934,17 +1961,17 @@ - + - + hash_object_text_env_id - + true @@ -1965,23 +1992,23 @@ - + - + absolute - + 0px - + 0px @@ -1990,24 +2017,24 @@ - + - + - + hash_object_text_label_key_id - + true @@ -2021,7 +2048,7 @@ - gray + #023467 @@ -2029,28 +2056,34 @@ none + + + + + #fff + - + - + absolute - + 40px - + 10px @@ -2059,18 +2092,18 @@ - + - + - + key: @@ -2079,17 +2112,17 @@ - + - + hash_object_text_key_id - + true @@ -2122,23 +2155,23 @@ - + - + absolute - + 40px - + 120px @@ -2147,24 +2180,24 @@ - + - + - + hash_object_text_label_value_id - + true @@ -2178,7 +2211,7 @@ - gray + #023467 @@ -2186,28 +2219,34 @@ none + + + + + #fff + - + - + absolute - + 70px - + 10px @@ -2216,18 +2255,18 @@ - + - + - + value: @@ -2236,17 +2275,17 @@ - + - + hash_object_text_value_id - + false @@ -2279,23 +2318,23 @@ - + - + absolute - + 70px - + 120px @@ -2304,7 +2343,7 @@ - + @@ -2315,7 +2354,7 @@ - + hash_object_delete_button_id @@ -2333,7 +2372,7 @@ - + 12px @@ -2342,23 +2381,23 @@ - + - + absolute - + 115px - + 10px @@ -2367,11 +2406,11 @@ - + - + editor_hash_object_commit_button_id @@ -2389,7 +2428,7 @@ - + 12px @@ -2398,23 +2437,23 @@ - + - + absolute - + 115px - + 10px @@ -2430,17 +2469,17 @@ - + - + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - + environment_default_creator_topic_view_id @@ -2460,31 +2499,31 @@ - gray + #023467 - + - + - + environment_text_label_id - + true @@ -2498,7 +2537,7 @@ - gray + #023467 @@ -2506,28 +2545,34 @@ none + + + + + #fff + - + - + absolute - + 10px - + 10px @@ -2536,18 +2581,18 @@ - + - + - + name: @@ -2556,17 +2601,17 @@ - + - + environment_name_text_id - + false @@ -2593,23 +2638,23 @@ - + - + absolute - + 10px - + 70px @@ -2618,18 +2663,18 @@ - + - + - + environment_commit_button_id @@ -2647,7 +2692,7 @@ - + 12px @@ -2656,42 +2701,42 @@ - + - + absolute - + 65px - + 10px - + - + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - + environment_default_editor_topic_view_id @@ -2711,31 +2756,31 @@ - gray + #023467 - + - + - + - + - + environment_text_label_id - + true @@ -2749,7 +2794,7 @@ - gray + #023467 @@ -2757,67 +2802,73 @@ none + + + + + #fff + - + - + - + absolute - + 10px - + 10px - + - + - + - + - + name: - + - + - + environment_name_text_id - + true @@ -2841,46 +2892,46 @@ - + - + - + absolute - + 10px - + 70px - + - + - + - + environment_delete_button_id @@ -2898,32 +2949,32 @@ - + 12px - + - + - + absolute - + 65px - + 10px @@ -2937,19 +2988,19 @@ - + - + - + @@ -2961,13 +3012,13 @@ - + - + @@ -2979,7 +3030,7 @@ - + @@ -2997,13 +3048,13 @@ - + - + @@ -3015,19 +3066,19 @@ - + - + - + @@ -3039,13 +3090,13 @@ - + - + @@ -3057,13 +3108,13 @@ - + - + @@ -3075,13 +3126,13 @@ - + - + @@ -3093,19 +3144,19 @@ - + - + - + @@ -3117,13 +3168,13 @@ - + - + @@ -3135,13 +3186,13 @@ - + - + @@ -3153,7 +3204,7 @@ - + @@ -3171,31 +3222,13 @@ - - - - - - - - - - - - - - - - - - - + - + - + @@ -3207,13 +3240,13 @@ - + - + @@ -3225,13 +3258,13 @@ - + - + @@ -3243,13 +3276,13 @@ - + - + @@ -3261,13 +3294,13 @@ - + - + @@ -3279,13 +3312,13 @@ - + - + @@ -3297,13 +3330,13 @@ - + - + @@ -3315,13 +3348,13 @@ - + - + @@ -3333,13 +3366,13 @@ - + - + @@ -3351,13 +3384,13 @@ - + - + @@ -3369,13 +3402,13 @@ - + - + @@ -3387,13 +3420,13 @@ - + - + @@ -3639,7 +3672,7 @@ - + @@ -3657,13 +3690,13 @@ - + - + @@ -3675,13 +3708,13 @@ - + - + @@ -3699,7 +3732,7 @@ - + @@ -3717,7 +3750,7 @@ - + @@ -3735,7 +3768,7 @@ - + @@ -3753,7 +3786,7 @@ - + @@ -3771,7 +3804,7 @@ - + @@ -3789,7 +3822,7 @@ - + @@ -3807,7 +3840,7 @@ - + @@ -3825,7 +3858,7 @@ - + @@ -3843,7 +3876,7 @@ - + @@ -3861,7 +3894,7 @@ - + @@ -3879,7 +3912,7 @@ - + @@ -4299,7 +4332,7 @@ - + @@ -4329,7 +4362,7 @@ - + @@ -4629,7 +4662,7 @@ - + @@ -4647,7 +4680,7 @@ - + @@ -4665,7 +4698,7 @@ - + @@ -4683,7 +4716,7 @@ - + @@ -4707,7 +4740,7 @@ - + @@ -4725,7 +4758,7 @@ - + @@ -4743,7 +4776,7 @@ - + @@ -4779,7 +4812,7 @@ - + @@ -4797,7 +4830,7 @@ - + @@ -4815,7 +4848,7 @@ - + @@ -4833,7 +4866,7 @@ - + @@ -4851,7 +4884,7 @@ - + @@ -4869,7 +4902,7 @@ - + @@ -4887,7 +4920,7 @@ - + @@ -4905,7 +4938,7 @@ - + @@ -4923,7 +4956,7 @@ - + @@ -4941,7 +4974,7 @@ - + @@ -4959,7 +4992,7 @@ - + @@ -4977,7 +5010,7 @@ - + @@ -4995,7 +5028,7 @@ - + @@ -5013,7 +5046,7 @@ - + @@ -5031,7 +5064,7 @@ - + @@ -5049,7 +5082,7 @@ - + @@ -5067,7 +5100,7 @@ - + @@ -5085,7 +5118,7 @@ - + @@ -5121,7 +5154,7 @@ - + @@ -5139,7 +5172,7 @@ - + @@ -5157,7 +5190,7 @@ - + @@ -5175,7 +5208,7 @@ - + @@ -5193,7 +5226,7 @@ - + @@ -5223,19 +5256,19 @@ - + - + - + @@ -5247,13 +5280,13 @@ - + - + @@ -5265,13 +5298,13 @@ - + - + @@ -5283,13 +5316,13 @@ - + - + @@ -5301,19 +5334,19 @@ - + - + - + @@ -5325,13 +5358,13 @@ - + - + @@ -5343,7 +5376,7 @@ - + @@ -5361,13 +5394,13 @@ - + - + @@ -5379,19 +5412,19 @@ - + - + - + @@ -5403,13 +5436,13 @@ - + - + @@ -5421,13 +5454,13 @@ - + - + @@ -5439,13 +5472,13 @@ - + - + @@ -5457,19 +5490,19 @@ - + - + - + @@ -5481,13 +5514,13 @@ - + - + @@ -5499,7 +5532,7 @@ - + @@ -5517,13 +5550,13 @@ - + - + @@ -5535,19 +5568,19 @@ - + - + - + @@ -5559,13 +5592,13 @@ - + - + @@ -5577,13 +5610,13 @@ - + - + @@ -5595,13 +5628,13 @@ - + - + @@ -5613,19 +5646,19 @@ - + - + - + @@ -5637,25 +5670,25 @@ - + - + - + - + @@ -5673,7 +5706,7 @@ - + @@ -5691,13 +5724,13 @@ - + - + @@ -5709,13 +5742,13 @@ - + - + @@ -5727,19 +5760,19 @@ - + - + - + @@ -5751,13 +5784,13 @@ - + - + @@ -5769,7 +5802,7 @@ - + @@ -5787,13 +5820,13 @@ - + - + @@ -5805,13 +5838,13 @@ - + - + @@ -5823,7 +5856,7 @@ - + @@ -5841,7 +5874,7 @@ - + @@ -5859,7 +5892,7 @@ - + @@ -5877,7 +5910,7 @@ - + @@ -5895,19 +5928,19 @@ - + - + - + @@ -5919,13 +5952,13 @@ - + - + @@ -5937,13 +5970,13 @@ - + - + @@ -5955,13 +5988,13 @@ - + - + @@ -5973,19 +6006,19 @@ - + - + - + @@ -5997,13 +6030,13 @@ - + - + @@ -6015,13 +6048,13 @@ - + - + @@ -6033,7 +6066,7 @@ - + @@ -6051,13 +6084,13 @@ - + - + @@ -6069,13 +6102,13 @@ - + - + @@ -6087,7 +6120,7 @@ - + @@ -6105,13 +6138,13 @@ - + - + @@ -6123,13 +6156,13 @@ - + - + @@ -6141,13 +6174,13 @@ - + - + @@ -6159,13 +6192,13 @@ - + - + @@ -6183,7 +6216,7 @@ - + @@ -6201,7 +6234,7 @@ - + @@ -6213,13 +6246,13 @@ - + - + @@ -6231,13 +6264,13 @@ - + - + @@ -6255,7 +6288,7 @@ - + @@ -6267,13 +6300,13 @@ - + - + @@ -6285,13 +6318,13 @@ - + - + @@ -6303,13 +6336,13 @@ - + - + @@ -6321,13 +6354,13 @@ - + - + @@ -6357,7 +6390,7 @@ - + @@ -6375,13 +6408,13 @@ - + - + @@ -6393,13 +6426,13 @@ - + - + @@ -6411,13 +6444,13 @@ - + - + @@ -6429,13 +6462,13 @@ - + - + @@ -6447,13 +6480,13 @@ - + - + @@ -6471,7 +6504,7 @@ - + @@ -6519,13 +6552,31 @@ + + + + + + + + + + + + + + + + + + - + @@ -6543,7 +6594,7 @@ - + @@ -6561,7 +6612,7 @@ - + @@ -6579,7 +6630,7 @@ - + @@ -6597,7 +6648,7 @@ - + @@ -6615,7 +6666,7 @@ - + @@ -6633,7 +6684,7 @@ - + @@ -6651,7 +6702,7 @@ - + @@ -6669,7 +6720,7 @@ - + @@ -6687,7 +6738,7 @@ - + @@ -6705,7 +6756,7 @@ - + @@ -6723,7 +6774,7 @@ - + @@ -6741,7 +6792,7 @@ - + @@ -6759,7 +6810,7 @@ - + @@ -6777,7 +6828,7 @@ - + @@ -6795,7 +6846,7 @@ - + @@ -6813,7 +6864,7 @@ - + @@ -6831,7 +6882,7 @@ - + @@ -6849,7 +6900,7 @@ - + @@ -6867,7 +6918,7 @@ - + @@ -6885,7 +6936,7 @@ - + @@ -6903,7 +6954,7 @@ - + @@ -6921,7 +6972,7 @@ - + @@ -6939,7 +6990,7 @@ - + @@ -6957,7 +7008,7 @@ - + @@ -6975,7 +7026,7 @@ - + @@ -6993,7 +7044,7 @@ - + @@ -7011,7 +7062,7 @@ - + @@ -7029,7 +7080,7 @@ - + @@ -7047,7 +7098,7 @@ - + @@ -7065,7 +7116,7 @@ - + @@ -7083,7 +7134,7 @@ - + @@ -7101,7 +7152,7 @@ - + @@ -7119,7 +7170,7 @@ - + @@ -7137,7 +7188,7 @@ - + @@ -7155,7 +7206,7 @@ - + @@ -7167,13 +7218,13 @@ - + - + @@ -7239,7 +7290,7 @@ - + @@ -7275,7 +7326,7 @@ - + @@ -7293,7 +7344,7 @@ - + @@ -7311,7 +7362,7 @@ - + @@ -7319,12 +7370,6 @@ - - - - - - @@ -7335,13 +7380,13 @@ - + - + @@ -7353,13 +7398,13 @@ - + - + @@ -7739,18 +7784,6 @@ - - - - - - - - - - - - @@ -7832,18 +7865,6 @@ - - - - - - - - - - - - Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Mon Sep 19 08:46:52 2011 (r930) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 00:59:28 2011 (r931) @@ -13,45 +13,40 @@ }, "item_identifiers":["[pref_8:services-tm]" ], - "topics":[{"subject_identifiers":["[pref_8:test-env-1]"], - "instance_of":["si:[pref_5:Environment]"], - "names":[{"type":"si:[pref_4:environment-name]", "value":"Test Environment 1"}] - }, - {"subject_identifiers":["[pref_8:test-env-2]"], - "instance_of":["si:[pref_5:Environment]"], - "names":[{"type":"si:[pref_4:environment-name]", "value":"Test Environment 2"}] - }, - {"subject_identifiers":["[pref_8:test-hash-1]"], - "instance_of":["si:[pref_5:Hash-Object]"], - "occurrences":[{"type":"si:[pref_4:hash-type]", "value":"confserver", "datatype":"[xsd:string]"}, - {"type":"si:[pref_4:key]", "value":"key-value-1", "datatype":"[xsd:string]"}, - {"type":"si:[pref_4:value]", "value":"value-value-1", "datatype":"[xsd:string]"}] - }, - {"subject_identifiers":["[pref_8:test-hash-2]"], - "instance_of":["si:[pref_5:Hash-Object]"], - "occurrences":[{"type":"si:[pref_4:hash-type]", "value":"confserver", "datatype":"[xsd:string]"}, - {"type":"si:[pref_4:key]", "value":"key-value-2", "datatype":"[xsd:string]"}, - {"type":"si:[pref_4:value]", "value":"value-value-2", "datatype":"[xsd:string]"}] - }, - { - "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" - ], - "instance_of":["si:[pref_2:Position]" - ], - "occurrences":[{ - "type":"si:[pref_3:position-style]", - "value":"absolute" - }, - { - "type":"si:[pref_3:top]", - "value":"65px" - }, - { - "type":"si:[pref_3:left]", - "value":"10px" - } - ] - }, + "topics":[{ + "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, { "subject_identifiers":["[pref_1:environment-editor-delete-button]" ], @@ -286,7 +281,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -297,6 +292,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -354,7 +357,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null } @@ -628,7 +631,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -639,6 +642,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -696,7 +707,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null } @@ -1064,7 +1075,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -1075,6 +1086,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -1278,7 +1297,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -1289,6 +1308,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -1544,7 +1571,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -1555,6 +1582,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -1612,7 +1647,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null } @@ -2025,7 +2060,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -2036,6 +2071,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -2239,7 +2282,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -2250,6 +2293,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -2439,7 +2490,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null }, @@ -2450,6 +2501,14 @@ "value":"none", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null } ] }, @@ -2623,7 +2682,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:background-color]", - "value":"gray", + "value":"#023467", "scope":null, "reifier":null } @@ -2714,8 +2773,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:position-style]", - "[pref_3:position-style]" + "subject_identifiers":["[pref_3:position-style]" ], "subject_locators":null, "item_identifiers":null, @@ -2939,6 +2997,16 @@ "occurrences":null }, { + "subject_identifiers":["[pref_3:color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { "subject_identifiers":["[pref_3:background-color]" ], "subject_locators":null, @@ -3160,15 +3228,13 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]", - "si:[pref_3:position]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:value-binding]", - "[pref_3:value-binding]" + "subject_identifiers":["[pref_3:value-binding]" ], "subject_locators":null, "item_identifiers":null, @@ -3212,8 +3278,7 @@ ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]", - "si:[pref_3:topic-view-binding]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null @@ -4140,43 +4205,7 @@ "occurrences":null } ], - "associations":[{"item_identifiers":null, - "type":"si:[pref_4:has-environment]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_4:hash]", - "reifier":null, - "player":"si:[pref_8:test-hash-1]" - }, - { - "item_identifiers":null, - "type":"si:[pref_4:environment]", - "reifier":null, - "player":"si:[pref_8:test-env-1]" - } - ] - }, - {"item_identifiers":null, - "type":"si:[pref_4:has-environment]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_4:hash]", - "reifier":null, - "player":"si:[pref_8:test-hash-2]" - }, - { - "item_identifiers":null, - "type":"si:[pref_4:environment]", - "reifier":null, - "player":"si:[pref_8:test-env-2]" - } - ] - }, - { + "associations":[{ "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, @@ -4443,247 +4472,235 @@ }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_1:environment-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_1:environment-editor-delete-button]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" + "player":"si:[pref_2:Delete-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" + "player":"si:[pref_1:environment-editor-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" + "player":"si:[pref_1:environment-editor-name-text-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_1:environment-editor-name-text]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_1:environment-editor-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_2:Default-Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" + "player":"si:[pref_1:environment-editor-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" + "player":"si:[pref_1:environment-editor-text-label-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_1:environment-editor-text-label]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_1:environment-editor-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_2:TM-Single-Type-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_1:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" + "player":"si:[pref_2:Default-Editor-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" + "player":"si:[pref_1:environment-creator-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_1:environment-creator-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button]" } ] }, @@ -4696,51 +4713,51 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_1:environment-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_2:Default-Value]" + "player":"si:[pref_1:environment-creator-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_2:Literal-Value]" + "player":"si:[pref_1:environment-creator-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_1:environment-creator-name-text]" } ] }, @@ -4753,19 +4770,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button-position]" + "player":"si:[pref_1:environment-creator-name-text-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_1:environment-creator-text-label]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" + "player":"si:[pref_1:environment-creator-name-text]" } ] }, @@ -4778,442 +4795,418 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" + "player":"si:[pref_1:environment-creator-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_1:environment-creator-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_1:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:environment-creator-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_1:environment-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + "player":"si:[pref_1:environment-creator-text-label-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_1:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_3:tm-value]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_1:environment-creator-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:environment-creator-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_5:Environment]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + "player":"si:[pref_1:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_1:environment-default-creator-topic-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + "player":"si:[pref_2:Default-Value]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + "player":"si:[pref_2:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_2:Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_2:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:environment-creator-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + "player":"si:[pref_1:environment-creator-commit-button]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_2:Commit-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + "player":"si:[pref_1:environment-creator-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_1:environment-creator-name-text-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:environment-creator-name-text]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + "player":"si:[pref_1:environment-creator-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_2:Default-Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + "player":"si:[pref_1:environment-creator-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + "player":"si:[pref_2:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:environment-creator-text-label-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_2:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:environment-creator-text-label]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:display-by]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_1:environment-creator-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_2:TM-Single-Type-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_1:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_2:Default-Creator-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_3:cursor]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_7:occurrence-type]" } ] }, @@ -5226,19 +5219,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-position]" + "player":"si:[pref_1:hash-object-editor-commit-button-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-editor-delete-button]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_1:hash-object-editor-commit-button]" } ] }, @@ -5251,89 +5244,95 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_1:hash-object-editor-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_1:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, @@ -5346,19 +5345,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + "player":"si:[pref_1:hash-object-editor-text-value-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, @@ -5377,7 +5376,7 @@ "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, @@ -5390,13 +5389,13 @@ "item_identifiers":null, "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" } ] }, @@ -5409,13 +5408,13 @@ "item_identifiers":null, "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" } ] }, @@ -5428,19 +5427,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + "player":"si:[pref_1:hash-object-editor-text-label-value-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:hash-object-editor-text-key]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" } ] }, @@ -5459,121 +5458,127 @@ "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_1:hash-object-editor-text-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Delete-Button]" + "player":"si:[pref_1:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Editor-Association-View]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" + "player":"si:[pref_1:hash-object-editor-text-label-key-value]" } ] }, @@ -5586,19 +5591,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" + "player":"si:[pref_1:hash-object-editor-text-label-key-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" } ] }, @@ -5611,51 +5616,70 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_1:hash-object-editor-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" + "player":"si:[pref_1:hash-object-editor-text-env]" } ] }, @@ -5668,19 +5692,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" + "player":"si:[pref_1:hash-object-editor-text-env-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:hash-object-editor-text-env]" } ] }, @@ -5693,51 +5717,89 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:hash-object-editor-text-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_1:has-environment-editor-association-view]" }, { "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, @@ -5750,19 +5812,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" + "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_1:hash-object-editor-text-label-env]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_1:has-environment-editor-association-view]" } ] }, @@ -5775,13 +5837,13 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_1:has-environment-editor-association-view]" } ] }, @@ -5794,13 +5856,13 @@ "item_identifiers":null, "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" }, { "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_1:hash-object-editor-text-label-env]" } ] }, @@ -5813,13 +5875,13 @@ "item_identifiers":null, "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" }, { "item_identifiers":null, "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + "player":"si:[pref_1:hash-object-editor-text-label-env-value]" } ] }, @@ -5832,19 +5894,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + "player":"si:[pref_1:hash-object-editor-text-label-env-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_1:hash-object-editor-text-label-env]" } ] }, @@ -5857,670 +5919,4152 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_1:hash-object-editor-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_3:tm-value]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_1:hash-object-editor-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_1:hash-object-editor-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_5:Hash-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Delete-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Editor-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Editor-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Commit-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Delete-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Editor-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Editor-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-default-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Commit-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:List-Box]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Creator-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Creator-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Commit-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", "reifier":null, "player":"si:[pref_1:hash-object-creator-text-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:List-Box]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Creator-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-default-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Default-Creator-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_2:Schema]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:right]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:left]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:top]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:position-style]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:font-size]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:readonly]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:fixed]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:literal-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:display-by]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:view-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:name-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:id]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:color]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:background-color]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:border-style]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:pointer]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:height]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:padding-left]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:width]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:occurrence-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:topic-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:schema-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:name-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_2:Schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:topic-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:ancestor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:tm-construct]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:tm-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:containee]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:container]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:role-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:value-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:tm-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:association-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:topic-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type-instance]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:instance]", + "reifier":null, + "player":"si:[pref_3:contains]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:type]", + "reifier":null, + "player":"si:[pref_7:association-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_5:Service]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:display-by]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_4:hash-value-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_4:hash-value-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_4:hash-key-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:hash-key-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_4:environment-name-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:environment-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_4:hash-psi-constraint]" } ] }, @@ -6533,13 +10077,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_7:association-role-constraint]" } ] }, @@ -6552,13 +10096,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Button]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, @@ -6571,13 +10115,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Button]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, @@ -6590,13 +10134,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, @@ -6609,13 +10153,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, @@ -6628,1134 +10172,1134 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_7:topic-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:has-hash-service-association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:List-Box]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:has-hash-service-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Default-Value]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Literal-Value]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:TM-Value]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:TM-Value]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Hidden-Value]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_4:hash-type-regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:hash-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_4:hash-value-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" + "player":"si:[pref_7:occurrence-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Topic-View]" + "player":"si:[pref_4:hash-value-regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:hash-value-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Topic-View]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:hash-key-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_7:occurrence-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:hash-key-regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:hash-key-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_2:Role-Player]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_7:occurrence-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:hash-hash-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_4:hash-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:environment-name-regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_4:environment-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_7:topic-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_4:environment-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_7:name-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_5:Service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_6:supertype-subtype]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_6:subtype]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_6:supertype]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_7:constrained-role]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_7:constrained-topic-type]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:constrained-statement]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_7:association-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_7:constrained]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_7:association-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_7:topic-role-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:occurrence-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_7:regular-expression-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_7:topic-occurrence-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_7:topic-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:subject-identifier-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_7:role-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:datatype]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:regexp]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:card-max]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:card-min]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_7:occurrence-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:association-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:role-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:occurrence-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:name-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_7:topic-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_6:type-instance]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_6:instance]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_7:topic-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_6:type]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_7:topic-type]" } ] } @@ -7763,4 +11307,3 @@ "item_type":"topicmap", "reifier":null } - \ No newline at end of file From lgiessmann at common-lisp.net Tue Sep 20 09:00:22 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 02:00:22 -0700 Subject: [isidorus-cvs] r932 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/base src/us/isidor/gdl/anaToMia/Widgets/isidorus war Message-ID: Author: lgiessmann Date: Tue Sep 20 02:00:21 2011 New Revision: 932 Log: gdl-frontend: Widgets: added the class LoadScreenPanel, that can be used to show the user that the frontend is waiting for data Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadScreenPanel.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.html Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 20 00:59:28 2011 (r931) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 20 02:00:21 2011 (r932) @@ -1,23 +1,13 @@ package us.isidor.gdl.anaToMia.Widgets.base; -import java.util.ArrayList; -import us.isidor.gdl.anaToMia.TmEngine.jtmsBasedEngine.JtmsTmEngine; -import us.isidor.gdl.anaToMia.Widgets.environment.Pair; -import us.isidor.gdl.anaToMia.Widgets.environment.TopicIdentifierTypes; -import us.isidor.gdl.anaToMia.Widgets.isidorus.CommitCallback; -import us.isidor.gdl.anaToMia.Widgets.isidorus.DeleteCallback; -import us.isidor.gdl.anaToMia.Widgets.isidorus.LoadSchemaCallback; +import us.isidor.gdl.anaToMia.Widgets.isidorus.LoadScreenPanel; + import com.google.gwt.core.client.EntryPoint; -import com.google.gwt.event.dom.client.ClickEvent; -import com.google.gwt.event.dom.client.ClickHandler; -import com.google.gwt.user.client.DOM; +import com.google.gwt.user.client.Timer; import com.google.gwt.user.client.Window; -import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.HorizontalPanel; import com.google.gwt.user.client.ui.RootPanel; -import com.google.gwt.dom.client.Element; -import com.google.gwt.dom.client.TextAreaElement; public class TestClass implements EntryPoint{ @@ -26,6 +16,20 @@ @Override public void onModuleLoad() { + final LoadScreenPanel lsp = new LoadScreenPanel("Title", "message"); + RootPanel.get().add(lsp); + + Timer t = new Timer() { + @Override + public void run() { + lsp.removeFromParent(); + Window.alert("timer fired event!"); + } + }; + + t.schedule(5000); + + /* try{ RootPanel.get("GWT_Content").add(mainPanel); mainPanel.setBorderWidth(1); @@ -70,5 +74,6 @@ e.printStackTrace(); Window.alert(">> e >> " + e.getClass() + " >> " + e.getMessage()); } + */ } } Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadScreenPanel.java ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadScreenPanel.java Tue Sep 20 02:00:21 2011 (r932) @@ -0,0 +1,21 @@ +package us.isidor.gdl.anaToMia.Widgets.isidorus; + +import com.google.gwt.user.client.ui.Composite; +import com.google.gwt.user.client.ui.HTMLPanel; + + +public class LoadScreenPanel extends Composite { + private HTMLPanel mainPanel = null; + private HTMLPanel content = null; + private static long instanceCounter = 0; + + public LoadScreenPanel(String title, String message){ + String localTitle = title == null ? "" : title; + String localMessage = message == null ? "" : message; + String mainPanelId = "GDL_LoadScreenPanel_id_" + LoadScreenPanel.instanceCounter++; + this.mainPanel = new HTMLPanel("
"); + this.initWidget(this.mainPanel); + this.content = new HTMLPanel("
" + localTitle + "
" + localMessage + "
"); + this.mainPanel.add(this.content, mainPanelId); + } +} Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.html ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.html Tue Sep 20 00:59:28 2011 (r931) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.html Tue Sep 20 02:00:21 2011 (r932) @@ -17,7 +17,7 @@ - Web Application Starter Project + TextGrid ServiceRegistry From lgiessmann at common-lisp.net Tue Sep 20 09:20:51 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 02:20:51 -0700 Subject: [isidorus-cvs] r933 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus Message-ID: Author: lgiessmann Date: Tue Sep 20 02:20:51 2011 New Revision: 933 Log: gdl-frontend: Widgets: make the classes LoadSchemaCallback and GdlWebPage using LoadScreenPanel to signal the user that the system is busy Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 20 02:00:21 2011 (r932) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 20 02:20:51 2011 (r933) @@ -5,7 +5,6 @@ import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.Timer; -import com.google.gwt.user.client.Window; import com.google.gwt.user.client.ui.HorizontalPanel; import com.google.gwt.user.client.ui.RootPanel; @@ -23,7 +22,6 @@ @Override public void run() { lsp.removeFromParent(); - Window.alert("timer fired event!"); } }; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 20 02:00:21 2011 (r932) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 20 02:20:51 2011 (r933) @@ -37,6 +37,7 @@ private Button createNewButton = new Button("create new"); private PsiContainer psiContainer = null; private GdlPanel gdlPanel = null; + private LoadScreenPanel loadScreenPanel = null; private final String GDL_PANEL_STYLE_NAME = "gdl_panel"; private final String CREATE_NEW_BUTTON_STYLE_NAME = "create_new_button"; @@ -73,6 +74,7 @@ public void resetPage() { + this.removeLoadScreenPanel(); if(gdlPanel != null) this.gdlPanel.removeFromParent(); if(this.psiContainer != null) this.psiContainer.removeFromParent(); if(this.createNewButton != null) this.createNewButton.removeFromParent(); @@ -87,6 +89,18 @@ } + public void removeLoadScreenPanel(){ + if(this.loadScreenPanel != null) this.loadScreenPanel.removeFromParent(); + } + + + public void createLoadScreenPanel(String title, String message){ + this.removeLoadScreenPanel(); + this.loadScreenPanel = new LoadScreenPanel(title, message); + RootPanel.get().add(this.loadScreenPanel); + } + + private void requestPsis() throws ExecutionException { String url = null; String postData = null; @@ -110,6 +124,7 @@ RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); try{ + this.createLoadScreenPanel("Wating for data", "Requesting all PSIs of instances of " + GdlWebPage.this.topicTypePsi + " from " + url); builder.sendRequest(postData, new PsiRequest()); }catch(RequestException e){ e.printStackTrace(); @@ -129,7 +144,7 @@ GdlWebPage.this.gdlPanel = new GdlPanel(null, topicsToCreate, 362, 160); GdlWebPage.this.mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); - gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback()); + gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); gdlPanel.setCommitCallback(new CommitCallback()); gdlPanel.setDeleteCallback(new DeleteCallback()); gdlPanel.addStyleName(GdlWebPage.this.GDL_PANEL_STYLE_NAME); @@ -154,7 +169,7 @@ GdlWebPage.this.gdlPanel = new GdlPanel(new Pair(source.getText(), TopicIdentifierTypes.SubjectIdentifier), null, 362, 160); GdlWebPage.this.mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); - gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback()); + gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); gdlPanel.setCommitCallback(new CommitCallback()); gdlPanel.setDeleteCallback(new DeleteCallback()); gdlPanel.loadSchema(); @@ -216,6 +231,7 @@ } else { Window.alert("could not request existing instances of " + GdlWebPage.this.topicTypePsi + ", because(" + response.getStatusCode() + "): " + response.getStatusText()); } + GdlWebPage.this.removeLoadScreenPanel(); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Tue Sep 20 02:00:21 2011 (r932) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/LoadSchemaCallback.java Tue Sep 20 02:20:51 2011 (r933) @@ -25,9 +25,15 @@ private ArrayList> requestedTopicsToCreate = new ArrayList>(); private Pair requestedTopicToEdit = null; private RequestBuilder requestBuilder = new RequestBuilder(RequestBuilder.GET, isidorusUrl); + private GdlWebPage gdlWebPage = null; + @SuppressWarnings("unused") + private LoadSchemaCallback(){} - public LoadSchemaCallback(){} + + public LoadSchemaCallback(GdlWebPage gdlWebPage){ + this.gdlWebPage = gdlWebPage; + } // this method is invoked as a callback method @@ -35,6 +41,7 @@ public void loadSchema(GdlPanel panel, Pair requestedTopicToEdit , ArrayList> requestedTopicsToCreate)throws RequestException { this.requestedTopicsToCreate = requestedTopicsToCreate; this.requestedTopicToEdit = requestedTopicToEdit; + this.gdlWebPage.createLoadScreenPanel("Requesting and Processing GDL data", "requesting a GDL-Schema from " + IsidorusConstants.GET_SCHEMA_REQUEST_URL + " and creating the corresponding UI-fragment"); requestBuilder.sendRequest(null, new RequestCallbackImpl(panel)); } @@ -89,6 +96,7 @@ dialog.center(); } + LoadSchemaCallback.this.gdlWebPage.removeLoadScreenPanel(); } @@ -115,6 +123,7 @@ }); dialog.center(); + LoadSchemaCallback.this.gdlWebPage.removeLoadScreenPanel(); } } } From lgiessmann at common-lisp.net Tue Sep 20 10:16:24 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 03:16:24 -0700 Subject: [isidorus-cvs] r934 - in branches/gdl-frontend/src/anaToMia/hosted_files: . gdl_widgets gdl_widgets/gwt gdl_widgets/gwt/clean gdl_widgets/gwt/clean/images gdl_widgets/lib Message-ID: Author: lgiessmann Date: Tue Sep 20 03:16:23 2011 New Revision: 934 Log: gdl-frontend: updated the hosted files for anaToMia Added: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html~ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/107A4AD4D3579374B5D483A2E9755665.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/188E98EC3961C4A4492B17687C5EBE09.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5A2562EE8258A8DD2A5FD9B48DF61673.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/C561B7DAD90D0117C25580643C058581.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D011C9BA42EB257713B64ED4FDE1A603.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FA64F587F6652439CE6EC7D73E2692EA.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/textgrid_small.png (contents, props changed) Added: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,73 @@ +/** Add css rules here for your application. */ + + +/** Example rules used by the template application (remove for your app) */ +h1 { + font-size: 2em; + font-weight: bold; + color: #777777; + margin: 40px 0px 70px; + text-align: center; +} + + +.sendButton { + display: block; + font-size: 16pt; +} + +/** Most GWT widgets already have a style name defined */ +.gwt-DialogBox { + width: 400px; +} + +.dialogVPanel { + margin: 5px; +} + +.serverResponseLabelError { + color: red; +} + +/** Set ids using widget.getElement().setId("idOfElement") */ +#closeButton { + margin: 15px 6px 6px; +} + +.psi_label { + cursor: pointer; +} + + +.psi_label:hover { + font-size: larger; + border: rgb(134, 169, 203) 1px solid; + border-radius: 5px; + padding-left: 2px; + padding-right: 2px; + margin-top: 5px; + margin-bottom: 5px; +} + + +.psi_label:active { + font-size: larger; + border: rgb(134, 169, 203) 1px solid; + border-radius: 5px; + padding-left: 2px; + padding-right: 2px; + margin-top: 5px; + margin-bottom: 5px; + background-color: rgb(134, 169, 203); +} + + +.gdl_panel { + margin-left:auto; + margin-right:0; + margin-top: 2em; +} + +.create_new_button { + margin-bottom: 2em; +} \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + TextGrid ServiceRegistry + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + Added: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html~ ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html~ Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + Web Application Starter Project + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/107A4AD4D3579374B5D483A2E9755665.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/107A4AD4D3579374B5D483A2E9755665.cache.html Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,1705 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/188E98EC3961C4A4492B17687C5EBE09.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/188E98EC3961C4A4492B17687C5EBE09.cache.html Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,1761 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5A2562EE8258A8DD2A5FD9B48DF61673.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5A2562EE8258A8DD2A5FD9B48DF61673.cache.html Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,1743 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/C561B7DAD90D0117C25580643C058581.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/C561B7DAD90D0117C25580643C058581.cache.html Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,1716 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D011C9BA42EB257713B64ED4FDE1A603.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D011C9BA42EB257713B64ED4FDE1A603.cache.html Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,1714 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FA64F587F6652439CE6EC7D73E2692EA.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FA64F587F6652439CE6EC7D73E2692EA.cache.html Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,1726 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='107A4AD4D3579374B5D483A2E9755665',Pb='188E98EC3961C4A4492B17687C5EBE09',Qb='5A2562EE8258A8DD2A5FD9B48DF61673',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.min.js Tue Sep 20 03:16:23 2011 (r934) @@ -0,0 +1,115 @@ +// tmjs, version 0.4.0 +// http://github.com/jansc/tmjs +// Copyright (c) 2010 Jan Schreiber +// Licensed under the MIT-License. +var TM,TopicMapSystemFactory; +TM=function(){var n,C,h,g,e,f,i,l,m,o,t,u,p,D,x,A,B,v,y,w,z,O,E,J,H,s,q,P;Function.prototype.swiss=function(a){var b,c;for(b=1;b0?c.type2associations.put(k.getId(),d):c.type2associations.remove(k.getId());break;case e.REMOVE_NAME:k=j.getType();d=c.type2names.get(k.getId());d.remove(j.getId());d.length>0?c.type2names.put(k.getId(),d):c.type2names.remove(k.getId());break;case e.REMOVE_OCCURRENCE:k= +j.getType();d=c.type2occurrences.get(k.getId());d.remove(j.getId());d.length>0?c.type2occurrences.put(k.getId(),d):c.type2occurrences.remove(k.getId());break;case e.REMOVE_ROLE:k=j.getType();d=c.type2roles.get(k.getId());d.remove(j.getId());d.length>0?c.type2roles.put(k.getId(),d):c.type2roles.remove(k.getId());break;case e.REMOVE_TOPIC:k=j.getTypes();for(r=0;r0?c.type2associations.put(k.old.getId(),d):c.type2associations.remove(k.old.getId())}d=c.type2associations.get(k.type.getId());if(typeof d==="undefined")d=[];d.push(j);c.type2associations.put(k.type.getId(),d)}else if(j.isName()){if(d=c.type2names.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2names.put(k.old.getId(),d):c.type2names.remove(k.old.getId())}d=c.type2names.get(k.type.getId());if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2names.put(k.type.getId(), +d)}else if(j.isOccurrence()){if(d=c.type2occurrences.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2occurrences.put(k.old.getId(),d):c.type2occurrences.remove(k.old.getId())}d=c.type2occurrences.get(k.type.getId());if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2occurrences.put(k.type.getId(),d)}else if(j.isRole()){if(d=c.type2roles.get(k.old.getId())){d.remove(j.getId());d.length>0?c.type2roles.put(k.old.getId(),d):c.type2roles.remove(k.old.getId())}d=c.type2roles.get(k.type.getId()); +if(typeof d==="undefined")d=new n;d.put(j.getId(),j);c.type2roles.put(k.type.getId(),d)}break}};a.addAssociationEvent.registerHandler(b);a.addNameEvent.registerHandler(b);a.addOccurrenceEvent.registerHandler(b);a.addRoleEvent.registerHandler(b);a.addTopicEvent.registerHandler(b);a.addTypeEvent.registerHandler(b);a.removeAssociationEvent.registerHandler(b);a.removeNameEvent.registerHandler(b);a.removeOccurrenceEvent.registerHandler(b);a.removeRoleEvent.registerHandler(b);a.removeTopicEvent.registerHandler(b); +a.removeTypeEvent.registerHandler(b);a.setTypeEvent.registerHandler(b)};y.swiss(l,"close","isAutoUpdated","isOpen","open","reindex");y.prototype.getAssociations=function(a){a=this.type2associations.get(a.getId());if(!a)return[];return a};y.prototype.getAssociationTypes=function(){var a=[],b=this.type2associations.keys(),c;for(c=0;c0||j.getReifier()!==null||j.getItemIdentifiers().length>0)){k=j.getRoles();if(k.length===2){if(k[0].getType().equals(c)&&k[1].getType().equals(d))k[1].getPlayer().addType(k[0].getPlayer());else if(k[1].getType().equals(c)&&k[0].getType().equals(d))k[0].getPlayer().addType(k[1].getPlayer());else continue;j.remove()}}}}}};return{TopicMapSystemFactory:TopicMapSystemFactory, +XSD:C,TMDM:h,Hash:n,Version:"0.4.0"}}();TopicMapSystemFactory=TM.TopicMapSystemFactory;if(typeof exports==="object"&&exports!==null){exports.TopicMapSystemFactory=TopicMapSystemFactory;exports.TM=TM} +TM.JTM=function(){var n,C;n=function(h){var g=this;this.tm=h;this.version=null;this.prefixes={};this.defaultDatatype=this.tm.createLocator(TM.XSD.string);this.curieToLocator=function(e){var f,i;if(g.version==="1.1"&&e.substr(0,1)==="["){if(e.substr(e.length-1,1)!=="]")throw{name:"InvalidFormat",message:"Invaild CURIE: missing tailing bracket"};e=e.substr(1,e.length-2);i=e.indexOf(":");if(i!==-1){f=e.substr(0,i);if(g.prefixes[f])return e=g.prefixes[f]+e.substr(i+1,e.length-1);else throw{name:"InvalidFormat", +message:"Missing prefix declaration: "+f};}else throw{name:"InvalidFormat",message:"Invaild CURIE: missing colon"};}return e};this.getTopicByReference=function(e){if(typeof e==="undefined"||e===null)return null;switch(e.substr(0,3)){case "si:":return this.tm.createTopicBySubjectIdentifier(this.tm.createLocator(this.curieToLocator(e.substr(3))));case "sl:":return this.tm.createTopicBySubjectLocator(this.tm.createLocator(this.curieToLocator(e.substr(3))));case "ii:":return this.tm.createTopicByItemIdentifier(this.tm.createLocator(this.curieToLocator(e.substr(3))))}throw{name:"InvalidFormat", +message:"Invaild topic reference '"+e+"'"};}};n.prototype.fromString=function(h){return this.fromObject(JSON.parse(h))};n.prototype.fromObject=function(h,g){g=g||null;if(h.version!=="1.0"&&h.version!=="1.1")throw{name:"InvalidFormat",message:"Unknown version of JTM: "+h.version};this.version=h.version;if(h.version==="1.1"&&h.prefixes){if((this.prefixes=h.prefixes)&&h.prefixes.xsd&&h.prefixes.xsd!=="http://www.w3.org/2001/XMLSchema#")throw{name:"InvalidFormat",message:'The XSD prefix MUST have the value "http://www.w3.org/2001/XMLSchema#"'}; +}else if(h.prefixes)throw{name:"InvalidFormat",message:"Prefixes are invalid in JTM 1.0: "+h.version};if(!this.prefixes.xsd)this.prefixes.xsd="http://www.w3.org/2001/XMLSchema#";if(!h.item_type)throw{name:"InvalidFormat",message:"Missing item_type"};switch(h.item_type.toLowerCase()){case "topicmap":h=this.parseTopicMap(h);break;case "topic":h=this.parseTopic(h);break;case "name":h=this.parseName(g,h);break;case "variant":h=this.parseVariant(g,h);break;case "occurrence":h=this.parseOccurrence(g,h); +break;case "association":h=this.parseAssociation(h);break;case "role":h=this.parseRole(g,h);break;default:throw{name:"InvalidFormat",message:"Unknown item_type property"};}return h};n.prototype.parseParentAsTopic=function(h){var g=null,e,f;if(h.parent){if(!(h.parent instanceof Array)||h.parent.length===0)throw{name:"InvalidFormat",message:"Missing parent topic reference in occurrence"};}else g=this.tm.createTopic();if(h.parent)for(f=0;f0)return"si:"+e(i[0].getReference());i=f.getSubjectLocators();if(i.length>0)return"sl:"+e(i[0].getReference());i=f.getItemIdentifiers();if(i.length>0)return"ii:"+e(i[0].getReference())};this.exportIdentifiers= +function(f,i,l){var m,o=i.length;if(o>0){f[l]=[];for(m=0;m0){f.scope=[];for(i=0;i0){o.names=[];for(l=0;l0){o.occurrences= +[];for(l=0;l0){o.instance_of=[];for(l=0;l0){m.variants=[];for(i=0;i Author: lgiessmann Date: Tue Sep 20 03:19:01 2011 New Revision: 935 Log: gdl-frontend: removed temporary files Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.html~ From lgiessmann at common-lisp.net Tue Sep 20 10:29:49 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 03:29:49 -0700 Subject: [isidorus-cvs] r936 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base button isidorus Message-ID: Author: lgiessmann Date: Tue Sep 20 03:29:48 2011 New Revision: 936 Log: gdl-frontend: Widgets: changed the static method for registering button-click-handlers on the GdlPanel to a non-static method Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Tue Sep 20 03:19:01 2011 (r935) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Tue Sep 20 03:29:48 2011 (r936) @@ -55,7 +55,7 @@ // contains all callbacks that are used as click handlers and the corresponding // html element id of the button element - private static ArrayList>> buttonCallbacks = new ArrayList>>(); + private ArrayList>> buttonCallbacks = new ArrayList>>(); // some constructors @@ -86,23 +86,23 @@ } - public static ArrayList getClickHandlers(String id){ - for (Pair> item : GdlPanel.buttonCallbacks) + public ArrayList getClickHandlers(String id){ + for (Pair> item : this.buttonCallbacks) if(item.getFirst().equals(id)) return item.getSecond(); return new ArrayList(); } - public static void addClickHandler(String id, ClickHandler handler) throws ExecutionException { + public void addClickHandler(String id, ClickHandler handler) throws ExecutionException { if(id == null && handler == null) return; if(id == null || handler == null) throw new ExecutionException("id and handler must be set, but are: " + id + ", " + handler); - ArrayList item = GdlPanel.getClickHandlers(id); + ArrayList item = this.getClickHandlers(id); if(item.size() == 0){ ArrayList handlers = new ArrayList(); handlers.add(handler); - GdlPanel.buttonCallbacks.add(new Pair>(id, handlers)); + this.buttonCallbacks.add(new Pair>(id, handlers)); } else{ item.add(handler); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 20 03:19:01 2011 (r935) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 20 03:29:48 2011 (r936) @@ -42,7 +42,9 @@ //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-env-1", TopicIdentifierTypes.SubjectIdentifier); //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-hash-2", TopicIdentifierTypes.SubjectIdentifier); //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/hash-object/Test Environment 1/test1", TopicIdentifierTypes.SubjectIdentifier); - GdlPanel.addClickHandler("hash_object_reset_button_id", new ClickHandler() { + gdlPanel = new GdlPanel(null, requestedTopicsToCreate); + + gdlPanel.addClickHandler("hash_object_reset_button_id", new ClickHandler() { @Override public void onClick(ClickEvent event) { Element elem = DOM.getElementById("hash_object_text_key_id__GDL_0"); @@ -52,7 +54,6 @@ } }); - gdlPanel = new GdlPanel(null, requestedTopicsToCreate); mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback()); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java Tue Sep 20 03:19:01 2011 (r935) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java Tue Sep 20 03:29:48 2011 (r936) @@ -7,7 +7,6 @@ import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Occurrence; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; -import us.isidor.gdl.anaToMia.Widgets.base.GdlPanel; import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject; import us.isidor.gdl.anaToMia.Widgets.base.PSIs; import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; @@ -53,7 +52,7 @@ protected void setClickHandlers() throws InvalidGdlSchemaException{ - ArrayList handlers = GdlPanel.getClickHandlers(this.getId()); + ArrayList handlers = this.getRoot().getClickHandlers(this.getId()); if(handlers == null || this.subElements.size() == 0) return; for (ClickHandler handler : handlers) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 20 03:19:01 2011 (r935) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 20 03:29:48 2011 (r936) @@ -52,7 +52,6 @@ this.createNewButton.addStyleName(this.CREATE_NEW_BUTTON_STYLE_NAME); DOM.setStyleAttribute(this.createNewButton.getElement(), "marginBottom", "1em"); try{ - GdlPanel.addClickHandler("hash_object_reset_button_id", new ResetClickHandler()); this.psiContainer = new PsiContainer(new PsiClickHandler()); this.createNewButton.addClickHandler(new CreateNewClickHandler()); }catch(Exception e){ @@ -142,6 +141,7 @@ ArrayList> topicsToCreate = new ArrayList>(); topicsToCreate.add(new Pair(GdlWebPage.this.topicTypePsi, TopicIdentifierTypes.SubjectIdentifier)); GdlWebPage.this.gdlPanel = new GdlPanel(null, topicsToCreate, 362, 160); + GdlWebPage.this.gdlPanel.addClickHandler("hash_object_reset_button_id", new ResetClickHandler()); GdlWebPage.this.mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); @@ -167,6 +167,7 @@ try{ if(GdlWebPage.this.gdlPanel != null) GdlWebPage.this.gdlPanel.removeFromParent(); GdlWebPage.this.gdlPanel = new GdlPanel(new Pair(source.getText(), TopicIdentifierTypes.SubjectIdentifier), null, 362, 160); + GdlWebPage.this.gdlPanel.addClickHandler("hash_object_reset_button_id", new ResetClickHandler()); GdlWebPage.this.mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); From lgiessmann at common-lisp.net Tue Sep 20 10:33:24 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 03:33:24 -0700 Subject: [isidorus-cvs] r937 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Tue Sep 20 03:33:23 2011 New Revision: 937 Log: Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/107A4AD4D3579374B5D483A2E9755665.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/188E98EC3961C4A4492B17687C5EBE09.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/5A2562EE8258A8DD2A5FD9B48DF61673.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/C561B7DAD90D0117C25580643C058581.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D011C9BA42EB257713B64ED4FDE1A603.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FA64F587F6652439CE6EC7D73E2692EA.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Tue Sep 20 11:43:24 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 04:43:24 -0700 Subject: [isidorus-cvs] r938 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/isidorus war/gdl_widgets Message-ID: Author: lgiessmann Date: Tue Sep 20 04:43:24 2011 New Revision: 938 Log: Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Tue Sep 20 03:33:23 2011 (r937) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Tue Sep 20 04:43:24 2011 (r938) @@ -1,6 +1,7 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; +import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -13,10 +14,10 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; - public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; - //public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; - public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; - //public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; + //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + //public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; + //public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Sep 20 03:33:23 2011 (r937) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Sep 20 04:43:24 2011 (r938) @@ -4472,215 +4472,6 @@ }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Delete-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" - } - ] - }, - { - "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, "scope":null, @@ -4984,448 +4775,220 @@ }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button-position]" + "player":"si:[pref_1:hash-object-editor-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-editor-delete-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_1:hash-object-editor-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" + "player":"si:[pref_1:hash-object-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-editor-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-position]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" + "player":"si:[pref_1:hash-object-editor-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-position]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:cursor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:descriptor]", "reifier":null, "player":"si:[pref_1:hash-object-editor-text-label-value-position]" }, @@ -6045,552 +5608,531 @@ }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button-position]" + "player":"si:[pref_1:hash-object-creator-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-reset-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_1:hash-object-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Delete-Button]" + "player":"si:[pref_1:hash-object-creator-reset-button-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + "player":"si:[pref_1:hash-object-creator-reset-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" + "player":"si:[pref_1:hash-object-creator-text-value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + "player":"si:[pref_1:hash-object-creator-text-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_1:hash-object-creator-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-position]" + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + "player":"si:[pref_1:hash-object-creator-text-key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-position]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-position]" + "player":"si:[pref_1:hash-object-creator-text-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Editor-Association-View]" + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:display-by]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" } ] }, @@ -6603,19 +6145,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" } ] }, @@ -6628,95 +6170,51 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" } ] }, @@ -6727,507 +6225,78 @@ "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:hidden-value]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" }, { "item_identifiers":null, "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" - }, - { - "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:display-by]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ @@ -7238,2833 +6307,249 @@ }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Commit-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:List-Box]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:TM-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:TM-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Association-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Topic-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Role-Player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Commit-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Role-Player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:List-Box]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Role-Player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Schema]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:right]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:left]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:top]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:position-style]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:font-size]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:readonly]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:fixed]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:literal-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:display-by]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:view-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:name-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:id]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:color]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:background-color]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:border-style]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:pointer]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:height]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:padding-left]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:width]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:schema-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:name-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_2:Schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:ancestor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:tm-construct]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:tm-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:containee]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:container]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:value-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:tm-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:association-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:topic-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:contains]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_1:has-environment-creator-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_1:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_1:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:hidden-value]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:hash-hash-type-hidden-value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_1:hash-hash-type-default-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:hidden-value]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_1:hash-hash-type-hidden-value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_1:hash-hash-type-hidden-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-value]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_1:hash-object-creator-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_1:hash-object-creator-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_5:Hash-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" } ] }, @@ -10077,13 +6562,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Action-Button]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:Commit-Button]" } ] }, @@ -10096,13 +6581,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Button]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Action-Button]" } ] }, @@ -10115,13 +6600,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Text-Object]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Button]" } ] }, @@ -10134,13 +6619,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Value-Group]" } ] }, @@ -10153,13 +6638,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_2:Position]" } ] }, @@ -10172,1134 +6657,1134 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Text-Object]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_2:Text-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:List-Box]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_2:Visible-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Text-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_2:Default-Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:Default-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_2:Default-Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_2:TM-Single-Type-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:TM-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_2:TM-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:Hidden-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_2:Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Descriptor]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-type-regular-expression-constraint]" + "player":"si:[pref_2:Association-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Creator-Association-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-type-constraint]" + "player":"si:[pref_2:View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Association-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" + "player":"si:[pref_2:Default-Topic-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_2:Default-Creator-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" + "player":"si:[pref_2:Topic-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Default-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_2:View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" + "player":"si:[pref_2:Visible-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_2:View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Visible-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Role-Player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_4:has-hash-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_4:has-hash-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_5:Service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:name-type]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:supertype-subtype]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:subtype]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:supertype]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:hash-value-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-role]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-topic-type]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-statement]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:hash-key-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:environment-name-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:datatype]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:regexp]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:environment-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:card-max]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:hash-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:card-min]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:name-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-name-constraint]" } ] } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 03:33:23 2011 (r937) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 04:43:24 2011 (r938) @@ -4472,215 +4472,6 @@ }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Delete-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" - } - ] - }, - { - "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, "scope":null, @@ -4984,448 +4775,220 @@ }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button-position]" + "player":"si:[pref_1:hash-object-editor-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-editor-delete-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_1:hash-object-editor-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" + "player":"si:[pref_1:hash-object-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-editor-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-position]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value]" + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" + "player":"si:[pref_1:hash-object-editor-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-position]" + "player":"si:[pref_1:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:cursor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:descriptor]", "reifier":null, "player":"si:[pref_1:hash-object-editor-text-label-value-position]" }, @@ -6045,552 +5608,531 @@ }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button-position]" + "player":"si:[pref_1:hash-object-creator-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-reset-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_1:hash-object-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Delete-Button]" + "player":"si:[pref_1:hash-object-creator-reset-button-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + "player":"si:[pref_1:hash-object-creator-reset-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" + "player":"si:[pref_1:hash-object-creator-text-value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + "player":"si:[pref_1:hash-object-creator-text-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_1:hash-object-creator-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-position]" + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + "player":"si:[pref_1:hash-object-creator-text-key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-position]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-position]" + "player":"si:[pref_1:hash-object-creator-text-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_1:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_1:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_2:Editor-Association-View]" + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_1:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:display-by]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" } ] }, @@ -6603,19 +6145,19 @@ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" }, { "item_identifiers":null, "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" } ] }, @@ -6628,95 +6170,51 @@ "item_identifiers":null, "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" } ] }, @@ -6727,507 +6225,78 @@ "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_3:hidden-value]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" }, { "item_identifiers":null, "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" - }, - { - "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_1:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:display-by]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_3:association-view-binding]", "reifier":null, "scope":null, "roles":[{ @@ -7238,2833 +6307,249 @@ }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Commit-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:List-Box]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:TM-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:TM-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Association-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Topic-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Role-Player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Commit-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Role-Player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:List-Box]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Role-Player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_2:Schema]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:right]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:left]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:top]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:position-style]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:font-size]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:readonly]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:fixed]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:literal-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:display-by]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:view-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:name-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:id]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:color]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:background-color]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:border-style]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:pointer]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:height]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:padding-left]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:width]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:occurrence-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:schema-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:name-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_2:Schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:topic-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:ancestor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:tm-construct]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:tm-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:containee]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:container]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:role-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:value-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:tm-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:association-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:topic-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type-instance]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:instance]", - "reifier":null, - "player":"si:[pref_3:contains]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:type]", - "reifier":null, - "player":"si:[pref_7:association-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_1:has-environment-creator-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_1:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:value-group]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:ancestor]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_1:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:hidden-value]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:hash-hash-type-hidden-value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:value]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_1:hash-hash-type-default-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:hidden-value]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_1:hash-hash-type-hidden-value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_1:hash-hash-type-hidden-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-value]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_1:hash-object-creator-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:descriptor]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_1:hash-object-creator-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:tm-construct]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_5:Hash-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_3:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_3:container]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_1:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_3:containee]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_1:hash-object-default-creator-topic-view]" } ] }, @@ -10077,13 +6562,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Action-Button]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:Commit-Button]" } ] }, @@ -10096,13 +6581,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Button]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Action-Button]" } ] }, @@ -10115,13 +6600,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Text-Object]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Button]" } ] }, @@ -10134,13 +6619,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Value-Group]" } ] }, @@ -10153,13 +6638,13 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_2:Position]" } ] }, @@ -10172,1134 +6657,1134 @@ "item_identifiers":null, "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:Text-Object]" }, { "item_identifiers":null, "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_2:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_2:Text-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:List-Box]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_2:Visible-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Text-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_2:Default-Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:Default-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_2:Default-Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_2:TM-Single-Type-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:TM-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_2:TM-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:Hidden-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_2:Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:Descriptor]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-type-regular-expression-constraint]" + "player":"si:[pref_2:Association-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Creator-Association-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-type-constraint]" + "player":"si:[pref_2:View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Association-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" + "player":"si:[pref_2:Default-Topic-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_2:Default-Creator-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" + "player":"si:[pref_2:Topic-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Default-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_2:View]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" + "player":"si:[pref_2:Visible-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_2:View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:Visible-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_2:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:Role-Player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_4:has-hash-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_4:has-hash-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_4:service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_5:Service]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_4:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_4:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:name-type]" + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_4:hash]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_4:environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:supertype-subtype]" + "player":"si:[pref_4:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:subtype]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_6:supertype]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:hash-value-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-role]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-topic-type]" + "player":"si:[pref_4:value]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained-statement]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_4:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constrained]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:hash-key-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_4:key]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:occurrence-datatype-constraint]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_4:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_4:environment-name-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_4:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:datatype]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:regexp]" + "player":"si:[pref_5:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:environment-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_7:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_7:constrained]", "reifier":null, - "player":"si:[pref_7:card-max]" + "player":"si:[pref_5:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_7:constraint]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_4:hash-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:card-min]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_7:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:association-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:role-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:occurrence-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:name-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:subject-identifier-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:type-instance]", + "type":"si:[pref_6:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:instance]", + "type":"si:[pref_6:supertype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:type]", + "type":"si:[pref_6:subtype]", "reifier":null, - "player":"si:[pref_7:topic-type]" + "player":"si:[pref_7:topic-name-constraint]" } ] } From lgiessmann at common-lisp.net Tue Sep 20 12:05:26 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 05:05:26 -0700 Subject: [isidorus-cvs] r939 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Tue Sep 20 05:05:25 2011 New Revision: 939 Log: gdl-frontend: Widgets: updated the schema files Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Sep 20 04:43:24 2011 (r938) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Tue Sep 20 05:05:25 2011 (r939) @@ -14,1984 +14,1791 @@ "item_identifiers":["[pref_8:services-tm]" ], "topics":[{ - "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + "subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-delete-button]" + "subject_identifiers":["[pref_4:has-config-configuration-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_delete_button_id", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" + "subject_identifiers":["[pref_4:has-config-parameter-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-position]" + "subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"70px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text]" + "subject_identifiers":["[pref_4:has-parameter-service-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_name_text_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"240px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value]" + "subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" + "subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-position]" + "subject_identifiers":["[pref_4:parameter-config-data-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label]" + "subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-form-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"60px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-default-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-view-binding]" + "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" + "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_editor_topic_view_id", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" + "subject_identifiers":["[pref_4:parameter-config-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:subject-identifier-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-commit-button]" + "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" + "subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-position]" + "subject_identifiers":["[pref_4:parameter-crud-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"70px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text]" + "subject_identifiers":["[pref_4:parameter-multiple-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_name_text_id", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"240px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-mime-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value]" + "subject_identifiers":["[pref_4:parameter-param-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" + "subject_identifiers":["[pref_4:parameter-param-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + "subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label]" + "subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-id-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"60px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-view-binding]" + "subject_identifiers":["[pref_4:parameter-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:subject-identifier-constraint]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_creator_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter/.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_3:cursor]" + "subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" + "subject_identifiers":["[pref_4:service-tg-approved-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" + "subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"editor_hash_object_commit_button_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-textgrid-url-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-identifier-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" + "subject_identifiers":["[pref_4:service-identifier-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-owner-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" + "subject_identifiers":["[pref_4:service-owner-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_delete_button_id", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-use-target-ns-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" + "subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" + "subject_identifiers":["[pref_4:service-target-namespace-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value]" + "subject_identifiers":["[pref_4:service-description-location-body-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-inline-description-location-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" + "subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" + "subject_identifiers":["[pref_4:service-description-location-uri-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + "subject_identifiers":["[pref_4:service-keywords-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-keywords-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" + "subject_identifiers":["[pref_4:service-description-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-service-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-service-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" + "subject_identifiers":["[pref_4:service-operation-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" + "subject_identifiers":["[pref_4:service-operation-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key]" + "subject_identifiers":["[pref_4:service-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-name-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/service/.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" + "subject_identifiers":["[pref_4:data]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" + "subject_identifiers":["[pref_4:form]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + "subject_identifiers":["[pref_4:default]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" + "subject_identifiers":["[pref_4:parameter-config-id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" + "subject_identifiers":["[pref_4:parameter-config-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" + "subject_identifiers":["[pref_4:example-config]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env]" + "subject_identifiers":["[pref_4:needs-b64-encoding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" + "subject_identifiers":["[pref_4:crud]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:has-environment-editor-association-view]" + "subject_identifiers":["[pref_4:multiple]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Editor-Association-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "instance_of":["si:[pref_7:occurrence-type]" ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_editor_association_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - } - ] + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" + "subject_identifiers":["[pref_4:mime-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" + "subject_identifiers":["[pref_4:param]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" + "subject_identifiers":["[pref_4:parameter-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" + "subject_identifiers":["[pref_4:parameter-id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" + "subject_identifiers":["[pref_4:parameter-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" + "subject_identifiers":["[pref_4:tg-approved]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + "instance_of":["si:[pref_7:occurrence-type]" ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:textgrid-url]" ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - } - ] + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_2:Delete-Button]" + "subject_identifiers":["[pref_4:identifier]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Editor-Association-View]" + "subject_identifiers":["[pref_4:owner]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" + "subject_identifiers":["[pref_4:use-target-ns]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + "subject_identifiers":["[pref_4:target-namespace]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" + "subject_identifiers":["[pref_4:description-location-body]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"creator_hash_object_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + "subject_identifiers":["[pref_4:inline-description-location]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"reset", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + "subject_identifiers":["[pref_4:description-location-uri]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + "subject_identifiers":["[pref_4:keywords]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" + "subject_identifiers":["[pref_4:description]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Action-Button]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_reset_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + "subject_identifiers":["[pref_4:service-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + "subject_identifiers":["[pref_4:operation]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + "subject_identifiers":["[pref_4:service-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + "subject_identifiers":["[pref_4:configuration]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + "subject_identifiers":["[pref_4:parameter]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + "subject_identifiers":["[pref_4:has-config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Parameter-Config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2010,7 +1817,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"70px", + "value":"65px", "scope":null, "reifier":null }, @@ -2025,26 +1832,26 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + "subject_identifiers":["[pref_1:environment-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_2:Delete-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", + "value":"environment_delete_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_3:height]", + "value":"30px", "scope":null, "reifier":null }, @@ -2052,38 +1859,22 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "value":"80px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2093,7 +1884,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + "subject_identifiers":["[pref_1:environment-editor-name-text-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2112,7 +1903,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"40px", + "value":"10px", "scope":null, "reifier":null }, @@ -2120,14 +1911,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"120px", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + "subject_identifiers":["[pref_1:environment-editor-name-text]" ], "subject_locators":null, "item_identifiers":null, @@ -2138,7 +1929,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", + "value":"environment_name_text_id", "scope":null, "reifier":null }, @@ -2146,7 +1937,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:readonly]", - "value":"false", + "value":"true", "scope":null, "reifier":null }, @@ -2154,14 +1945,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"230px", + "value":"240px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", + "type":"si:[pref_3:cursor]", "value":"text", "scope":null, "reifier":null @@ -2169,14 +1960,6 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:padding-left]", "value":"2px", "scope":null, @@ -2185,7 +1968,7 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + "subject_identifiers":["[pref_1:environment-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, @@ -2196,14 +1979,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:literal-value]", - "value":"key:", + "value":"name:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2213,7 +1996,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + "subject_identifiers":["[pref_1:environment-editor-text-label-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2232,7 +2015,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"40px", + "value":"10px", "scope":null, "reifier":null }, @@ -2247,7 +2030,7 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + "subject_identifiers":["[pref_1:environment-editor-text-label]" ], "subject_locators":null, "item_identifiers":null, @@ -2258,7 +2041,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", + "value":"environment_text_label_id", "scope":null, "reifier":null }, @@ -2274,7 +2057,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"100px", + "value":"60px", "scope":null, "reifier":null }, @@ -2305,113 +2088,143 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + "subject_identifiers":["[pref_1:environment-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_3:id]", + "value":"environment_default_editor_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", + "type":"si:[pref_3:width]", + "value":"322px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:List-Box]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_list_box_env_id", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_3:top]", + "value":"65px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"232px", + "type":"si:[pref_3:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + "subject_identifiers":["[pref_1:environment-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", + "type":"si:[pref_3:id]", + "value":"environment_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2421,7 +2234,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + "subject_identifiers":["[pref_1:environment-creator-name-text-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2448,14 +2261,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"10px", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" + "subject_identifiers":["[pref_1:environment-creator-name-text]" ], "subject_locators":null, "item_identifiers":null, @@ -2466,7 +2279,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", + "value":"environment_name_text_id", "scope":null, "reifier":null }, @@ -2474,7 +2287,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:readonly]", - "value":"true", + "value":"false", "scope":null, "reifier":null }, @@ -2482,58 +2295,58 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "value":"240px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_3:cursor]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" + "subject_identifiers":["[pref_1:environment-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + "subject_identifiers":["[pref_1:environment-creator-text-label-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2560,33 +2373,33 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"120px", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + "subject_identifiers":["[pref_1:environment-creator-text-label]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Creator-Association-View]" + "instance_of":["si:[pref_2:Text]" ], - "names":[{ + "names":null, + "occurrences":[{ "item_identifiers":null, - "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", "scope":null, - "variants":null, "reifier":null - } - ], - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_createor_association_view_id", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, @@ -2594,42 +2407,38 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"230px", + "value":"60px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-hash-type-default-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"confserver", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + "subject_identifiers":["[pref_1:environment-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, @@ -2639,7 +2448,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" + "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, @@ -2647,7 +2456,7 @@ ], "names":[{ "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", "type":"si:[pref_3:view-name]", "scope":null, "variants":null, @@ -2658,7 +2467,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_default_creator_topic_view_id", + "value":"environment_default_creator_topic_view_id", "scope":null, "reifier":null }, @@ -2666,7 +2475,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"362px", + "value":"322px", "scope":null, "reifier":null }, @@ -2674,7 +2483,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:height]", - "value":"160px", + "value":"100px", "scope":null, "reifier":null }, @@ -2689,1433 +2498,2141 @@ ] }, { - "subject_identifiers":["[pref_1:textgrid-ui-schema]" + "subject_identifiers":["[pref_3:cursor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Schema]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", - "type":"si:[pref_3:schema-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Action-Button]" + "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Button]" + "instance_of":["si:[pref_2:Position]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Value-Group]" + "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"editor_hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:right]" + "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:left]" + "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Delete-Button]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:top]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:position-style]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Position]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Text]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:font-size]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:readonly]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Text]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:List-Box]" + "instance_of":["si:[pref_2:Position]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Text-Object]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Text]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Default-Literal-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:fixed]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Default-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Text]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:literal-value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Literal-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:TM-Single-Type-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Position]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:display-by]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:TM-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Position]" + ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Creator-Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Association-View]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" + "instance_of":["si:[pref_2:Text]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Default-Topic-View]" + "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Position]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Topic-View]" + "subject_identifiers":["[pref_1:has-environment-editor-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null + "instance_of":["si:[pref_2:Editor-Association-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_editor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:view-name]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:View]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:id]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:color]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:background-color]" + "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:border-style]" + "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" ], - "names":null, - "occurrences":null - }, + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] + }, { - "subject_identifiers":["[pref_3:pointer]" + "subject_identifiers":["[pref_2:Delete-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:height]" + "subject_identifiers":["[pref_2:Editor-Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:padding-left]" + "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:width]" + "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:hidden-value]" + "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"creator_hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Hidden-Value]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"reset", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Visible-Object]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Role-Player]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Position]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Descriptor]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:Action-Button]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_reset_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:schema-name]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Schema]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:descendant]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:ancestor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:descriptor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-construct]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:containee]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:container]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:association-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:topic-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:contains]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"false", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"230px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:pointer]", + "value":"text", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:literal-value]", + "value":"value:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"70px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_3:width]", + "value":"100px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:hash-value-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"40px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"false", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:hash-hash-type-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-psi-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "type":"si:[pref_3:width]", + "value":"100px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment-name-constraint]" + "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" + "instance_of":["si:[pref_2:Role-Player]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment-psi-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:List-Box]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"hash_object_text_list_box_env_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "type":"si:[pref_3:width]", + "value":"232px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:service]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:has-environment]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:has-hash]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:environment-name]" + "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Role-Player]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:value]" + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:key]" + "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:hash-type]" + "subject_identifiers":["[pref_1:has-environment-creator-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Environment]" + "instance_of":["si:[pref_2:Creator-Association-View]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "names":[{ + "item_identifiers":null, + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_createor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_5:Hash-Object]" + "subject_identifiers":["[pref_1:hash-hash-type-default-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"confserver", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_5:Service]" + "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_6:supertype-subtype]" + "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_6:subtype]" + "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" ], - "names":null, - "occurrences":null + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_creator_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_6:supertype]" + "subject_identifiers":["[pref_1:textgrid-ui-schema]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:Schema]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_3:schema-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constrained-role]" + "subject_identifiers":["[pref_2:Commit-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constrained-topic-type]" + "subject_identifiers":["[pref_2:Action-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constrained-statement]" + "subject_identifiers":["[pref_2:Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value-Group]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constrained]" + "subject_identifiers":["[pref_3:right]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:association-role-constraint]" + "subject_identifiers":["[pref_3:left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-role-constraint]" + "subject_identifiers":["[pref_3:top]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" + "subject_identifiers":["[pref_3:position-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:regular-expression-constraint]" + "subject_identifiers":["[pref_2:Position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-occurrence-constraint]" + "subject_identifiers":["[pref_3:font-size]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-name-constraint]" + "subject_identifiers":["[pref_3:readonly]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:subject-identifier-constraint]" + "subject_identifiers":["[pref_2:Text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:List-Box]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constraint]" + "subject_identifiers":["[pref_2:Text-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]", - "si:[pref_7:role-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Literal-Value]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:datatype]" + "subject_identifiers":["[pref_3:fixed]" ], "subject_locators":null, "item_identifiers":null, @@ -4125,7 +4642,16 @@ "occurrences":null }, { - "subject_identifiers":["[pref_7:regexp]" + "subject_identifiers":["[pref_2:Default-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:literal-value]" ], "subject_locators":null, "item_identifiers":null, @@ -4135,17 +4661,25 @@ "occurrences":null }, { - "subject_identifiers":["[pref_7:card-max]" + "subject_identifiers":["[pref_2:Literal-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Single-Type-Value]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:card-min]" + "subject_identifiers":["[pref_3:display-by]" ], "subject_locators":null, "item_identifiers":null, @@ -4155,57 +4689,3226 @@ "occurrences":null }, { - "subject_identifiers":["[pref_7:association-type]" + "subject_identifiers":["[pref_2:TM-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:role-type]" + "subject_identifiers":["[pref_2:Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Creator-Association-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:occurrence-type]" + "subject_identifiers":["[pref_2:Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:name-type]" + "subject_identifiers":["[pref_2:Default-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Topic-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-type]" + "subject_identifiers":["[pref_3:view-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, "occurrences":null - } - ], - "associations":[{ + }, + { + "subject_identifiers":["[pref_2:View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:background-color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:border-style]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:pointer]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:height]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:padding-left]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:width]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Hidden-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Visible-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Role-Player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:schema-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descendant]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:ancestor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-construct]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:containee]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:container]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:association-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:topic-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:contains]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:environment-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Hash-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype-subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-role]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-statement]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-occurrence-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:subject-identifier-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:datatype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regexp]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-max]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-min]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:role-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:name-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + } + ], + "associations":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:configuration]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:configuration]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:data]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:data]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:form]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:form]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:default]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:default]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:needs-b64-encoding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:needs-b64-encoding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:crud]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:crud]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:multiple]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:multiple]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:mime-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:mime-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:param]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:param]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:tg-approved]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:tg-approved]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:textgrid-url]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:textgrid-url]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:identifier]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:identifier]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:owner]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:owner]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:use-target-ns]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:use-target-ns]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:target-namespace]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:target-namespace]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-body]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-body]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:inline-description-location]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:inline-description-location]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-uri]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-uri]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:keywords]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:keywords]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:operation]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:operation]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, @@ -7791,4 +11494,4 @@ ], "item_type":"topicmap", "reifier":null -} +} \ No newline at end of file Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 04:43:24 2011 (r938) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 05:05:25 2011 (r939) @@ -14,1984 +14,1791 @@ "item_identifiers":["[pref_8:services-tm]" ], "topics":[{ - "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + "subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-delete-button]" + "subject_identifiers":["[pref_4:has-config-configuration-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_delete_button_id", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" + "subject_identifiers":["[pref_4:has-config-parameter-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-position]" + "subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"70px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text]" + "subject_identifiers":["[pref_4:has-parameter-service-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_name_text_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"240px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value]" + "subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" + "subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-position]" + "subject_identifiers":["[pref_4:parameter-config-data-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label]" + "subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-form-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"60px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-default-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-view-binding]" + "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" + "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_editor_topic_view_id", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" + "subject_identifiers":["[pref_4:parameter-config-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:subject-identifier-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-commit-button]" + "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" + "subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-position]" + "subject_identifiers":["[pref_4:parameter-crud-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"70px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text]" + "subject_identifiers":["[pref_4:parameter-multiple-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_name_text_id", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"240px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-mime-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value]" + "subject_identifiers":["[pref_4:parameter-param-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" + "subject_identifiers":["[pref_4:parameter-param-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + "subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label]" + "subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-id-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"60px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-view-binding]" + "subject_identifiers":["[pref_4:parameter-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:subject-identifier-constraint]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_creator_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter/.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_3:cursor]" + "subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" + "subject_identifiers":["[pref_4:service-tg-approved-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" + "subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"editor_hash_object_commit_button_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-textgrid-url-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-identifier-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" + "subject_identifiers":["[pref_4:service-identifier-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-owner-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" + "subject_identifiers":["[pref_4:service-owner-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_delete_button_id", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-use-target-ns-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" + "subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" + "subject_identifiers":["[pref_4:service-target-namespace-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value]" + "subject_identifiers":["[pref_4:service-description-location-body-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-inline-description-location-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" + "subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" + "subject_identifiers":["[pref_4:service-description-location-uri-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + "subject_identifiers":["[pref_4:service-keywords-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-keywords-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" + "subject_identifiers":["[pref_4:service-description-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-service-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-service-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" + "subject_identifiers":["[pref_4:service-operation-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" + "subject_identifiers":["[pref_4:service-operation-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key]" + "subject_identifiers":["[pref_4:service-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-name-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:service-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/service/.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" + "subject_identifiers":["[pref_4:data]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" + "subject_identifiers":["[pref_4:form]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + "subject_identifiers":["[pref_4:default]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" + "subject_identifiers":["[pref_4:parameter-config-id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" + "subject_identifiers":["[pref_4:parameter-config-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" + "subject_identifiers":["[pref_4:example-config]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env]" + "subject_identifiers":["[pref_4:needs-b64-encoding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" + "subject_identifiers":["[pref_4:crud]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:has-environment-editor-association-view]" + "subject_identifiers":["[pref_4:multiple]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Editor-Association-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "instance_of":["si:[pref_7:occurrence-type]" ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_editor_association_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - } - ] + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" + "subject_identifiers":["[pref_4:mime-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" + "subject_identifiers":["[pref_4:param]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" + "subject_identifiers":["[pref_4:parameter-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" + "subject_identifiers":["[pref_4:parameter-id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" + "subject_identifiers":["[pref_4:parameter-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" + "subject_identifiers":["[pref_4:tg-approved]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + "instance_of":["si:[pref_7:occurrence-type]" ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:textgrid-url]" ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - } - ] + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_2:Delete-Button]" + "subject_identifiers":["[pref_4:identifier]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Editor-Association-View]" + "subject_identifiers":["[pref_4:owner]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" + "subject_identifiers":["[pref_4:use-target-ns]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + "subject_identifiers":["[pref_4:target-namespace]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" + "subject_identifiers":["[pref_4:description-location-body]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"creator_hash_object_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + "subject_identifiers":["[pref_4:inline-description-location]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"reset", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + "subject_identifiers":["[pref_4:description-location-uri]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + "subject_identifiers":["[pref_4:keywords]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" + "subject_identifiers":["[pref_4:description]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Action-Button]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_reset_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + "subject_identifiers":["[pref_4:service-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + "subject_identifiers":["[pref_4:operation]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + "subject_identifiers":["[pref_4:service-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + "subject_identifiers":["[pref_4:configuration]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + "subject_identifiers":["[pref_4:parameter]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + "subject_identifiers":["[pref_4:has-config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Parameter-Config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2010,7 +1817,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"70px", + "value":"65px", "scope":null, "reifier":null }, @@ -2025,26 +1832,26 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + "subject_identifiers":["[pref_1:environment-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_2:Delete-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", + "value":"environment_delete_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_3:height]", + "value":"30px", "scope":null, "reifier":null }, @@ -2052,38 +1859,22 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "value":"80px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2093,7 +1884,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + "subject_identifiers":["[pref_1:environment-editor-name-text-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2112,7 +1903,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"40px", + "value":"10px", "scope":null, "reifier":null }, @@ -2120,14 +1911,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"120px", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + "subject_identifiers":["[pref_1:environment-editor-name-text]" ], "subject_locators":null, "item_identifiers":null, @@ -2138,7 +1929,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", + "value":"environment_name_text_id", "scope":null, "reifier":null }, @@ -2146,7 +1937,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:readonly]", - "value":"false", + "value":"true", "scope":null, "reifier":null }, @@ -2154,14 +1945,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"230px", + "value":"240px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", + "type":"si:[pref_3:cursor]", "value":"text", "scope":null, "reifier":null @@ -2169,14 +1960,6 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:padding-left]", "value":"2px", "scope":null, @@ -2185,7 +1968,7 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + "subject_identifiers":["[pref_1:environment-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, @@ -2196,14 +1979,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:literal-value]", - "value":"key:", + "value":"name:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2213,7 +1996,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + "subject_identifiers":["[pref_1:environment-editor-text-label-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2232,7 +2015,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"40px", + "value":"10px", "scope":null, "reifier":null }, @@ -2247,7 +2030,7 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + "subject_identifiers":["[pref_1:environment-editor-text-label]" ], "subject_locators":null, "item_identifiers":null, @@ -2258,7 +2041,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", + "value":"environment_text_label_id", "scope":null, "reifier":null }, @@ -2274,7 +2057,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"100px", + "value":"60px", "scope":null, "reifier":null }, @@ -2305,113 +2088,143 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + "subject_identifiers":["[pref_1:environment-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_3:id]", + "value":"environment_default_editor_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", + "type":"si:[pref_3:width]", + "value":"322px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:List-Box]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_list_box_env_id", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_3:top]", + "value":"65px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"232px", + "type":"si:[pref_3:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + "subject_identifiers":["[pref_1:environment-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", + "type":"si:[pref_3:id]", + "value":"environment_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2421,7 +2234,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + "subject_identifiers":["[pref_1:environment-creator-name-text-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2448,14 +2261,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"10px", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" + "subject_identifiers":["[pref_1:environment-creator-name-text]" ], "subject_locators":null, "item_identifiers":null, @@ -2466,7 +2279,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", + "value":"environment_name_text_id", "scope":null, "reifier":null }, @@ -2474,7 +2287,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:readonly]", - "value":"true", + "value":"false", "scope":null, "reifier":null }, @@ -2482,58 +2295,58 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "value":"240px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_3:cursor]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" + "subject_identifiers":["[pref_1:environment-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + "subject_identifiers":["[pref_1:environment-creator-text-label-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2560,33 +2373,33 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"120px", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + "subject_identifiers":["[pref_1:environment-creator-text-label]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Creator-Association-View]" + "instance_of":["si:[pref_2:Text]" ], - "names":[{ + "names":null, + "occurrences":[{ "item_identifiers":null, - "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", "scope":null, - "variants":null, "reifier":null - } - ], - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_createor_association_view_id", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, @@ -2594,42 +2407,38 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"230px", + "value":"60px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-hash-type-default-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"confserver", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + "subject_identifiers":["[pref_1:environment-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, @@ -2639,7 +2448,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" + "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, @@ -2647,7 +2456,7 @@ ], "names":[{ "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", "type":"si:[pref_3:view-name]", "scope":null, "variants":null, @@ -2658,7 +2467,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"hash_object_default_creator_topic_view_id", + "value":"environment_default_creator_topic_view_id", "scope":null, "reifier":null }, @@ -2666,7 +2475,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"362px", + "value":"322px", "scope":null, "reifier":null }, @@ -2674,7 +2483,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:height]", - "value":"160px", + "value":"100px", "scope":null, "reifier":null }, @@ -2689,1433 +2498,2141 @@ ] }, { - "subject_identifiers":["[pref_1:textgrid-ui-schema]" + "subject_identifiers":["[pref_3:cursor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Schema]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", - "type":"si:[pref_3:schema-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Action-Button]" + "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Button]" + "instance_of":["si:[pref_2:Position]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Value-Group]" + "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"editor_hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:right]" + "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:left]" + "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Delete-Button]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:top]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:position-style]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Position]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Text]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:font-size]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:readonly]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Text]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:List-Box]" + "instance_of":["si:[pref_2:Position]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Text-Object]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Text]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Default-Literal-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:fixed]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Default-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Text]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:literal-value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Literal-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:TM-Single-Type-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Position]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:display-by]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:TM-Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Value]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Position]" + ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Creator-Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Association-View]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" + "instance_of":["si:[pref_2:Text]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Default-Topic-View]" + "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Position]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Topic-View]" + "subject_identifiers":["[pref_1:has-environment-editor-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null + "instance_of":["si:[pref_2:Editor-Association-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_editor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:view-name]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:View]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:id]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:color]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:background-color]" + "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:border-style]" + "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" ], - "names":null, - "occurrences":null - }, + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] + }, { - "subject_identifiers":["[pref_3:pointer]" + "subject_identifiers":["[pref_2:Delete-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:height]" + "subject_identifiers":["[pref_2:Editor-Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:padding-left]" + "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:width]" + "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:hidden-value]" + "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"creator_hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Hidden-Value]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"reset", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Visible-Object]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Value-Group]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Role-Player]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:Position]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Descriptor]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:Action-Button]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_reset_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:schema-name]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Schema]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:descendant]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:ancestor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:descriptor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-construct]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:containee]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:container]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:association-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:topic-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:contains]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"false", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"230px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:pointer]", + "value":"text", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:literal-value]", + "value":"value:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"70px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_3:width]", + "value":"100px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:hash-value-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"40px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"false", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:hash-hash-type-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-psi-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "type":"si:[pref_3:width]", + "value":"100px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment-name-constraint]" + "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" + "instance_of":["si:[pref_2:Role-Player]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment-psi-constraint]" + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:List-Box]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"hash_object_text_list_box_env_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "type":"si:[pref_3:width]", + "value":"232px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:service]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:has-environment]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:has-hash]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:environment-name]" + "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Role-Player]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:value]" + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:key]" + "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:hash-type]" + "subject_identifiers":["[pref_1:has-environment-creator-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Environment]" + "instance_of":["si:[pref_2:Creator-Association-View]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "names":[{ + "item_identifiers":null, + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_createor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_5:Hash-Object]" + "subject_identifiers":["[pref_1:hash-hash-type-default-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"confserver", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_5:Service]" + "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_6:supertype-subtype]" + "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_6:subtype]" + "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" ], - "names":null, - "occurrences":null + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_creator_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_6:supertype]" + "subject_identifiers":["[pref_1:textgrid-ui-schema]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:Schema]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_3:schema-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constrained-role]" + "subject_identifiers":["[pref_2:Commit-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constrained-topic-type]" + "subject_identifiers":["[pref_2:Action-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constrained-statement]" + "subject_identifiers":["[pref_2:Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value-Group]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constrained]" + "subject_identifiers":["[pref_3:right]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:association-role-constraint]" + "subject_identifiers":["[pref_3:left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-role-constraint]" + "subject_identifiers":["[pref_3:top]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" + "subject_identifiers":["[pref_3:position-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:regular-expression-constraint]" + "subject_identifiers":["[pref_2:Position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-occurrence-constraint]" + "subject_identifiers":["[pref_3:font-size]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-name-constraint]" + "subject_identifiers":["[pref_3:readonly]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:subject-identifier-constraint]" + "subject_identifiers":["[pref_2:Text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:List-Box]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:constraint]" + "subject_identifiers":["[pref_2:Text-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]", - "si:[pref_7:role-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Literal-Value]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:datatype]" + "subject_identifiers":["[pref_3:fixed]" ], "subject_locators":null, "item_identifiers":null, @@ -4125,7 +4642,16 @@ "occurrences":null }, { - "subject_identifiers":["[pref_7:regexp]" + "subject_identifiers":["[pref_2:Default-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:literal-value]" ], "subject_locators":null, "item_identifiers":null, @@ -4135,17 +4661,25 @@ "occurrences":null }, { - "subject_identifiers":["[pref_7:card-max]" + "subject_identifiers":["[pref_2:Literal-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Single-Type-Value]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:card-min]" + "subject_identifiers":["[pref_3:display-by]" ], "subject_locators":null, "item_identifiers":null, @@ -4155,57 +4689,3226 @@ "occurrences":null }, { - "subject_identifiers":["[pref_7:association-type]" + "subject_identifiers":["[pref_2:TM-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:role-type]" + "subject_identifiers":["[pref_2:Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Creator-Association-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:occurrence-type]" + "subject_identifiers":["[pref_2:Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:name-type]" + "subject_identifiers":["[pref_2:Default-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Topic-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-type]" + "subject_identifiers":["[pref_3:view-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, "occurrences":null - } - ], - "associations":[{ + }, + { + "subject_identifiers":["[pref_2:View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:background-color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:border-style]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:pointer]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:height]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:padding-left]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:width]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Hidden-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Visible-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Role-Player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:schema-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descendant]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:ancestor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-construct]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:containee]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:container]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:association-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:topic-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:contains]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:environment-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Hash-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype-subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-role]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-statement]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-occurrence-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:subject-identifier-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:datatype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regexp]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-max]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-min]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:role-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:name-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + } + ], + "associations":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:configuration]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:configuration]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:data]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:data]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:form]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:form]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:default]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:default]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:needs-b64-encoding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:needs-b64-encoding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:crud]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:crud]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:multiple]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:multiple]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:mime-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:mime-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:param]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:param]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:tg-approved]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:tg-approved]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:textgrid-url]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:textgrid-url]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:identifier]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:identifier]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:owner]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:owner]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:use-target-ns]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:use-target-ns]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:target-namespace]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:target-namespace]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-body]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-body]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:inline-description-location]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:inline-description-location]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-uri]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-uri]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:keywords]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:keywords]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:operation]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:operation]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, @@ -7791,4 +11494,4 @@ ], "item_type":"topicmap", "reifier":null -} +} \ No newline at end of file From lgiessmann at common-lisp.net Tue Sep 20 12:39:14 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 05:39:14 -0700 Subject: [isidorus-cvs] r940 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/base src/us/isidor/gdl/anaToMia/Widgets/button src/us/isidor/gdl/anaToMia/Widgets/isidorus war/gdl_widgets Message-ID: Author: lgiessmann Date: Tue Sep 20 05:39:13 2011 New Revision: 940 Log: Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Tue Sep 20 05:05:25 2011 (r939) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Tue Sep 20 05:39:13 2011 (r940) @@ -55,7 +55,7 @@ // contains all callbacks that are used as click handlers and the corresponding // html element id of the button element - private ArrayList>> buttonCallbacks = new ArrayList>>(); + private static ArrayList>> buttonCallbacks = new ArrayList>>(); // some constructors @@ -86,23 +86,23 @@ } - public ArrayList getClickHandlers(String id){ - for (Pair> item : this.buttonCallbacks) + public static ArrayList getClickHandlers(String id){ + for (Pair> item : GdlPanel.buttonCallbacks) if(item.getFirst().equals(id)) return item.getSecond(); return new ArrayList(); } - public void addClickHandler(String id, ClickHandler handler) throws ExecutionException { + public static void addClickHandler(String id, ClickHandler handler) throws ExecutionException { if(id == null && handler == null) return; if(id == null || handler == null) throw new ExecutionException("id and handler must be set, but are: " + id + ", " + handler); - ArrayList item = this.getClickHandlers(id); + ArrayList item = GdlPanel.getClickHandlers(id); if(item.size() == 0){ ArrayList handlers = new ArrayList(); handlers.add(handler); - this.buttonCallbacks.add(new Pair>(id, handlers)); + GdlPanel.buttonCallbacks.add(new Pair>(id, handlers)); } else{ item.add(handler); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java Tue Sep 20 05:05:25 2011 (r939) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java Tue Sep 20 05:39:13 2011 (r940) @@ -7,6 +7,7 @@ import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Occurrence; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; +import us.isidor.gdl.anaToMia.Widgets.base.GdlPanel; import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject; import us.isidor.gdl.anaToMia.Widgets.base.PSIs; import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; @@ -52,7 +53,7 @@ protected void setClickHandlers() throws InvalidGdlSchemaException{ - ArrayList handlers = this.getRoot().getClickHandlers(this.getId()); + ArrayList handlers = GdlPanel.getClickHandlers(this.getId()); if(handlers == null || this.subElements.size() == 0) return; for (ClickHandler handler : handlers) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 20 05:05:25 2011 (r939) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 20 05:39:13 2011 (r940) @@ -45,6 +45,7 @@ public GdlWebPage(String topicTypePsi) throws ExecutionException{ if(topicTypePsi == null) throw new ExecutionException("topicTypePsi must not be null"); this.topicTypePsi = topicTypePsi; + GdlPanel.addClickHandler("hash_object_reset_button_id", new ResetClickHandler()); } @@ -141,7 +142,6 @@ ArrayList> topicsToCreate = new ArrayList>(); topicsToCreate.add(new Pair(GdlWebPage.this.topicTypePsi, TopicIdentifierTypes.SubjectIdentifier)); GdlWebPage.this.gdlPanel = new GdlPanel(null, topicsToCreate, 362, 160); - GdlWebPage.this.gdlPanel.addClickHandler("hash_object_reset_button_id", new ResetClickHandler()); GdlWebPage.this.mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); @@ -167,7 +167,6 @@ try{ if(GdlWebPage.this.gdlPanel != null) GdlWebPage.this.gdlPanel.removeFromParent(); GdlWebPage.this.gdlPanel = new GdlPanel(new Pair(source.getText(), TopicIdentifierTypes.SubjectIdentifier), null, 362, 160); - GdlWebPage.this.gdlPanel.addClickHandler("hash_object_reset_button_id", new ResetClickHandler()); GdlWebPage.this.mainPanel.add(gdlPanel); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Tue Sep 20 05:05:25 2011 (r939) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Tue Sep 20 05:39:13 2011 (r940) @@ -15,7 +15,7 @@ public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm"; + public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_GDL_Create_HashObject.jtm"; //public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; //public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 05:05:25 2011 (r939) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 05:39:13 2011 (r940) @@ -1,588 +1,534 @@ { "version":"1.1", "prefixes":{ - "pref_5":"http://textgrid.org/serviceregistry/model/types/", - "pref_4":"http://textgrid.org/serviceregistry/model/", - "pref_1":"http://textgrid.org/serviceregistry/gdl/", - "pref_6":"http://psi.topicmaps.org/iso13250/model/", - "pref_8":"http://textgrid.org/serviceregistry/", + "pref_11":"http://textgrid.org/serviceregistry/hash-object/old-env/", + "pref_9":"http://textgrid.org/serviceregistry/hash-object/env/", + "pref_7":"http://textgrid.org/serviceregistry/model/types/", + "pref_10":"http://textgrid.org/serviceregistry/environment/", + "pref_1":"http://www.topicmaps.org/xtm/1.0/core.xtm#", + "pref_8":"http://textgrid.org/serviceregistry/model/", + "pref_3":"http://psi.topicmaps.org/iso13250/model/", + "pref_6":"http://textgrid.org/serviceregistry/gdl/", "xsd":"http://www.w3.org/2001/XMLSchema#", - "pref_2":"http://psi.isidor.us/gdl/types/", - "pref_7":"http://psi.topicmaps.org/tmcl/", - "pref_3":"http://psi.isidor.us/gdl/" + "pref_4":"http://psi.isidor.us/gdl/types/", + "pref_2":"http://psi.topicmaps.org/tmcl/", + "pref_5":"http://psi.isidor.us/gdl/" }, - "item_identifiers":["[pref_8:services-tm]" - ], + "item_identifiers":null, "topics":[{ - "subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]" + "subject_identifiers":["[pref_1:topic]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:association]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-config-configuration-role-constraint]" + "subject_identifiers":["[pref_1:occurrence]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:class-instance]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]" + "subject_identifiers":["[pref_1:class]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:supertype-subtype]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-config-parameter-role-constraint]" + "subject_identifiers":["[pref_1:supertype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:subtype]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:sort]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:display]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:topic-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:name-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:occurrence-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:role-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:association-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:card-min]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:card-max]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:regexp]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:datatype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]", + "si:[pref_2:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:subject-identifier-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:topic-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:topic-occurrence-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:occurrence-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:topic-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:constrained]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:constrained-statement]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:association-type]" + ], + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]" + "subject_identifiers":["[pref_2:constrained-topic-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-parameter-service-role-constraint]" + "subject_identifiers":["[pref_2:constrained-role]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]" + "subject_identifiers":["[pref_3:supertype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]" + "subject_identifiers":["[pref_3:subtype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]" + "subject_identifiers":["[pref_3:supertype-subtype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-data-constraint]" + "subject_identifiers":["[pref_7:Service]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]" + "subject_identifiers":["[pref_7:Hash-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:topic-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-form-constraint]" + "subject_identifiers":["[pref_7:Environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]" + "subject_identifiers":["[pref_8:hash-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-default-constraint]" + "subject_identifiers":["[pref_8:key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + "subject_identifiers":["[pref_8:value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]" + "subject_identifiers":["[pref_8:environment-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:name-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-name-constraint]" + "subject_identifiers":["[pref_8:has-hash]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-psi-constraint]" + "subject_identifiers":["[pref_8:has-environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + "subject_identifiers":["[pref_8:service]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]" + "subject_identifiers":["[pref_8:hash]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]" + "subject_identifiers":["[pref_8:environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-crud-constraint]" + "subject_identifiers":["[pref_8:environment-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:subject-identifier-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-min]", "value":"1", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:regexp]", + "value":"^http://textgrid.org/serviceregistry/environment/.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-multiple-constraint]" + "subject_identifiers":["[pref_8:environment-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-name-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -590,105 +536,113 @@ ] }, { - "subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]" + "subject_identifiers":["[pref_8:environment-name-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:regular-expression-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:regexp]", + "value":"^.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-mime-type-constraint]" + "subject_identifiers":["[pref_8:hash-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:subject-identifier-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:regexp]", + "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "scope":null, + "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-param-datatype-constraint]" + "subject_identifiers":["[pref_8:hash-hash-type-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-param-constraint]" + "subject_identifiers":["[pref_8:hash-hash-type-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:regular-expression-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_2:regexp]", + "value":"^.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]" + "subject_identifiers":["[pref_8:hash-hash-type-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", + "type":"si:[pref_2:datatype]", "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null @@ -696,25 +650,25 @@ ] }, { - "subject_identifiers":["[pref_4:parameter-parameter-type-constraint]" + "subject_identifiers":["[pref_8:hash-key-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -722,69 +676,61 @@ ] }, { - "subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]" + "subject_identifiers":["[pref_8:hash-key-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:regular-expression-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:regexp]", + "value":"^.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-parameter-id-constraint]" + "subject_identifiers":["[pref_8:hash-key-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-name-constraint]" + "subject_identifiers":["[pref_8:hash-value-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -792,77 +738,61 @@ ] }, { - "subject_identifiers":["[pref_4:parameter-psi-constraint]" + "subject_identifiers":["[pref_8:hash-value-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:regular-expression-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/parameter/.+$", + "type":"si:[pref_2:regexp]", + "value":"^.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]" + "subject_identifiers":["[pref_8:hash-value-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-tg-approved-constraint]" + "subject_identifiers":["[pref_8:hash-type-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -870,43 +800,43 @@ ] }, { - "subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]" + "subject_identifiers":["[pref_8:hash-type-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:regular-expression-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_2:regexp]", + "value":"^.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-textgrid-url-constraint]" + "subject_identifiers":["[pref_8:has-environment-environment-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -914,43 +844,25 @@ ] }, { - "subject_identifiers":["[pref_4:service-identifier-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-identifier-constraint]" + "subject_identifiers":["[pref_8:has-environment-environment-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -958,43 +870,51 @@ ] }, { - "subject_identifiers":["[pref_4:service-owner-datatype-constraint]" + "subject_identifiers":["[pref_8:has-environment-hash-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-owner-constraint]" + "subject_identifiers":["[pref_8:has-environment-hash-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -1002,43 +922,51 @@ ] }, { - "subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]" + "subject_identifiers":["[pref_8:has-hash-hash-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-use-target-ns-constraint]" + "subject_identifiers":["[pref_8:has-hash-hash-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -1046,43 +974,51 @@ ] }, { - "subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]" + "subject_identifiers":["[pref_8:has-hash-service-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-target-namespace-constraint]" + "subject_identifiers":["[pref_8:has-hash-service-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_2:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -1090,1049 +1026,814 @@ ] }, { - "subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]" + "subject_identifiers":["[pref_5:contains]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-description-location-body-constraint]" + "subject_identifiers":["[pref_5:topic-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]" + "subject_identifiers":["[pref_5:association-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-inline-description-location-constraint]" + "subject_identifiers":["[pref_5:tm-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]" + "subject_identifiers":["[pref_5:view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-description-location-uri-constraint]" + "subject_identifiers":["[pref_5:value-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-keywords-datatype-constraint]" + "subject_identifiers":["[pref_5:position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-keywords-constraint]" + "subject_identifiers":["[pref_5:container]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-description-datatype-constraint]" + "subject_identifiers":["[pref_5:containee]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-description-constraint]" + "subject_identifiers":["[pref_5:tm-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-service-type-datatype-constraint]" + "subject_identifiers":["[pref_5:tm-construct]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-service-type-constraint]" + "subject_identifiers":["[pref_5:descriptor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-operation-datatype-constraint]" + "subject_identifiers":["[pref_5:value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-operation-constraint]" + "subject_identifiers":["[pref_5:value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-name-constraint]" + "subject_identifiers":["[pref_5:ancestor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-psi-constraint]" + "subject_identifiers":["[pref_5:descendant]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/service/.+$", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:data]" + "subject_identifiers":["[pref_4:Schema]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:form]" + "subject_identifiers":["[pref_5:schema-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:default]" + "subject_identifiers":["[pref_4:Descriptor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-id]" + "subject_identifiers":["[pref_4:Role-Player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-name]" + "subject_identifiers":["[pref_4:Visible-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:example-config]" + "subject_identifiers":["[pref_4:Hidden-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:needs-b64-encoding]" + "subject_identifiers":["[pref_5:hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:crud]" + "subject_identifiers":["[pref_5:width]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:multiple]" + "subject_identifiers":["[pref_5:padding-left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:mime-type]" + "subject_identifiers":["[pref_5:height]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:param]" + "subject_identifiers":["[pref_5:pointer]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-type]" + "subject_identifiers":["[pref_5:border-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-id]" + "subject_identifiers":["[pref_5:background-color]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-name]" + "subject_identifiers":["[pref_5:color]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:tg-approved]" + "subject_identifiers":["[pref_5:id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:textgrid-url]" + "subject_identifiers":["[pref_4:View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:identifier]" + "subject_identifiers":["[pref_5:view-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:owner]" + "subject_identifiers":["[pref_4:Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:use-target-ns]" + "subject_identifiers":["[pref_4:Default-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:Default-Creator-Topic-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:target-namespace]" + "subject_identifiers":["[pref_4:Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:Creator-Association-View]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:description-location-body]" + "subject_identifiers":["[pref_4:Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:TM-Value]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:inline-description-location]" + "subject_identifiers":["[pref_5:display-by]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:description-location-uri]" + "subject_identifiers":["[pref_4:TM-Single-Type-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:Literal-Value]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:keywords]" + "subject_identifiers":["[pref_5:literal-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:description]" + "subject_identifiers":["[pref_4:Default-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:service-type]" + "subject_identifiers":["[pref_5:fixed]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:operation]" + "subject_identifiers":["[pref_4:Default-Literal-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:Text-Object]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:service-name]" + "subject_identifiers":["[pref_4:List-Box]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:Text]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:configuration]" + "subject_identifiers":["[pref_5:readonly]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter]" + "subject_identifiers":["[pref_5:font-size]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:has-config]" + "subject_identifiers":["[pref_4:Position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:has-parameter]" + "subject_identifiers":["[pref_5:position-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_5:Parameter-Config]" + "subject_identifiers":["[pref_5:top]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_5:Parameter]" + "subject_identifiers":["[pref_5:left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + "subject_identifiers":["[pref_5:right]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-delete-button]" + "subject_identifiers":["[pref_4:Value-Group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:Button]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_delete_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" + "subject_identifiers":["[pref_4:Action-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:Commit-Button]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-position]" + "subject_identifiers":["[pref_6:textgrid-ui-schema]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Schema]" ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"70px", + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_5:schema-name]", "scope":null, + "variants":null, "reifier":null } - ] + ], + "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-name-text]" + "subject_identifiers":["[pref_6:hash-object-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Default-Creator-Topic-View]" ], - "names":null, - "occurrences":[{ + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_name_text_id", + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_5:view-name]", "scope":null, + "variants":null, "reifier":null - }, - { + } + ], + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_5:id]", + "value":"hash_object_default_creator_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"240px", + "type":"si:[pref_5:width]", + "value":"362px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", + "type":"si:[pref_5:height]", + "value":"160px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_5:background-color]", + "value":"#023467", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value]" + "subject_identifiers":["[pref_6:hash-object-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_4:TM-Single-Type-Value]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" + "subject_identifiers":["[pref_6:hash-hash-type-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-position]" + "subject_identifiers":["[pref_6:hash-hash-type-default-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:literal-value]", + "value":"confserver", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label]" + "subject_identifiers":["[pref_6:has-environment-creator-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Creator-Association-View]" ], - "names":null, - "occurrences":[{ + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_5:view-name]", "scope":null, + "variants":null, "reifier":null - }, - { + } + ], + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_5:id]", + "value":"has_environment_createor_association_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"60px", + "type":"si:[pref_5:width]", + "value":"230px", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_6:hash-object-has-environement-creator-association-view-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Position]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_5:top]", + "value":"10px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_5:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-view-binding]" + "subject_identifiers":["[pref_6:has-environment-hash-role-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_4:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" + "subject_identifiers":["[pref_6:hash-object-has-environment-hash-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + "instance_of":["si:[pref_4:Role-Player]" ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:hash-object-creator-text-label-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Text]" ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_editor_topic_view_id", + "type":"si:[pref_5:id]", + "value":"hash_object_text_label_env_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", + "type":"si:[pref_5:width]", "value":"100px", "scope":null, "reifier":null @@ -2140,385 +1841,369 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", + "type":"si:[pref_5:background-color]", "value":"#023467", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", + "type":"si:[pref_5:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_5:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-commit-button]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_5:top]", + "value":"10px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-position]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"70px", + "type":"si:[pref_5:literal-value]", + "value":"environment:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text]" + "subject_identifiers":["[pref_6:hash-object-creator-text-list-box-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:List-Box]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_name_text_id", + "type":"si:[pref_5:id]", + "value":"hash_object_text_list_box_env_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"240px", + "type":"si:[pref_5:width]", + "value":"232px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_6:hash-object-creator-text-list-box-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", + "type":"si:[pref_5:top]", + "value":"0px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_5:left]", + "value":"0px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value]" + "subject_identifiers":["[pref_6:hash-object-creator-text-list-box-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" + "subject_identifiers":["[pref_6:hash-object-has-environment-environment-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Role-Player]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"hash_object_text_label_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:width]", + "value":"100px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-text-label]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "type":"si:[pref_5:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_5:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"60px", + "type":"si:[pref_5:color]", + "value":"#fff", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_6:hash-object-creator-text-label-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Position]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_5:top]", + "value":"40px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-view-binding]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], - "names":[{ + "names":null, + "occurrences":[{ "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:literal-value]", + "value":"key:", "scope":null, - "variants":null, "reifier":null } + ] + }, + { + "subject_identifiers":["[pref_6:hash-object-creator-text-key]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Text]" + ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_creator_topic_view_id", + "type":"si:[pref_5:id]", + "value":"hash_object_text_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", + "type":"si:[pref_5:readonly]", + "value":"false", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", + "type":"si:[pref_5:width]", + "value":"230px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_3:cursor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" + "subject_identifiers":["[pref_6:hash-object-creator-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", + "type":"si:[pref_5:position-style]", "value":"absolute", "scope":null, "reifier":null @@ -2526,195 +2211,163 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_5:top]", + "value":"40px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_5:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" + "subject_identifiers":["[pref_6:hash-object-creator-text-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:hash-object-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"editor_hash_object_commit_button_id", + "type":"si:[pref_5:id]", + "value":"hash_object_text_label_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_5:width]", + "value":"100px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_5:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_delete_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_5:top]", + "value":"70px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" + "subject_identifiers":["[pref_6:hash-object-creator-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_5:literal-value]", + "value":"value:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value]" + "subject_identifiers":["[pref_6:hash-object-creator-text-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", + "type":"si:[pref_5:id]", "value":"hash_object_text_value_id", "scope":null, "reifier":null @@ -2722,7 +2375,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", + "type":"si:[pref_5:readonly]", "value":"false", "scope":null, "reifier":null @@ -2730,7 +2383,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", + "type":"si:[pref_5:width]", "value":"230px", "scope":null, "reifier":null @@ -2738,7 +2391,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", + "type":"si:[pref_5:pointer]", "value":"text", "scope":null, "reifier":null @@ -2746,7 +2399,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", + "type":"si:[pref_5:border-style]", "value":"none", "scope":null, "reifier":null @@ -2754,7 +2407,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", + "type":"si:[pref_5:padding-left]", "value":"2px", "scope":null, "reifier":null @@ -2762,309 +2415,336 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" + "subject_identifiers":["[pref_6:hash-object-creator-text-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", + "type":"si:[pref_5:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" + "subject_identifiers":["[pref_6:hash-object-creator-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + "subject_identifiers":["[pref_6:hash-object-creator-reset-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Action-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"hash_object_reset_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", + "type":"si:[pref_5:height]", + "value":"30px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" + "subject_identifiers":["[pref_6:hash-object-creator-reset-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_5:top]", + "value":"115px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" + "subject_identifiers":["[pref_6:hash-object-creator-reset-button-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" + "subject_identifiers":["[pref_6:hash-object-creator-reset-button-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_5:literal-value]", + "value":"reset", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key]" + "subject_identifiers":["[pref_6:hash-object-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", + "type":"si:[pref_5:id]", + "value":"creator_hash_object_commit_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_5:height]", + "value":"30px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_5:width]", + "value":"80px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", + "type":"si:[pref_5:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_6:hash-object-creator-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_5:top]", + "value":"115px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_5:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" + "subject_identifiers":["[pref_4:Default-Editor-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" + "subject_identifiers":["[pref_4:Editor-Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:Delete-Button]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + "subject_identifiers":["[pref_6:hash-object-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_5:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"hash_object_default_editor_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", + "type":"si:[pref_5:width]", + "value":"362px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:background-color]", + "value":"#023467", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" + "subject_identifiers":["[pref_6:hash-object-editor-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:hash-object-editor-text-label-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", + "type":"si:[pref_5:id]", + "value":"hash_object_text_label_env_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", + "type":"si:[pref_5:readonly]", "value":"true", "scope":null, "reifier":null @@ -3072,7 +2752,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", + "type":"si:[pref_5:width]", "value":"100px", "scope":null, "reifier":null @@ -3080,7 +2760,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", + "type":"si:[pref_5:background-color]", "value":"#023467", "scope":null, "reifier":null @@ -3088,7 +2768,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", + "type":"si:[pref_5:border-style]", "value":"none", "scope":null, "reifier":null @@ -3096,7 +2776,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", + "type":"si:[pref_5:color]", "value":"#fff", "scope":null, "reifier":null @@ -3104,27 +2784,17 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", + "type":"si:[pref_5:position-style]", "value":"absolute", "scope":null, "reifier":null @@ -3132,75 +2802,95 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", + "type":"si:[pref_5:top]", + "value":"10px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:hash-object-editor-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_env_id", + "type":"si:[pref_5:literal-value]", + "value":"environment:", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_6:has-environment-editor-association-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Editor-Association-View]" + ], + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_5:view-name]", "scope":null, - "reifier":null - }, - { + "variants":null, + "reifier":null + } + ], + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_5:id]", + "value":"has_environment_editor_association_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_5:width]", + "value":"230px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" + "subject_identifiers":["[pref_6:hash-object-has-environment-editor-association-view-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", + "type":"si:[pref_5:position-style]", "value":"absolute", "scope":null, "reifier":null @@ -3208,7 +2898,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", + "type":"si:[pref_5:top]", "value":"10px", "scope":null, "reifier":null @@ -3216,7 +2906,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", + "type":"si:[pref_5:left]", "value":"120px", "scope":null, "reifier":null @@ -3224,79 +2914,59 @@ ] }, { - "subject_identifiers":["[pref_1:has-environment-editor-association-view]" + "subject_identifiers":["[pref_6:hash-object-editor-text-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Editor-Association-View]" + "instance_of":["si:[pref_4:Text]" ], - "names":[{ + "names":null, + "occurrences":[{ "item_identifiers":null, - "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:id]", + "value":"hash_object_text_env_id", "scope":null, - "variants":null, "reifier":null - } - ], - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_editor_association_view_id", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", + "type":"si:[pref_5:width]", "value":"230px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", + "type":"si:[pref_5:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" + "subject_identifiers":["[pref_6:hash-object-editor-text-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", + "type":"si:[pref_5:position-style]", "value":"absolute", "scope":null, "reifier":null @@ -3304,41 +2974,51 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_5:top]", + "value":"0px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:left]", + "value":"0px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" + "subject_identifiers":["[pref_6:hash-object-editor-text-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:hash-object-editor-text-label-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", + "type":"si:[pref_5:id]", + "value":"hash_object_text_label_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", + "type":"si:[pref_5:readonly]", "value":"true", "scope":null, "reifier":null @@ -3346,7 +3026,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", + "type":"si:[pref_5:width]", "value":"100px", "scope":null, "reifier":null @@ -3354,7 +3034,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", + "type":"si:[pref_5:background-color]", "value":"#023467", "scope":null, "reifier":null @@ -3362,7 +3042,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", + "type":"si:[pref_5:border-style]", "value":"none", "scope":null, "reifier":null @@ -3370,7 +3050,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", + "type":"si:[pref_5:color]", "value":"#fff", "scope":null, "reifier":null @@ -3378,328 +3058,301 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_4:Position]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", + "type":"si:[pref_5:top]", + "value":"40px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_2:Delete-Button]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Editor-Association-View]" + "instance_of":["si:[pref_4:Value-Group]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_4:Default-Literal-Value]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + "subject_identifiers":["[pref_6:hash-object-editor-text-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"hash_object_text_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"creator_hash_object_commit_button_id", + "type":"si:[pref_5:width]", + "value":"230px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_5:pointer]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_5:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_5:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + "subject_identifiers":["[pref_6:hash-object-editor-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"reset", + "type":"si:[pref_5:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + "subject_identifiers":["[pref_6:hash-object-editor-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"hash_object_text_label_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Action-Button]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_reset_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_5:top]", + "value":"70px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + "subject_identifiers":["[pref_6:hash-object-editor-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_5:literal-value]", + "value":"value:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + "subject_identifiers":["[pref_6:hash-object-editor-text-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", + "type":"si:[pref_5:id]", "value":"hash_object_text_value_id", "scope":null, "reifier":null @@ -3707,7 +3360,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", + "type":"si:[pref_5:readonly]", "value":"false", "scope":null, "reifier":null @@ -3715,7 +3368,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", + "type":"si:[pref_5:width]", "value":"230px", "scope":null, "reifier":null @@ -3723,7 +3376,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", + "type":"si:[pref_5:pointer]", "value":"text", "scope":null, "reifier":null @@ -3731,7 +3384,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", + "type":"si:[pref_5:border-style]", "value":"none", "scope":null, "reifier":null @@ -3739,7 +3392,7 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", + "type":"si:[pref_5:padding-left]", "value":"2px", "scope":null, "reifier":null @@ -3747,45 +3400,103 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + "subject_identifiers":["[pref_6:hash-object-editor-text-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", + "type":"si:[pref_5:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + "subject_identifiers":["[pref_6:hash-object-editor-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + "subject_identifiers":["[pref_6:hash-object-editor-delete-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Delete-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:id]", + "value":"hash_object_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_6:hash-object-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", + "type":"si:[pref_5:position-style]", "value":"absolute", "scope":null, "reifier":null @@ -3793,15 +3504,15 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", + "type":"si:[pref_5:top]", + "value":"115px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", + "type":"si:[pref_5:left]", "value":"10px", "scope":null, "reifier":null @@ -3809,151 +3520,195 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + "subject_identifiers":["[pref_6:hash-object-editor-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", + "type":"si:[pref_5:id]", + "value":"editor_hash_object_commit_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_5:height]", + "value":"30px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", + "type":"si:[pref_5:width]", + "value":"80px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_6:hash-object-editor-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_5:top]", + "value":"115px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_5:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + "subject_identifiers":["[pref_5:cursor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + "subject_identifiers":["[pref_6:environment-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_5:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"environment_default_creator_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", + "type":"si:[pref_5:width]", + "value":"322px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_5:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:background-color]", + "value":"#023467", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + "subject_identifiers":["[pref_6:environment-creator-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:environment-creator-text-label]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", + "type":"si:[pref_5:id]", + "value":"environment_text_label_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_5:width]", + "value":"60px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", + "type":"si:[pref_5:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", + "type":"si:[pref_5:border-style]", "value":"none", "scope":null, "reifier":null @@ -3961,1142 +3716,1543 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_5:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + "subject_identifiers":["[pref_6:environment-creator-text-label-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", + "type":"si:[pref_5:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + "subject_identifiers":["[pref_6:environment-creator-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + "subject_identifiers":["[pref_6:environment-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:literal-value]", + "value":"name:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + "subject_identifiers":["[pref_6:environment-creator-name-text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_5:id]", + "value":"environment_name_text_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", + "type":"si:[pref_5:readonly]", + "value":"false", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:width]", + "value":"240px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_5:cursor]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_5:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + "subject_identifiers":["[pref_6:environment-creator-name-text-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_4:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:left]", + "value":"70px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + "subject_identifiers":["[pref_6:environment-creator-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + "subject_identifiers":["[pref_6:environment-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"environment_commit_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", + "type":"si:[pref_5:height]", + "value":"30px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", + "type":"si:[pref_5:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + "subject_identifiers":["[pref_6:environment-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:List-Box]" + "instance_of":["si:[pref_4:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_list_box_env_id", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_5:top]", + "value":"65px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"232px", + "type":"si:[pref_5:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + "subject_identifiers":["[pref_6:environment-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_4:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_5:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", + "type":"si:[pref_5:id]", + "value":"environment_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:width]", + "value":"322px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:background-color]", + "value":"#023467", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + "subject_identifiers":["[pref_6:environment-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_4:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + "subject_identifiers":["[pref_6:environment-editor-text-label]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"environment_text_label_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_5:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_5:width]", + "value":"60px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", + "type":"si:[pref_5:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_5:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", + "type":"si:[pref_5:color]", + "value":"#fff", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_6:environment-editor-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_4:Position]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_5:top]", + "value":"10px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" + "subject_identifiers":["[pref_6:environment-editor-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + "subject_identifiers":["[pref_6:environment-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" + "instance_of":["si:[pref_4:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + "subject_identifiers":["[pref_6:environment-editor-name-text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_4:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_5:id]", + "value":"environment_name_text_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:width]", + "value":"240px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_5:cursor]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_5:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + "subject_identifiers":["[pref_6:environment-editor-name-text-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Creator-Association-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "instance_of":["si:[pref_4:Position]" ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_createor_association_view_id", + "type":"si:[pref_5:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_5:top]", + "value":"10px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-hash-type-default-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"confserver", + "type":"si:[pref_5:left]", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" + "subject_identifiers":["[pref_6:environment-editor-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" + "instance_of":["si:[pref_4:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + "subject_identifiers":["[pref_6:environment-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_4:Delete-Button]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_creator_topic_view_id", + "type":"si:[pref_5:id]", + "value":"environment_delete_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", + "type":"si:[pref_5:height]", + "value":"30px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", + "type":"si:[pref_5:width]", + "value":"80px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_5:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:textgrid-ui-schema]" + "subject_identifiers":["[pref_6:environment-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Schema]" + "instance_of":["si:[pref_4:Position]" ], - "names":[{ + "names":null, + "occurrences":[{ "item_identifiers":null, - "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", - "type":"si:[pref_3:schema-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_5:left]", + "value":"10px", "scope":null, - "variants":null, "reifier":null } - ], - "occurrences":null + ] }, { - "subject_identifiers":["[pref_2:Commit-Button]" + "subject_identifiers":["[pref_7:Parameter]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Action-Button]" + "instance_of":["si:[pref_2:topic-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Button]" + "subject_identifiers":["[pref_7:Parameter-Config]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:topic-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Value-Group]" + "subject_identifiers":["[pref_8:has-parameter]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:association-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:right]" + "subject_identifiers":["[pref_8:has-config]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:left]" + "subject_identifiers":["[pref_8:parameter]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:top]" + "subject_identifiers":["[pref_8:configuration]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:position-style]" + "subject_identifiers":["[pref_8:service-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Position]" + "subject_identifiers":["[pref_8:operation]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:font-size]" + "subject_identifiers":["[pref_8:service-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:readonly]" + "subject_identifiers":["[pref_8:description]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Text]" + "subject_identifiers":["[pref_8:keywords]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:List-Box]" + "subject_identifiers":["[pref_8:description-location-uri]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Text-Object]" + "subject_identifiers":["[pref_8:inline-description-location]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Literal-Value]" + "subject_identifiers":["[pref_8:description-location-body]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:fixed]" + "subject_identifiers":["[pref_8:target-namespace]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Value]" + "subject_identifiers":["[pref_8:use-target-ns]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:literal-value]" + "subject_identifiers":["[pref_8:owner]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Literal-Value]" + "subject_identifiers":["[pref_8:identifier]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:TM-Single-Type-Value]" + "subject_identifiers":["[pref_8:textgrid-url]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:display-by]" + "subject_identifiers":["[pref_8:tg-approved]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:TM-Value]" + "subject_identifiers":["[pref_8:parameter-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:name-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Value]" + "subject_identifiers":["[pref_8:parameter-id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Creator-Association-View]" + "subject_identifiers":["[pref_8:parameter-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Association-View]" + "subject_identifiers":["[pref_8:param]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" + "subject_identifiers":["[pref_8:mime-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Topic-View]" + "subject_identifiers":["[pref_8:multiple]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Topic-View]" + "subject_identifiers":["[pref_8:crud]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:view-name]" + "subject_identifiers":["[pref_8:needs-b64-encoding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:View]" + "subject_identifiers":["[pref_8:example-config]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:id]" + "subject_identifiers":["[pref_8:parameter-config-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:name-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:color]" + "subject_identifiers":["[pref_8:parameter-config-id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:background-color]" + "subject_identifiers":["[pref_8:default]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:border-style]" + "subject_identifiers":["[pref_8:form]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:pointer]" + "subject_identifiers":["[pref_8:data]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:height]" + "subject_identifiers":["[pref_8:service-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:subject-identifier-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:regexp]", + "value":"^http://textgrid.org/serviceregistry/service/.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:padding-left]" + "subject_identifiers":["[pref_8:service-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:topic-name-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:width]" + "subject_identifiers":["[pref_8:service-operation-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:hidden-value]" + "subject_identifiers":["[pref_8:service-operation-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Hidden-Value]" + "subject_identifiers":["[pref_8:service-service-type-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:topic-occurrence-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Visible-Object]" + "subject_identifiers":["[pref_8:service-service-type-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Role-Player]" + "subject_identifiers":["[pref_8:service-description-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_2:topic-occurrence-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Descriptor]" + "subject_identifiers":["[pref_8:service-description-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:schema-name]" + "subject_identifiers":["[pref_8:service-keywords-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Schema]" + "subject_identifiers":["[pref_8:service-keywords-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:descendant]" + "subject_identifiers":["[pref_8:service-description-location-uri-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:ancestor]" + "subject_identifiers":["[pref_8:service-description-location-uri-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:value]" + "subject_identifiers":["[pref_8:service-inline-description-location-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:value-group]" + "subject_identifiers":["[pref_8:service-inline-description-location-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:descriptor]" + "subject_identifiers":["[pref_8:service-description-location-body-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:tm-construct]" + "subject_identifiers":["[pref_8:service-description-location-body-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:tm-value]" + "subject_identifiers":["[pref_8:service-target-namespace-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:containee]" + "subject_identifiers":["[pref_8:service-target-namespace-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:container]" + "subject_identifiers":["[pref_8:service-use-target-ns-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:position]" + "subject_identifiers":["[pref_8:service-use-target-ns-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:value-binding]" + "subject_identifiers":["[pref_8:service-owner-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:view-binding]" + "subject_identifiers":["[pref_8:service-owner-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:tm-binding]" + "subject_identifiers":["[pref_8:service-identifier-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:association-view-binding]" + "subject_identifiers":["[pref_8:service-identifier-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:topic-view-binding]" + "subject_identifiers":["[pref_8:service-textgrid-url-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:contains]" + "subject_identifiers":["[pref_8:service-textgrid-url-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" + "subject_identifiers":["[pref_8:service-tg-approved-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -5104,43 +5260,35 @@ ] }, { - "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" + "subject_identifiers":["[pref_8:service-tg-approved-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" + "subject_identifiers":["[pref_8:parameter-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:subject-identifier-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", + "type":"si:[pref_2:card-min]", "value":"1", "scope":null, "reifier":null @@ -5148,33 +5296,41 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter/.+$", + "scope":null, + "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + "subject_identifiers":["[pref_8:parameter-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:topic-name-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -5182,25 +5338,25 @@ ] }, { - "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" + "subject_identifiers":["[pref_8:parameter-parameter-id-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -5208,77 +5364,87 @@ ] }, { - "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" + "subject_identifiers":["[pref_8:parameter-parameter-id-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" + "subject_identifiers":["[pref_8:parameter-parameter-type-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_8:parameter-parameter-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + "subject_identifiers":["[pref_8:parameter-param-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -5286,43 +5452,43 @@ ] }, { - "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" + "subject_identifiers":["[pref_8:parameter-param-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-type-constraint]" + "subject_identifiers":["[pref_8:parameter-mime-type-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -5330,17 +5496,17 @@ ] }, { - "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" + "subject_identifiers":["[pref_8:parameter-mime-type-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", + "type":"si:[pref_2:datatype]", "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null @@ -5348,105 +5514,113 @@ ] }, { - "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" + "subject_identifiers":["[pref_8:parameter-multiple-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-value-constraint]" + "subject_identifiers":["[pref_8:parameter-multiple-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" + "subject_identifiers":["[pref_8:parameter-crud-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + "subject_identifiers":["[pref_8:parameter-crud-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-key-constraint]" + "subject_identifiers":["[pref_8:parameter-needs-b64-encoding-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -5454,61 +5628,77 @@ ] }, { - "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" + "subject_identifiers":["[pref_8:parameter-needs-b64-encoding-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" + "subject_identifiers":["[pref_8:parameter-config-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:subject-identifier-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:hash-hash-type-constraint]" + "subject_identifiers":["[pref_8:parameter-config-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:topic-name-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -5516,77 +5706,69 @@ ] }, { - "subject_identifiers":["[pref_4:hash-psi-constraint]" + "subject_identifiers":["[pref_8:parameter-config-parameter-config-id-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", - "scope":null, - "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" + "subject_identifiers":["[pref_8:parameter-config-parameter-config-id-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment-name-constraint]" + "subject_identifiers":["[pref_8:parameter-config-default-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", + "type":"si:[pref_2:card-max]", "value":"1", "scope":null, "reifier":null @@ -5594,5900 +5776,5997 @@ ] }, { - "subject_identifiers":["[pref_4:environment-psi-constraint]" + "subject_identifiers":["[pref_8:parameter-config-default-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_8:parameter-config-form-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_2:card-min]", + "value":"0", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "type":"si:[pref_2:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash]" + "subject_identifiers":["[pref_8:parameter-config-form-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:environment-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:key]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Hash-Object]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Service]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:supertype-subtype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:subtype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:supertype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-role]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-topic-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-statement]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:topic-role-constraint]" + "subject_identifiers":["[pref_8:parameter-config-data-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:topic-occurrence-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" + "subject_identifiers":["[pref_8:parameter-config-data-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:occurrence-datatype-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:regular-expression-constraint]" + "subject_identifiers":["[pref_8:has-parameter-parameter-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:topic-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:topic-occurrence-constraint]" + "subject_identifiers":["[pref_8:has-parameter-parameter-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:association-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:topic-name-constraint]" + "subject_identifiers":["[pref_8:has-parameter-service-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:topic-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:subject-identifier-constraint]" + "subject_identifiers":["[pref_8:has-parameter-service-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_2:association-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:constraint]" + "subject_identifiers":["[pref_8:has-config-parameter-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]", - "si:[pref_7:role-type]" + "instance_of":["si:[pref_2:topic-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:datatype]" + "subject_identifiers":["[pref_8:has-config-parameter-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:association-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:regexp]" + "subject_identifiers":["[pref_8:has-config-configuration-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:topic-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:card-max]" + "subject_identifiers":["[pref_8:has-config-configuration-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:association-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_2:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:card-min]" + "subject_identifiers":["[pref_10:env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:Environment]" + ], + "names":[{ + "item_identifiers":null, + "value":"env", + "type":"si:[pref_8:environment-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:association-type]" + "subject_identifiers":["[pref_9:new-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:Hash-Object]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_8:key]", + "value":"new-key", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_8:value]", + "value":"new-value", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_8:hash-type]", + "value":"confserver", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_7:role-type]" + "subject_identifiers":["[pref_10:new-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:Environment]" + ], + "names":[{ + "item_identifiers":null, + "value":"new-env", + "type":"si:[pref_8:environment-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:occurrence-type]" + "subject_identifiers":["[pref_10:old-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:Environment]" + ], + "names":[{ + "item_identifiers":null, + "value":"old-env", + "type":"si:[pref_8:environment-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:name-type]" + "subject_identifiers":["[pref_10:test-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:Environment]" + ], + "names":[{ + "item_identifiers":null, + "value":"test-env", + "type":"si:[pref_8:environment-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_7:topic-type]" + "subject_identifiers":["[pref_11:key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" + "instance_of":["si:[pref_7:Hash-Object]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_8:key]", + "value":"key-value", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_8:value]", + "value":"value-value", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_8:hash-type]", + "value":"confserver", + "scope":null, + "reifier":null + } + ] } ], "associations":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_8:has-environment]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_8:environment]", + "reifier":null, + "player":"si:[pref_10:old-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_8:hash]", + "reifier":null, + "player":"si:[pref_11:key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_8:has-environment]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_8:environment]", + "reifier":null, + "player":"si:[pref_10:env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_8:hash]", + "reifier":null, + "player":"si:[pref_9:new-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:configuration]" + "player":"si:[pref_8:configuration]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + "player":"si:[pref_8:has-config-configuration-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-config]" + "player":"si:[pref_8:has-config]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + "player":"si:[pref_8:has-config-configuration-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:configuration]" + "player":"si:[pref_8:configuration]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" + "player":"si:[pref_8:has-config-configuration-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-config]" + "player":"si:[pref_8:has-config]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" + "player":"si:[pref_8:has-config-configuration-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter-Config]" + "player":"si:[pref_7:Parameter-Config]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" + "player":"si:[pref_8:has-config-configuration-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter]" + "player":"si:[pref_8:parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + "player":"si:[pref_8:has-config-parameter-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-config]" + "player":"si:[pref_8:has-config]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + "player":"si:[pref_8:has-config-parameter-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter]" + "player":"si:[pref_8:parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" + "player":"si:[pref_8:has-config-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-config]" + "player":"si:[pref_8:has-config]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" + "player":"si:[pref_8:has-config-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" + "player":"si:[pref_8:has-config-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_8:service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + "player":"si:[pref_8:has-parameter-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-parameter]" + "player":"si:[pref_8:has-parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + "player":"si:[pref_8:has-parameter-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_8:service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" + "player":"si:[pref_8:has-parameter-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-parameter]" + "player":"si:[pref_8:has-parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" + "player":"si:[pref_8:has-parameter-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" + "player":"si:[pref_8:has-parameter-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter]" + "player":"si:[pref_8:parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + "player":"si:[pref_8:has-parameter-parameter-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-parameter]" + "player":"si:[pref_8:has-parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + "player":"si:[pref_8:has-parameter-parameter-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter]" + "player":"si:[pref_8:parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + "player":"si:[pref_8:has-parameter-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-parameter]" + "player":"si:[pref_8:has-parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + "player":"si:[pref_8:has-parameter-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + "player":"si:[pref_8:has-parameter-parameter-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-data-datatype-constraint]" + "player":"si:[pref_8:parameter-config-data-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:data]" + "player":"si:[pref_8:data]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" + "player":"si:[pref_8:parameter-config-data-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:data]" + "player":"si:[pref_8:data]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" + "player":"si:[pref_8:parameter-config-data-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-form-datatype-constraint]" + "player":"si:[pref_8:parameter-config-form-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:form]" + "player":"si:[pref_8:form]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" + "player":"si:[pref_8:parameter-config-form-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:form]" + "player":"si:[pref_8:form]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" + "player":"si:[pref_8:parameter-config-form-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-default-datatype-constraint]" + "player":"si:[pref_8:parameter-config-default-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:default]" + "player":"si:[pref_8:default]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" + "player":"si:[pref_8:parameter-config-default-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:default]" + "player":"si:[pref_8:default]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" + "player":"si:[pref_8:parameter-config-default-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + "player":"si:[pref_8:parameter-config-parameter-config-id-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter-config-id]" + "player":"si:[pref_8:parameter-config-id]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + "player":"si:[pref_8:parameter-config-parameter-config-id-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter-config-id]" + "player":"si:[pref_8:parameter-config-id]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + "player":"si:[pref_8:parameter-config-parameter-config-id-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" + "player":"si:[pref_8:parameter-config-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter-config-name]" + "player":"si:[pref_8:parameter-config-name]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" + "player":"si:[pref_8:parameter-config-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter-Config]" + "player":"si:[pref_7:Parameter-Config]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-config-psi-constraint]" + "player":"si:[pref_8:parameter-config-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter-Config]" + "player":"si:[pref_7:Parameter-Config]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + "player":"si:[pref_8:parameter-needs-b64-encoding-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" + "player":"si:[pref_8:needs-b64-encoding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + "player":"si:[pref_8:parameter-needs-b64-encoding-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" + "player":"si:[pref_8:needs-b64-encoding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + "player":"si:[pref_8:parameter-needs-b64-encoding-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-crud-datatype-constraint]" + "player":"si:[pref_8:parameter-crud-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:crud]" + "player":"si:[pref_8:crud]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" + "player":"si:[pref_8:parameter-crud-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:crud]" + "player":"si:[pref_8:crud]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" + "player":"si:[pref_8:parameter-crud-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-multiple-datatype-constraint]" + "player":"si:[pref_8:parameter-multiple-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:multiple]" + "player":"si:[pref_8:multiple]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" + "player":"si:[pref_8:parameter-multiple-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:multiple]" + "player":"si:[pref_8:multiple]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" + "player":"si:[pref_8:parameter-multiple-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" + "player":"si:[pref_8:parameter-mime-type-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:mime-type]" + "player":"si:[pref_8:mime-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" + "player":"si:[pref_8:parameter-mime-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:mime-type]" + "player":"si:[pref_8:mime-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" + "player":"si:[pref_8:parameter-mime-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-param-datatype-constraint]" + "player":"si:[pref_8:parameter-param-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:param]" + "player":"si:[pref_8:param]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" + "player":"si:[pref_8:parameter-param-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:param]" + "player":"si:[pref_8:param]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" + "player":"si:[pref_8:parameter-param-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" + "player":"si:[pref_8:parameter-parameter-id-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter-id]" + "player":"si:[pref_8:parameter-id]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" + "player":"si:[pref_8:parameter-parameter-id-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter-id]" + "player":"si:[pref_8:parameter-id]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" + "player":"si:[pref_8:parameter-parameter-id-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" + "player":"si:[pref_8:parameter-parameter-type-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter-type]" + "player":"si:[pref_8:parameter-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" + "player":"si:[pref_8:parameter-parameter-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter-type]" + "player":"si:[pref_8:parameter-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" + "player":"si:[pref_8:parameter-parameter-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" + "player":"si:[pref_8:parameter-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:parameter-name]" + "player":"si:[pref_8:parameter-name]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" + "player":"si:[pref_8:parameter-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:parameter-psi-constraint]" + "player":"si:[pref_8:parameter-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Parameter]" + "player":"si:[pref_7:Parameter]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-tg-approved-datatype-constraint]" + "player":"si:[pref_8:service-tg-approved-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:tg-approved]" + "player":"si:[pref_8:tg-approved]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" + "player":"si:[pref_8:service-tg-approved-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:tg-approved]" + "player":"si:[pref_8:tg-approved]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" + "player":"si:[pref_8:service-tg-approved-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" + "player":"si:[pref_8:service-textgrid-url-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:textgrid-url]" + "player":"si:[pref_8:textgrid-url]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" + "player":"si:[pref_8:service-textgrid-url-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:textgrid-url]" + "player":"si:[pref_8:textgrid-url]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" + "player":"si:[pref_8:service-textgrid-url-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-identifier-datatype-constraint]" + "player":"si:[pref_8:service-identifier-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:identifier]" + "player":"si:[pref_8:identifier]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" + "player":"si:[pref_8:service-identifier-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:identifier]" + "player":"si:[pref_8:identifier]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" + "player":"si:[pref_8:service-identifier-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-owner-datatype-constraint]" + "player":"si:[pref_8:service-owner-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:owner]" + "player":"si:[pref_8:owner]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" + "player":"si:[pref_8:service-owner-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:owner]" + "player":"si:[pref_8:owner]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" + "player":"si:[pref_8:service-owner-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" + "player":"si:[pref_8:service-use-target-ns-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:use-target-ns]" + "player":"si:[pref_8:use-target-ns]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" + "player":"si:[pref_8:service-use-target-ns-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:use-target-ns]" + "player":"si:[pref_8:use-target-ns]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" + "player":"si:[pref_8:service-use-target-ns-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-target-namespace-datatype-constraint]" + "player":"si:[pref_8:service-target-namespace-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:target-namespace]" + "player":"si:[pref_8:target-namespace]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" + "player":"si:[pref_8:service-target-namespace-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:target-namespace]" + "player":"si:[pref_8:target-namespace]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" + "player":"si:[pref_8:service-target-namespace-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-location-body-datatype-constraint]" + "player":"si:[pref_8:service-description-location-body-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:description-location-body]" + "player":"si:[pref_8:description-location-body]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" + "player":"si:[pref_8:service-description-location-body-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:description-location-body]" + "player":"si:[pref_8:description-location-body]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" + "player":"si:[pref_8:service-description-location-body-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" + "player":"si:[pref_8:service-inline-description-location-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:inline-description-location]" + "player":"si:[pref_8:inline-description-location]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" + "player":"si:[pref_8:service-inline-description-location-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:inline-description-location]" + "player":"si:[pref_8:inline-description-location]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" + "player":"si:[pref_8:service-inline-description-location-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" + "player":"si:[pref_8:service-description-location-uri-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:description-location-uri]" + "player":"si:[pref_8:description-location-uri]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" + "player":"si:[pref_8:service-description-location-uri-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:description-location-uri]" + "player":"si:[pref_8:description-location-uri]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" + "player":"si:[pref_8:service-description-location-uri-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-keywords-datatype-constraint]" + "player":"si:[pref_8:service-keywords-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:keywords]" + "player":"si:[pref_8:keywords]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" + "player":"si:[pref_8:service-keywords-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:keywords]" + "player":"si:[pref_8:keywords]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" + "player":"si:[pref_8:service-keywords-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-datatype-constraint]" + "player":"si:[pref_8:service-description-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:description]" + "player":"si:[pref_8:description]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-constraint]" + "player":"si:[pref_8:service-description-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:description]" + "player":"si:[pref_8:description]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-description-constraint]" + "player":"si:[pref_8:service-description-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-service-type-datatype-constraint]" + "player":"si:[pref_8:service-service-type-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:service-type]" + "player":"si:[pref_8:service-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" + "player":"si:[pref_8:service-service-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:service-type]" + "player":"si:[pref_8:service-type]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" + "player":"si:[pref_8:service-service-type-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-operation-datatype-constraint]" + "player":"si:[pref_8:service-operation-datatype-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:operation]" + "player":"si:[pref_8:operation]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" + "player":"si:[pref_8:service-operation-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:operation]" + "player":"si:[pref_8:operation]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" + "player":"si:[pref_8:service-operation-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-name-constraint]" + "player":"si:[pref_8:service-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:service-name]" + "player":"si:[pref_8:service-name]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-name-constraint]" + "player":"si:[pref_8:service-name-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:service-psi-constraint]" + "player":"si:[pref_8:service-psi-constraint]" }, { "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button-position]" + "player":"si:[pref_6:environment-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" + "player":"si:[pref_6:environment-editor-name-text]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" + "player":"si:[pref_6:environment-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" + "player":"si:[pref_6:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" + "player":"si:[pref_6:environment-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" + "player":"si:[pref_6:environment-editor-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_8:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" + "player":"si:[pref_6:environment-editor-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" + "player":"si:[pref_6:environment-editor-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-position]" + "player":"si:[pref_6:environment-editor-name-text-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" + "player":"si:[pref_6:environment-editor-text-label]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" + "player":"si:[pref_6:environment-editor-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" + "player":"si:[pref_6:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" + "player":"si:[pref_6:environment-editor-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" + "player":"si:[pref_6:environment-editor-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" + "player":"si:[pref_6:environment-editor-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" + "player":"si:[pref_6:environment-editor-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value]" + "player":"si:[pref_6:environment-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-position]" + "player":"si:[pref_6:environment-editor-text-label-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" + "player":"si:[pref_6:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" + "player":"si:[pref_6:environment-editor-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" + "player":"si:[pref_6:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" + "player":"si:[pref_6:environment-editor-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_5:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" + "player":"si:[pref_6:environment-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_5:tm-value]", "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" + "player":"si:[pref_6:environment-editor-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" + "player":"si:[pref_6:environment-editor-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:Environment]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_6:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" + "player":"si:[pref_6:environment-default-editor-topic-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button-position]" + "player":"si:[pref_6:environment-creator-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_6:environment-creator-name-text]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" + "player":"si:[pref_6:environment-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_6:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" + "player":"si:[pref_6:environment-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" + "player":"si:[pref_6:environment-creator-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_8:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" + "player":"si:[pref_6:environment-creator-name-text-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_6:environment-creator-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-position]" + "player":"si:[pref_6:environment-creator-name-text-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_6:environment-creator-text-label]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_6:environment-creator-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_6:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" + "player":"si:[pref_6:environment-creator-name-text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" + "player":"si:[pref_6:environment-creator-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_6:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" + "player":"si:[pref_6:environment-creator-text-label-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value]" + "player":"si:[pref_6:environment-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-position]" + "player":"si:[pref_6:environment-creator-text-label-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_6:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_6:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_6:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" + "player":"si:[pref_6:environment-creator-text-label]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_5:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_6:environment-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_5:tm-value]", "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" + "player":"si:[pref_6:environment-creator-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" + "player":"si:[pref_6:environment-creator-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:Environment]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_6:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" + "player":"si:[pref_6:environment-default-creator-topic-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Default-Value]" + "player":"si:[pref_4:Default-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_4:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Literal-Value]" + "player":"si:[pref_4:Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_4:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button-position]" + "player":"si:[pref_6:hash-object-editor-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_6:hash-object-editor-delete-button]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" + "player":"si:[pref_6:hash-object-editor-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" + "player":"si:[pref_6:hash-object-editor-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" + "player":"si:[pref_6:hash-object-editor-delete-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_6:hash-object-editor-text-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_6:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" + "player":"si:[pref_6:hash-object-editor-delete-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + "player":"si:[pref_6:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_8:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + "player":"si:[pref_6:hash-object-editor-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_6:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" + "player":"si:[pref_6:hash-object-editor-text-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_6:hash-object-editor-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_6:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" + "player":"si:[pref_6:hash-object-editor-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + "player":"si:[pref_6:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_6:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + "player":"si:[pref_6:hash-object-editor-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + "player":"si:[pref_6:hash-object-editor-text-label-value-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + "player":"si:[pref_6:hash-object-editor-text-label-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_6:hash-object-editor-text-key]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_6:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" + "player":"si:[pref_6:hash-object-editor-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + "player":"si:[pref_6:hash-object-editor-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_8:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + "player":"si:[pref_6:hash-object-editor-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_6:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-position]" + "player":"si:[pref_6:hash-object-editor-text-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_6:hash-object-editor-text-label-key]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_6:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" + "player":"si:[pref_6:hash-object-editor-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + "player":"si:[pref_6:hash-object-editor-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_6:hash-object-editor-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + "player":"si:[pref_6:hash-object-editor-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + "player":"si:[pref_6:hash-object-editor-text-label-key-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-position]" + "player":"si:[pref_6:hash-object-editor-text-label-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_6:hash-object-editor-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" + "player":"si:[pref_6:hash-object-editor-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:display-by]", + "type":"si:[pref_5:display-by]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_6:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_8:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_6:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_6:hash-object-has-environment-environment-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + "player":"si:[pref_6:hash-object-editor-text-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_6:hash-object-editor-text-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-position]" + "player":"si:[pref_6:hash-object-editor-text-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_6:hash-object-editor-text-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" + "player":"si:[pref_6:hash-object-editor-text-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_5:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_8:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_5:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_8:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_5:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_8:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_5:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_8:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + "player":"si:[pref_6:hash-object-has-environment-editor-association-view-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_6:hash-object-editor-text-label-env]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" + "player":"si:[pref_6:has-environment-editor-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_6:hash-object-editor-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_6:hash-object-editor-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + "player":"si:[pref_6:hash-object-editor-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + "player":"si:[pref_6:hash-object-editor-text-label-env-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + "player":"si:[pref_6:hash-object-editor-text-label-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_6:hash-object-editor-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" + "player":"si:[pref_6:hash-object-editor-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_5:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_5:tm-value]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_6:hash-object-editor-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" + "player":"si:[pref_6:hash-object-editor-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:Hash-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_6:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" + "player":"si:[pref_6:hash-object-default-editor-topic-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_4:Action-Button]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Delete-Button]" + "player":"si:[pref_4:Delete-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_4:Association-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Editor-Association-View]" + "player":"si:[pref_4:Editor-Association-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_4:Default-Topic-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" + "player":"si:[pref_4:Default-Editor-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" + "player":"si:[pref_6:hash-object-creator-commit-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_6:hash-object-creator-reset-button]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_6:hash-object-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" + "player":"si:[pref_6:hash-object-creator-commit-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_6:hash-object-creator-reset-button-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_6:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + "player":"si:[pref_6:hash-object-creator-reset-button-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" + "player":"si:[pref_6:hash-object-creator-reset-button-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" + "player":"si:[pref_6:hash-object-creator-reset-button-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_6:hash-object-creator-text-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_6:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" + "player":"si:[pref_6:hash-object-creator-reset-button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_6:hash-object-creator-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_8:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + "player":"si:[pref_6:hash-object-creator-text-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_6:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" + "player":"si:[pref_6:hash-object-creator-text-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_6:hash-object-creator-text-label-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_6:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" + "player":"si:[pref_6:hash-object-creator-text-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_6:hash-object-creator-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_6:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + "player":"si:[pref_6:hash-object-creator-text-label-value-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + "player":"si:[pref_6:hash-object-creator-text-label-value-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + "player":"si:[pref_6:hash-object-creator-text-label-value-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_6:hash-object-creator-text-key]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_6:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" + "player":"si:[pref_6:hash-object-creator-text-label-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_6:hash-object-creator-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_8:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + "player":"si:[pref_6:hash-object-creator-text-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_6:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" + "player":"si:[pref_6:hash-object-creator-text-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_6:hash-object-creator-text-label-key]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_6:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" + "player":"si:[pref_6:hash-object-creator-text-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_6:hash-object-creator-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_6:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + "player":"si:[pref_6:hash-object-creator-text-label-key-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + "player":"si:[pref_6:hash-object-creator-text-label-key-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + "player":"si:[pref_6:hash-object-creator-text-label-key-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_6:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" + "player":"si:[pref_6:hash-object-creator-text-label-key]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:display-by]", + "type":"si:[pref_5:display-by]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_6:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_8:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_6:hash-object-has-environment-environment-role-player]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_8:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_6:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + "player":"si:[pref_6:hash-object-has-environment-environment-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + "player":"si:[pref_6:hash-object-creator-text-list-box-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_6:hash-object-creator-text-list-box-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + "player":"si:[pref_6:hash-object-creator-text-list-box-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_6:hash-object-creator-text-list-box-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + "player":"si:[pref_6:hash-object-creator-text-list-box-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + "player":"si:[pref_6:hash-object-has-environment-hash-role-player]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_8:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + "player":"si:[pref_6:has-environment-hash-role-hidden-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_5:hidden-value]", "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + "player":"si:[pref_6:has-environment-hash-role-hidden-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + "player":"si:[pref_6:hash-object-has-environment-hash-role-player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_5:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_8:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_5:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_8:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_5:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_8:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", + "type":"si:[pref_5:association-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_8:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + "player":"si:[pref_6:hash-object-has-environement-creator-association-view-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_6:hash-object-creator-text-label-env]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" + "player":"si:[pref_6:has-environment-creator-association-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:view-binding]", + "type":"si:[pref_5:view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_6:hash-object-creator-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_6:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:value-group]", + "type":"si:[pref_5:value-group]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + "player":"si:[pref_6:hash-object-creator-text-label-env-value-group]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + "player":"si:[pref_6:hash-object-creator-text-label-env-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:position]", + "type":"si:[pref_5:position]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + "player":"si:[pref_6:hash-object-creator-text-label-env-position]" }, { "item_identifiers":null, - "type":"si:[pref_3:ancestor]", + "type":"si:[pref_5:ancestor]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:descendant]", + "type":"si:[pref_5:descendant]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_6:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" + "player":"si:[pref_6:hash-object-creator-text-label-env]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:value-binding]", + "type":"si:[pref_5:value-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_5:hidden-value]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_6:hash-hash-type-hidden-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:value]", + "type":"si:[pref_5:value]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" + "player":"si:[pref_6:hash-hash-type-default-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", + "type":"si:[pref_5:hidden-value]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_6:hash-hash-type-hidden-value]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_8:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" + "player":"si:[pref_6:hash-hash-type-hidden-value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", + "type":"si:[pref_5:topic-view-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-value]", + "type":"si:[pref_5:tm-value]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_6:hash-object-creator-view-binding]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", + "type":"si:[pref_5:tm-binding]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:descriptor]", + "type":"si:[pref_5:descriptor]", "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" + "player":"si:[pref_6:hash-object-creator-view-binding]" }, { "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", + "type":"si:[pref_5:tm-construct]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:Hash-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_3:contains]", + "type":"si:[pref_5:contains]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_3:container]", + "type":"si:[pref_5:container]", "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" + "player":"si:[pref_6:textgrid-ui-schema]" }, { "item_identifiers":null, - "type":"si:[pref_3:containee]", + "type":"si:[pref_5:containee]", "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" + "player":"si:[pref_6:hash-object-default-creator-topic-view]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_4:Action-Button]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Commit-Button]" + "player":"si:[pref_4:Commit-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Button]" + "player":"si:[pref_4:Button]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Action-Button]" + "player":"si:[pref_4:Action-Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:Text-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Button]" + "player":"si:[pref_4:Button]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Value-Group]" + "player":"si:[pref_4:Value-Group]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Position]" + "player":"si:[pref_4:Position]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:Text-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Text]" + "player":"si:[pref_4:Text]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:Text-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:List-Box]" + "player":"si:[pref_4:List-Box]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:Visible-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Text-Object]" + "player":"si:[pref_4:Text-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:Default-Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Default-Value]" + "player":"si:[pref_4:Default-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" + "player":"si:[pref_4:Default-Literal-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Literal-Value]" + "player":"si:[pref_4:Literal-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" + "player":"si:[pref_4:TM-Single-Type-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:TM-Value]" + "player":"si:[pref_4:TM-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:TM-Value]" + "player":"si:[pref_4:TM-Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_4:Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Hidden-Value]" + "player":"si:[pref_4:Hidden-Value]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Value]" + "player":"si:[pref_4:Value]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:Descriptor]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_4:Association-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" + "player":"si:[pref_4:Creator-Association-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:View]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Association-View]" + "player":"si:[pref_4:Association-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_4:Default-Topic-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" + "player":"si:[pref_4:Default-Creator-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Topic-View]" + "player":"si:[pref_4:Topic-View]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" + "player":"si:[pref_4:Default-Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:View]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Topic-View]" + "player":"si:[pref_4:Topic-View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:Visible-Object]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:View]" + "player":"si:[pref_4:View]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Visible-Object]" + "player":"si:[pref_4:Visible-Object]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_2:Descriptor]" + "player":"si:[pref_4:Descriptor]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_2:Role-Player]" + "player":"si:[pref_4:Role-Player]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_8:service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_8:has-hash-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_8:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" + "player":"si:[pref_8:has-hash-service-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:service]" + "player":"si:[pref_8:service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_8:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_8:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_8:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Service]" + "player":"si:[pref_7:Service]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" + "player":"si:[pref_8:has-hash-service-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_8:hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_8:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_8:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + "player":"si:[pref_8:has-hash-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_8:hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_8:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-hash]" + "player":"si:[pref_8:has-hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_8:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" + "player":"si:[pref_8:has-hash-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_8:hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_8:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_8:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + "player":"si:[pref_8:has-environment-hash-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:hash]" + "player":"si:[pref_8:hash]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_8:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_8:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_8:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" + "player":"si:[pref_8:has-environment-hash-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_8:environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_8:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_8:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + "player":"si:[pref_8:has-environment-environment-association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", + "type":"si:[pref_2:constrained-role]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:environment]" + "player":"si:[pref_8:environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_8:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:has-environment]" + "player":"si:[pref_8:has-environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_8:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" + "player":"si:[pref_8:has-environment-environment-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_8:value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" + "player":"si:[pref_8:hash-value-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_8:value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" + "player":"si:[pref_8:hash-value-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:value]" + "player":"si:[pref_8:value]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_8:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" + "player":"si:[pref_8:hash-value-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_8:key]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" + "player":"si:[pref_8:hash-key-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_8:key]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" + "player":"si:[pref_8:hash-key-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:key]" + "player":"si:[pref_8:key]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_8:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" + "player":"si:[pref_8:hash-key-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_8:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + "player":"si:[pref_8:hash-hash-type-datatype-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_8:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + "player":"si:[pref_8:hash-hash-type-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:hash-type]" + "player":"si:[pref_8:hash-type]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_8:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" + "player":"si:[pref_8:hash-hash-type-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_8:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" + "player":"si:[pref_8:environment-name-regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", + "type":"si:[pref_2:constrained-statement]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_4:environment-name]" + "player":"si:[pref_8:environment-name]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_8:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" + "player":"si:[pref_8:environment-name-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Environment]" + "player":"si:[pref_7:Environment]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" + "player":"si:[pref_8:environment-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", + "type":"si:[pref_2:constrained-topic-type]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_7:constrained]", + "type":"si:[pref_2:constrained]", "reifier":null, - "player":"si:[pref_5:Hash-Object]" + "player":"si:[pref_7:Hash-Object]" }, { "item_identifiers":null, - "type":"si:[pref_7:constraint]", + "type":"si:[pref_2:constraint]", "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" + "player":"si:[pref_8:hash-psi-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_7:association-role-constraint]" + "player":"si:[pref_2:association-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" + "player":"si:[pref_2:topic-role-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" + "player":"si:[pref_2:regular-expression-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" + "player":"si:[pref_2:topic-occurrence-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" + "player":"si:[pref_2:subject-identifier-constraint]" } ] }, { "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", + "type":"si:[pref_3:supertype-subtype]", "reifier":null, "scope":null, "roles":[{ "item_identifiers":null, - "type":"si:[pref_6:supertype]", + "type":"si:[pref_3:supertype]", "reifier":null, - "player":"si:[pref_7:constraint]" + "player":"si:[pref_2:constraint]" }, { "item_identifiers":null, - "type":"si:[pref_6:subtype]", + "type":"si:[pref_3:subtype]", "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" + "player":"si:[pref_2:topic-name-constraint]" } ] } From lgiessmann at common-lisp.net Tue Sep 20 12:52:27 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 05:52:27 -0700 Subject: [isidorus-cvs] r941 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt gwt/clean gwt/clean/images Message-ID: Author: lgiessmann Date: Tue Sep 20 05:52:26 2011 New Revision: 941 Log: Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A2129F0AE344FC42501813CCF04B050.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/6D39139623523FE22DD0A1C4428C29EB.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/831FD26922A45EFCAE2C26062C6C3AF1.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/B16E0AA3524A99950F1B4F2E723D5867.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/CF1EC56D78D1C5F0E42108D9652AAD05.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FE2CF90860C71AAD0A2931088AA91071.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A2129F0AE344FC42501813CCF04B050.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A2129F0AE344FC42501813CCF04B050.cache.html Tue Sep 20 05:52:26 2011 (r941) @@ -0,0 +1,1743 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/6D39139623523FE22DD0A1C4428C29EB.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/6D39139623523FE22DD0A1C4428C29EB.cache.html Tue Sep 20 05:52:26 2011 (r941) @@ -0,0 +1,1761 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/831FD26922A45EFCAE2C26062C6C3AF1.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/831FD26922A45EFCAE2C26062C6C3AF1.cache.html Tue Sep 20 05:52:26 2011 (r941) @@ -0,0 +1,1705 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/B16E0AA3524A99950F1B4F2E723D5867.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/B16E0AA3524A99950F1B4F2E723D5867.cache.html Tue Sep 20 05:52:26 2011 (r941) @@ -0,0 +1,1714 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/CF1EC56D78D1C5F0E42108D9652AAD05.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/CF1EC56D78D1C5F0E42108D9652AAD05.cache.html Tue Sep 20 05:52:26 2011 (r941) @@ -0,0 +1,1716 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FE2CF90860C71AAD0A2931088AA91071.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FE2CF90860C71AAD0A2931088AA91071.cache.html Tue Sep 20 05:52:26 2011 (r941) @@ -0,0 +1,1726 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Tue Sep 20 05:52:26 2011 (r941) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='0A2129F0AE344FC42501813CCF04B050',Pb='6D39139623523FE22DD0A1C4428C29EB',Qb='831FD26922A45EFCAE2C26062C6C3AF1',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + From lgiessmann at common-lisp.net Tue Sep 20 12:55:05 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 05:55:05 -0700 Subject: [isidorus-cvs] r942 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 20 05:55:04 2011 New Revision: 942 Log: gdl-frontend: Widgets: changed the isidorus constants Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 20 05:52:26 2011 (r941) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 20 05:55:04 2011 (r942) @@ -124,7 +124,7 @@ RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); try{ - this.createLoadScreenPanel("Wating for data", "Requesting all PSIs of instances of " + GdlWebPage.this.topicTypePsi + " from " + url); + this.createLoadScreenPanel("Wating for Data", "Requesting all PSIs of instances of " + GdlWebPage.this.topicTypePsi + " from " + url); builder.sendRequest(postData, new PsiRequest()); }catch(RequestException e){ e.printStackTrace(); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Tue Sep 20 05:52:26 2011 (r941) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Tue Sep 20 05:55:04 2011 (r942) @@ -1,7 +1,6 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; -import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -14,10 +13,10 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_GDL_Create_HashObject.jtm"; - //public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; - public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; - //public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; - public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; + public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_GDL_Create_HashObject.jtm"; + public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + //public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; + public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + //public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; } From lgiessmann at common-lisp.net Tue Sep 20 13:06:21 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 20 Sep 2011 06:06:21 -0700 Subject: [isidorus-cvs] r943 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Tue Sep 20 06:06:20 2011 New Revision: 943 Log: gdl-frontend: Widgets: updated the test schema file Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 05:55:04 2011 (r942) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Tue Sep 20 06:06:20 2011 (r943) @@ -106,6 +106,33 @@ "occurrences":null }, { + "subject_identifiers":["[pref_3:type-instance]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:instance]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { "subject_identifiers":["[pref_3:topic-name]" ], "subject_locators":null, From lgiessmann at common-lisp.net Wed Sep 21 07:32:21 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 00:32:21 -0700 Subject: [isidorus-cvs] r944 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/isidorus src/us/isidor/gdl/anaToMia/Widgets/text war/gdl_widgets Message-ID: Author: lgiessmann Date: Wed Sep 21 00:32:20 2011 New Revision: 944 Log: gdl-frontend: Widgets: fixed some error messages Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/EnvironmentPsis.json branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/HashObjectPsis.json Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Tue Sep 20 06:06:20 2011 (r943) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 21 00:32:20 2011 (r944) @@ -1,6 +1,7 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; +import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -13,10 +14,10 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_GDL_Create_HashObject.jtm"; - public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; - //public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; - public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; - //public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; + //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm"; + //public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; + //public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java Tue Sep 20 06:06:20 2011 (r943) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java Wed Sep 21 00:32:20 2011 (r944) @@ -42,11 +42,11 @@ ArrayList options = new ArrayList(); // get the explicitly set TM-Values and Literal-Values. - // if no values were set explecitly, get the values for the constraint + // if no values were set explicitly, get the values for the constraint ArrayList exLiteralValues = this.getLiterals(); ArrayList exTmValues = this.getTmValues(); if(exLiteralValues.size() != 0 && exTmValues.size() != 0){ - throw new InvalidGdlSchemaException("found literal values and tm values for the value group " + TmHelper.getAnyIdOfTopic(this.getValueGroup()) + ", but mixin literal and tm-values for a value group is not allowed!"); + throw new InvalidGdlSchemaException("found literal values and tm values for the value group " + TmHelper.getAnyIdOfTopic(this.getValueGroup()) + ", but mixing literal and tm-values for a value group is not allowed!"); } else if(exLiteralValues.size() != 0){ options = exLiteralValues; } else if(exTmValues.size() != 0){ @@ -65,7 +65,7 @@ if(tmValues.size() != 0){ for (Topic topic : tmValues) options.add(this.getTopicRepresentation(topic, this.getDisplayByOfValueGroup(), this.getPreferredScopeOfValueGroup())); } else { - throw new InvalidGdlSchemaException("found no value to display for the value-group" + TmHelper.getAnyIdOfTopic(this.getValueGroup())); + throw new InvalidGdlSchemaException("found no value to display for the value-group " + TmHelper.getAnyIdOfTopic(this.getValueGroup())); } } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/EnvironmentPsis.json ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/EnvironmentPsis.json Tue Sep 20 06:06:20 2011 (r943) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/EnvironmentPsis.json Wed Sep 21 00:32:20 2011 (r944) @@ -1,23 +1 @@ -{ - "topics": - [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ] -} \ No newline at end of file +{"topics":["","","",""]} \ No newline at end of file Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/HashObjectPsis.json ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/HashObjectPsis.json Tue Sep 20 06:06:20 2011 (r943) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/HashObjectPsis.json Wed Sep 21 00:32:20 2011 (r944) @@ -1,101 +1 @@ -{ - "topics": - [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ] -} \ No newline at end of file +{"topics":["",""]} \ No newline at end of file From lgiessmann at common-lisp.net Wed Sep 21 07:50:25 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 00:50:25 -0700 Subject: [isidorus-cvs] r945 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 00:50:25 2011 New Revision: 945 Log: gdl-frontend: Widgets: changed the isidorus contants to the productive values Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 21 00:32:20 2011 (r944) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 21 00:50:25 2011 (r945) @@ -1,7 +1,6 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; -import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.Window; @@ -14,10 +13,10 @@ public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; - //public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; - public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm"; - //public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; - public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; - //public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; - public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; + public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; + //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm"; + public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + //public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; + public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + //public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; } From lgiessmann at common-lisp.net Wed Sep 21 08:18:17 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 01:18:17 -0700 Subject: [isidorus-cvs] r946 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 01:18:16 2011 New Revision: 946 Log: gdl-frontend: Widgets: started to implement a separate delete-handler for environment topics => each hash-object associated with the environment that will be deleted must also be deleted and the delete-operation must be confirmed by the user Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 00:50:25 2011 (r945) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 01:18:16 2011 (r946) @@ -18,12 +18,21 @@ import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes; +import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; +import us.isidor.gdl.anaToMia.Widgets.base.Utils; import us.isidor.gdl.anaToMia.Widgets.environment.IDeleteCallback; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; public class DeleteCallback implements IDeleteCallback { - public final String REUQEST_URL = IsidorusConstants.DELETE_REQUEST_URL; + private final String REUQEST_URL = IsidorusConstants.DELETE_REQUEST_URL; + private final String TM_SPARQL_QUERY_PART_1 = "PREFIX types:\n" + + "PREFIX model:\n" + + "PREFIX env:\n" + + "SELECT ?topics WHERE {\n" + + "?topics a types:Hash-Object.\n" + + "?topics model:environment env:"; + private final String TM_SPARQL_QUERY_PART_2 = ".\n}"; @Override @@ -35,36 +44,61 @@ private void deleteTopic(ArrayList> constructs, TmEngine tmEngine){ for (Pair pair : constructs) { if(pair.getSecond().equals(TopicMapsTypes.Topic)){ - Topic env = (Topic)pair.getFirst(); - if(env.getSubjectIdentifiers().length() != 0){ - String psi = env.getSubjectIdentifiers().get(0).getReference(); - - JSONArray psis = new JSONArray(); - psis.set(0, new JSONString(psi)); - - JSONObject delObj = new JSONObject(); - delObj.put("type", new JSONString("Topic")); - - try{ - JSONValue val = JSONParser.parseStrict(tmEngine.exportTm(env)); - delObj.put("delete", val.isObject()); - - String url = URL.encode(this.REUQEST_URL); - RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); - builder.setHeader("Content-type", "application/json"); - - builder.sendRequest(delObj.toString(), new DeleteRequest(delObj, env)); - }catch(RequestException e){ - Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); - }catch(ExporterException e){ - Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); - } - } + Topic top = (Topic)pair.getFirst(); + + if(TmHelper.isInstanceOf(top, IsidorusConstants.ENVIRONMENT_PSI)) this.deleteEnvironmentTopic(top); + else this.deleteNonEnvironment(top, tmEngine); } } } + + private String createTmSparqlQuery(Topic environment){ + String psi = environment.getSubjectLocators().get(0).getReference(); + String psiSuffix = Utils.splitUriByLastFragment(psi)[1]; + return this.TM_SPARQL_QUERY_PART_1 + psiSuffix + this.TM_SPARQL_QUERY_PART_2; + } + + + private void deleteEnvironmentTopic(Topic env){ + Window.alert(this.createTmSparqlQuery(env)); + // TODO: get all associated hash-objects + // TODO: create a list for the user + // TODO: check the user's input + // TODO: delete all hash-objects + // TODO: delete the environment + } + + + private void deleteNonEnvironment(Topic top, TmEngine tmEngine){ + if(top.getSubjectIdentifiers().length() != 0){ + String psi = top.getSubjectIdentifiers().get(0).getReference(); + + JSONArray psis = new JSONArray(); + psis.set(0, new JSONString(psi)); + + JSONObject delObj = new JSONObject(); + delObj.put("type", new JSONString("Topic")); + + try{ + JSONValue val = JSONParser.parseStrict(tmEngine.exportTm(top)); + delObj.put("delete", val.isObject()); + + String url = URL.encode(this.REUQEST_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); + builder.setHeader("Content-type", "application/json"); + + builder.sendRequest(delObj.toString(), new DeleteRequest(delObj, top)); + }catch(RequestException e){ + Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); + }catch(ExporterException e){ + Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); + } + } + } + + private class DeleteRequest implements RequestCallback { private JSONObject objectToBeSend = null; private Topic topicToBeDeleted = null; @@ -85,7 +119,6 @@ if (200 == response.getStatusCode()) { Window.Location.reload(); this.topicToBeDeleted.remove(); - // TODO: reset the web page } else { Window.alert("delete operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); } From lgiessmann at common-lisp.net Wed Sep 21 08:24:00 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 01:24:00 -0700 Subject: [isidorus-cvs] r947 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Wed Sep 21 01:23:59 2011 New Revision: 947 Log: gdl-frontend: removed the old hosted files Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A2129F0AE344FC42501813CCF04B050.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/6D39139623523FE22DD0A1C4428C29EB.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/831FD26922A45EFCAE2C26062C6C3AF1.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/B16E0AA3524A99950F1B4F2E723D5867.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/CF1EC56D78D1C5F0E42108D9652AAD05.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/FE2CF90860C71AAD0A2931088AA91071.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Wed Sep 21 09:37:02 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 02:37:02 -0700 Subject: [isidorus-cvs] r948 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 02:37:02 2011 New Revision: 948 Log: gdl-frontend: Widgets: added a request that gets all psis of hash-object instances for a particular environment topic Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 01:23:59 2011 (r947) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 02:37:02 2011 (r948) @@ -26,6 +26,7 @@ public class DeleteCallback implements IDeleteCallback { private final String REUQEST_URL = IsidorusConstants.DELETE_REQUEST_URL; + private final String TM_SPARQL_URL = IsidorusConstants.TM_SPARQL_ENDPOINT; private final String TM_SPARQL_QUERY_PART_1 = "PREFIX types:\n" + "PREFIX model:\n" + "PREFIX env:\n" + @@ -33,6 +34,17 @@ "?topics a types:Hash-Object.\n" + "?topics model:environment env:"; private final String TM_SPARQL_QUERY_PART_2 = ".\n}"; + private GdlWebPage gdlWebPage = null; + private HashObjectPsiContainer hashObjectPsiContainer = new HashObjectPsiContainer(null); + + + @SuppressWarnings("unused") + private DeleteCallback(){} + + + public DeleteCallback(GdlWebPage gdlWebPage){ + this.gdlWebPage = gdlWebPage; + } @Override @@ -55,19 +67,82 @@ private String createTmSparqlQuery(Topic environment){ - String psi = environment.getSubjectLocators().get(0).getReference(); + String psi = environment.getSubjectIdentifiers().get(0).getReference(); String psiSuffix = Utils.splitUriByLastFragment(psi)[1]; return this.TM_SPARQL_QUERY_PART_1 + psiSuffix + this.TM_SPARQL_QUERY_PART_2; } private void deleteEnvironmentTopic(Topic env){ - Window.alert(this.createTmSparqlQuery(env)); - // TODO: get all associated hash-objects - // TODO: create a list for the user - // TODO: check the user's input - // TODO: delete all hash-objects - // TODO: delete the environment + String url = URL.encode(this.TM_SPARQL_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); + try{ + DeleteCallback.this.gdlWebPage.createLoadScreenPanel("Wating for Data", "Requesting all PSIs of instances of " + IsidorusConstants.HASH_OBJECT_PSI + " that are associated with " + env.getSubjectIdentifiers().get(0).getReference() + " from " + url); + builder.sendRequest(this.createTmSparqlQuery(env), new GetHashObjectPsisRequest()); + }catch(RequestException e){ + e.printStackTrace(); + Window.alert("could not request existing instances of " + IsidorusConstants.HASH_OBJECT_PSI + ", because(" + e.getClass() + "): " + e.getMessage()); + DeleteCallback.this.gdlWebPage.resetPage(); + } + } + + + private class GetHashObjectPsisRequest implements RequestCallback { + public GetHashObjectPsisRequest(){} + + + @Override + public void onResponseReceived(Request request, Response response) { + if (200 == response.getStatusCode()) { + JSONValue psiVals = JSONParser.parseStrict(response.getText()); + JSONObject resultObject = psiVals.isObject(); + if(resultObject == null) Window.alert("got bad json, a query result object was expected, but got: " + response.getText()); + + JSONValue content = resultObject.get("topics"); + if(content == null) Window.alert("got bad json, a query result object was expected, but got: " + response.getText()); + + JSONArray psis = null; + if(psiVals != null) psis = content.isArray(); + if(psis != null){ + for(int psisIdx = 0; psisIdx != psis.size(); ++psisIdx){ + JSONValue psiVal = psis.get(psisIdx); + JSONString psiString = null; + if(psiVal != null) psiString = psiVal.isString(); + String psiValue = null; + if(psiString != null){ + psiValue = psiString.stringValue(); + if(psiValue.startsWith("<")) psiValue = psiValue.substring(1); + if(psiValue.endsWith(">")) psiValue = psiValue.substring(0, psiValue.length() - 1); + } + DeleteCallback.this.hashObjectPsiContainer.addHashObjectPsi(psiValue); + } + } + + DeleteCallback.this.gdlWebPage.setHashObjectPsiContainer(DeleteCallback.this.hashObjectPsiContainer); + } else { + Window.alert("could not request existing instances of " + IsidorusConstants.HASH_OBJECT_PSI + ", because(" + response.getStatusCode() + "): " + response.getStatusText()); + } + DeleteCallback.this.gdlWebPage.removeLoadScreenPanel(); + + + + // TODO: check the user's input + // TODO: delete all hash-objects + // TODO: delete the environment + } + + + @Override + public void onError(Request request, Throwable exception) { + String message = null; + Class eClass = null; + if(exception != null){ + message = exception.getMessage(); + eClass = exception.getClass(); + } + Window.alert("could not request existing instances of " + IsidorusConstants.HASH_OBJECT_PSI + ", because(" + eClass + "): " + message); + DeleteCallback.this.gdlWebPage.resetPage(); + } } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 01:23:59 2011 (r947) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 02:37:02 2011 (r948) @@ -34,12 +34,14 @@ private String topicTypePsi = null; private HorizontalPanel mainPanel = new HorizontalPanel(); private VerticalPanel navigationPanel = new VerticalPanel(); + private VerticalPanel contentPanel = new VerticalPanel(); private Button createNewButton = new Button("create new"); private PsiContainer psiContainer = null; private GdlPanel gdlPanel = null; private LoadScreenPanel loadScreenPanel = null; private final String GDL_PANEL_STYLE_NAME = "gdl_panel"; private final String CREATE_NEW_BUTTON_STYLE_NAME = "create_new_button"; + private HashObjectPsiContainer hashObjectPsicontainer = null; public GdlWebPage(String topicTypePsi) throws ExecutionException{ @@ -62,6 +64,7 @@ RootPanel.get("GWT_Content").add(this.mainPanel); this.mainPanel.add(this.navigationPanel); + this.mainPanel.add(this.contentPanel); this.mainPanel.setPixelSize(1024, 700); this.navigationPanel.add(this.createNewButton); try{ @@ -89,6 +92,20 @@ } + public void setHashObjectPsiContainer(HashObjectPsiContainer psiContainer){ + if(this.hashObjectPsicontainer != null) this.hashObjectPsicontainer.removeFromParent(); + this.hashObjectPsicontainer = psiContainer; + if(this.hashObjectPsicontainer != null) this.contentPanel.insert(this.hashObjectPsicontainer, this.contentPanel.getWidgetCount()); + } + + + public void setGdlPanel(GdlPanel gdlPanel){ + if(this.gdlPanel != null) this.gdlPanel.removeFromParent(); + this.gdlPanel = gdlPanel; + if(this.gdlPanel != null) this.contentPanel.add(this.gdlPanel); + } + + public void removeLoadScreenPanel(){ if(this.loadScreenPanel != null) this.loadScreenPanel.removeFromParent(); } @@ -138,16 +155,15 @@ @Override public void onClick(ClickEvent event) { try{ - if(GdlWebPage.this.gdlPanel != null) GdlWebPage.this.gdlPanel.removeFromParent(); ArrayList> topicsToCreate = new ArrayList>(); topicsToCreate.add(new Pair(GdlWebPage.this.topicTypePsi, TopicIdentifierTypes.SubjectIdentifier)); - GdlWebPage.this.gdlPanel = new GdlPanel(null, topicsToCreate, 362, 160); - GdlWebPage.this.mainPanel.add(gdlPanel); + GdlPanel gdlPanel = new GdlPanel(null, topicsToCreate, 362, 160); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); gdlPanel.setCommitCallback(new CommitCallback()); - gdlPanel.setDeleteCallback(new DeleteCallback()); + gdlPanel.setDeleteCallback(new DeleteCallback(GdlWebPage.this)); gdlPanel.addStyleName(GdlWebPage.this.GDL_PANEL_STYLE_NAME); + GdlWebPage.this.setGdlPanel(gdlPanel); gdlPanel.loadSchema(); }catch(Exception e){ e.printStackTrace(); @@ -165,13 +181,12 @@ if(obj instanceof Label){ Label source = (Label)obj; try{ - if(GdlWebPage.this.gdlPanel != null) GdlWebPage.this.gdlPanel.removeFromParent(); - GdlWebPage.this.gdlPanel = new GdlPanel(new Pair(source.getText(), TopicIdentifierTypes.SubjectIdentifier), null, 362, 160); - GdlWebPage.this.mainPanel.add(gdlPanel); + GdlPanel gdlPanel = new GdlPanel(new Pair(source.getText(), TopicIdentifierTypes.SubjectIdentifier), null, 362, 160); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); gdlPanel.setCommitCallback(new CommitCallback()); - gdlPanel.setDeleteCallback(new DeleteCallback()); + gdlPanel.setDeleteCallback(new DeleteCallback(GdlWebPage.this)); + GdlWebPage.this.setGdlPanel(gdlPanel); gdlPanel.loadSchema(); gdlPanel.addStyleName(GdlWebPage.this.GDL_PANEL_STYLE_NAME); Window.scrollTo(0, 0); Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 02:37:02 2011 (r948) @@ -0,0 +1,53 @@ +package us.isidor.gdl.anaToMia.Widgets.isidorus; + + + +import java.util.ArrayList; +import com.google.gwt.event.dom.client.ClickHandler; +import com.google.gwt.user.client.ui.Button; +import com.google.gwt.user.client.ui.CheckBox; +import com.google.gwt.user.client.ui.Composite; +import com.google.gwt.user.client.ui.Label; +import com.google.gwt.user.client.ui.VerticalPanel; +import com.google.gwt.user.client.ui.Widget; + + +public class HashObjectPsiContainer extends Composite { + private ArrayList psiCheckBoxes = new ArrayList(); + private VerticalPanel containerPanel = new VerticalPanel(); + private Button commitButton = new Button("delete"); + + + private HashObjectPsiContainer(){ + this.initWidget(this.containerPanel); + this.containerPanel.add(this.commitButton); + } + + + public HashObjectPsiContainer(ClickHandler buttonClikcHandler){ + this(); + + if(buttonClikcHandler != null) this.commitButton.addClickHandler(buttonClikcHandler); + } + + + public void addHashObjectPsi(String psi){ + if(psi == null) return; + + this.commitButton.removeFromParent(); + CheckBox cbx = new CheckBox(psi); + this.psiCheckBoxes.add(cbx); + + int widgetIdx = 0; + for( ; widgetIdx != this.containerPanel.getWidgetCount(); ++widgetIdx){ + Widget wdgt = this.containerPanel.getWidget(widgetIdx); + if((wdgt instanceof Label) && ((Label)wdgt).getText().compareTo(psi) >= 0){ + this.containerPanel.insert(cbx, widgetIdx); + break; + } + } + + if(widgetIdx == this.containerPanel.getWidgetCount()) this.containerPanel.add(cbx); + this.containerPanel.insert(this.commitButton, this.containerPanel.getWidgetCount()); + } +} Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 21 01:23:59 2011 (r947) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Wed Sep 21 02:37:02 2011 (r948) @@ -10,13 +10,14 @@ public final static String HASH_OBJECT_PSI = "http://textgrid.org/serviceregistry/model/types/Hash-Object"; public final static String ENVIRONMENT_PSI = "http://textgrid.org/serviceregistry/model/types/Environment"; public final static String HASH_VALUE_OCCURRENCE_TYPE = "http://textgrid.org/serviceregistry/model/value"; + public final static String TM_SPARQL_ENDPOINT = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; public final static String GET_FRAGMENT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/fragment/"; public final static String GET_SCHEMA_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/schema"; //public final static String GET_SCHEMA_REQUEST_URL = GWT.getModuleBaseURL() + "TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm"; - public final static String GET_HASH_OBJECT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + public final static String GET_HASH_OBJECT_PSIS_URL = IsidorusConstants.TM_SPARQL_ENDPOINT; //public final static String GET_HASH_OBJECT_PSIS_URL = GWT.getModuleBaseURL() + "HashObjectPsis.json"; - public final static String GET_ENVIRONMENT_PSIS_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; + public final static String GET_ENVIRONMENT_PSIS_URL = IsidorusConstants.TM_SPARQL_ENDPOINT; //public final static String GET_ENVIRONMENT_PSIS_URL = GWT.getModuleBaseURL() + "EnvironmentPsis.json"; } From lgiessmann at common-lisp.net Wed Sep 21 10:08:03 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 03:08:03 -0700 Subject: [isidorus-cvs] r949 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/isidorus war Message-ID: Author: lgiessmann Date: Wed Sep 21 03:08:03 2011 New Revision: 949 Log: gdl-frontend: Widgets: fixed some bugs in the GdlWebPage class Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 02:37:02 2011 (r948) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 03:08:03 2011 (r949) @@ -35,7 +35,7 @@ "?topics model:environment env:"; private final String TM_SPARQL_QUERY_PART_2 = ".\n}"; private GdlWebPage gdlWebPage = null; - private HashObjectPsiContainer hashObjectPsiContainer = new HashObjectPsiContainer(null); + private HashObjectPsiContainer hashObjectPsiContainer = new HashObjectPsiContainer(); @SuppressWarnings("unused") @@ -123,12 +123,6 @@ Window.alert("could not request existing instances of " + IsidorusConstants.HASH_OBJECT_PSI + ", because(" + response.getStatusCode() + "): " + response.getStatusText()); } DeleteCallback.this.gdlWebPage.removeLoadScreenPanel(); - - - - // TODO: check the user's input - // TODO: delete all hash-objects - // TODO: delete the environment } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 02:37:02 2011 (r948) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 03:08:03 2011 (r949) @@ -78,7 +78,8 @@ public void resetPage() { this.removeLoadScreenPanel(); - if(gdlPanel != null) this.gdlPanel.removeFromParent(); + if(this.hashObjectPsicontainer != null) this.hashObjectPsicontainer.removeFromParent(); + if(this.gdlPanel != null) this.gdlPanel.removeFromParent(); if(this.psiContainer != null) this.psiContainer.removeFromParent(); if(this.createNewButton != null) this.createNewButton.removeFromParent(); @@ -101,6 +102,7 @@ public void setGdlPanel(GdlPanel gdlPanel){ if(this.gdlPanel != null) this.gdlPanel.removeFromParent(); + if(this.hashObjectPsicontainer != null) this.hashObjectPsicontainer.removeFromParent(); this.gdlPanel = gdlPanel; if(this.gdlPanel != null) this.contentPanel.add(this.gdlPanel); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 02:37:02 2011 (r948) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 03:08:03 2011 (r949) @@ -3,7 +3,10 @@ import java.util.ArrayList; + +import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; +import com.google.gwt.user.client.Window; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.CheckBox; import com.google.gwt.user.client.ui.Composite; @@ -15,19 +18,14 @@ public class HashObjectPsiContainer extends Composite { private ArrayList psiCheckBoxes = new ArrayList(); private VerticalPanel containerPanel = new VerticalPanel(); - private Button commitButton = new Button("delete"); + private Button commitButton = new Button("delete the Environment topic and all its Hash-Object topics"); + private final String ERROR_STYLE_CLASS = "bad_input"; - private HashObjectPsiContainer(){ + public HashObjectPsiContainer(){ this.initWidget(this.containerPanel); this.containerPanel.add(this.commitButton); - } - - - public HashObjectPsiContainer(ClickHandler buttonClikcHandler){ - this(); - - if(buttonClikcHandler != null) this.commitButton.addClickHandler(buttonClikcHandler); + this.commitButton.addClickHandler(new HashObjectPsiContainerClickHandler()); } @@ -50,4 +48,28 @@ if(widgetIdx == this.containerPanel.getWidgetCount()) this.containerPanel.add(cbx); this.containerPanel.insert(this.commitButton, this.containerPanel.getWidgetCount()); } + + + private class HashObjectPsiContainerClickHandler implements ClickHandler { + public HashObjectPsiContainerClickHandler(){} + + + @Override + public void onClick(ClickEvent event) { + boolean allValuesChecked = true; + for (CheckBox cbx : HashObjectPsiContainer.this.psiCheckBoxes) { + if(!cbx.getValue()){ + cbx.addStyleName(HashObjectPsiContainer.this.ERROR_STYLE_CLASS); + allValuesChecked = false; + } + } + + if(!allValuesChecked){ + Window.alert("to delete the an environment topic, please select explicit all associated hash-object topics to be deleted!"); + } else { + // TODO: delete all hash-objects + // TODO: delete the environment + } + } + } } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Wed Sep 21 02:37:02 2011 (r948) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Wed Sep 21 03:08:03 2011 (r949) @@ -70,4 +70,9 @@ .create_new_button { margin-bottom: 2em; +} + + +.bad_input { + color: red; } \ No newline at end of file From lgiessmann at common-lisp.net Wed Sep 21 10:39:12 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 03:39:12 -0700 Subject: [isidorus-cvs] r950 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/isidorus war Message-ID: Author: lgiessmann Date: Wed Sep 21 03:39:11 2011 New Revision: 950 Log: gdl-frontend: Widgets: changed the style of the HashObjectPsiContainer Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 03:08:03 2011 (r949) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 03:39:11 2011 (r950) @@ -41,6 +41,7 @@ private LoadScreenPanel loadScreenPanel = null; private final String GDL_PANEL_STYLE_NAME = "gdl_panel"; private final String CREATE_NEW_BUTTON_STYLE_NAME = "create_new_button"; + private final String HASH_OBJECT_PSI_CONTAINER_STYLE_NAME = "hash_object_psi_container"; private HashObjectPsiContainer hashObjectPsicontainer = null; @@ -96,7 +97,10 @@ public void setHashObjectPsiContainer(HashObjectPsiContainer psiContainer){ if(this.hashObjectPsicontainer != null) this.hashObjectPsicontainer.removeFromParent(); this.hashObjectPsicontainer = psiContainer; - if(this.hashObjectPsicontainer != null) this.contentPanel.insert(this.hashObjectPsicontainer, this.contentPanel.getWidgetCount()); + if(this.hashObjectPsicontainer != null){ + this.contentPanel.insert(this.hashObjectPsicontainer, this.contentPanel.getWidgetCount()); + this.hashObjectPsicontainer.addStyleName(this.HASH_OBJECT_PSI_CONTAINER_STYLE_NAME); + } } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 03:08:03 2011 (r949) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 03:39:11 2011 (r950) @@ -6,6 +6,7 @@ import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; +import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.Window; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.CheckBox; @@ -26,6 +27,8 @@ this.initWidget(this.containerPanel); this.containerPanel.add(this.commitButton); this.commitButton.addClickHandler(new HashObjectPsiContainerClickHandler()); + DOM.setStyleAttribute(this.commitButton.getElement(), "width", "100%"); + DOM.setStyleAttribute(this.commitButton.getElement(), "marginTop", "1em"); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Wed Sep 21 03:08:03 2011 (r949) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Wed Sep 21 03:39:11 2011 (r950) @@ -62,6 +62,12 @@ } +.hash_object_psi_container { + border: rgb(134, 169, 203) 1px solid; + border-radius: 5px; +} + + .gdl_panel { margin-left:auto; margin-right:0; From lgiessmann at common-lisp.net Wed Sep 21 10:50:48 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 03:50:48 -0700 Subject: [isidorus-cvs] r951 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/isidorus war Message-ID: Author: lgiessmann Date: Wed Sep 21 03:50:47 2011 New Revision: 951 Log: gdl-frontend: Widgets: changed the style of the GdlWebPage's main panel => static width Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 03:39:11 2011 (r950) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 03:50:47 2011 (r951) @@ -42,6 +42,7 @@ private final String GDL_PANEL_STYLE_NAME = "gdl_panel"; private final String CREATE_NEW_BUTTON_STYLE_NAME = "create_new_button"; private final String HASH_OBJECT_PSI_CONTAINER_STYLE_NAME = "hash_object_psi_container"; + private final String MAIN_PANEL_STYLE_CLASS = "content_panel"; private HashObjectPsiContainer hashObjectPsicontainer = null; @@ -53,6 +54,7 @@ public void createWebPage(){ + this.contentPanel.addStyleName(this.MAIN_PANEL_STYLE_CLASS); this.createNewButton.addStyleName(this.CREATE_NEW_BUTTON_STYLE_NAME); DOM.setStyleAttribute(this.createNewButton.getElement(), "marginBottom", "1em"); try{ Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Wed Sep 21 03:39:11 2011 (r950) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Wed Sep 21 03:50:47 2011 (r951) @@ -65,6 +65,12 @@ .hash_object_psi_container { border: rgb(134, 169, 203) 1px solid; border-radius: 5px; + padding: 0.5em; +} + + +.main_panel tr td { + width: 50%; } From lgiessmann at common-lisp.net Wed Sep 21 10:57:49 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 03:57:49 -0700 Subject: [isidorus-cvs] r952 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 03:57:49 2011 New Revision: 952 Log: gdl-frontend: Widgets: fixed a bug in the style of the GdlWebPage's main panel Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 03:50:47 2011 (r951) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 03:57:49 2011 (r952) @@ -54,7 +54,7 @@ public void createWebPage(){ - this.contentPanel.addStyleName(this.MAIN_PANEL_STYLE_CLASS); + this.mainPanel.addStyleName(this.MAIN_PANEL_STYLE_CLASS); this.createNewButton.addStyleName(this.CREATE_NEW_BUTTON_STYLE_NAME); DOM.setStyleAttribute(this.createNewButton.getElement(), "marginBottom", "1em"); try{ From lgiessmann at common-lisp.net Wed Sep 21 11:06:00 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 04:06:00 -0700 Subject: [isidorus-cvs] r953 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war Message-ID: Author: lgiessmann Date: Wed Sep 21 04:06:00 2011 New Revision: 953 Log: gdl-frontend: Widgets: fixed a bug in the project's css file Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Wed Sep 21 03:57:49 2011 (r952) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/GDL_Widgets.css Wed Sep 21 04:06:00 2011 (r953) @@ -69,7 +69,7 @@ } -.main_panel tr td { +.content_panel > tbody > tr > td { width: 50%; } From lgiessmann at common-lisp.net Wed Sep 21 11:20:43 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 04:20:43 -0700 Subject: [isidorus-cvs] r954 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 04:20:42 2011 New Revision: 954 Log: gdl-frontend: Widgets: if the user clicked the delete button of an environment topic, this button is disabled, so the user is only able to click the delete button of the generated HashObjectPsiContainer panel Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 04:06:00 2011 (r953) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 04:20:42 2011 (r954) @@ -1,6 +1,8 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; import java.util.ArrayList; +import com.google.gwt.dom.client.ButtonElement; +import com.google.gwt.dom.client.Element; import com.google.gwt.http.client.Request; import com.google.gwt.http.client.RequestBuilder; import com.google.gwt.http.client.RequestCallback; @@ -12,6 +14,7 @@ import com.google.gwt.json.client.JSONParser; import com.google.gwt.json.client.JSONString; import com.google.gwt.json.client.JSONValue; +import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.Window; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.ExporterException; import us.isidor.gdl.anaToMia.TopicMaps.TmEngineModel.TmEngine; @@ -49,6 +52,11 @@ @Override public void deleteTmConstruct(ArrayList> constructs, TmEngine tmEngine, String buttonId) { + if(buttonId != null){ + Element elem = DOM.getElementById(buttonId); + ButtonElement btnElem = (ButtonElement)elem; + btnElem.setDisabled(true); + } this.deleteTopic(constructs, tmEngine); } @@ -59,13 +67,12 @@ Topic top = (Topic)pair.getFirst(); if(TmHelper.isInstanceOf(top, IsidorusConstants.ENVIRONMENT_PSI)) this.deleteEnvironmentTopic(top); - else this.deleteNonEnvironment(top, tmEngine); + else this.deleteNonEnvironmentTopic(top, tmEngine); } } } - private String createTmSparqlQuery(Topic environment){ String psi = environment.getSubjectIdentifiers().get(0).getReference(); String psiSuffix = Utils.splitUriByLastFragment(psi)[1]; @@ -140,7 +147,7 @@ } - private void deleteNonEnvironment(Topic top, TmEngine tmEngine){ + private void deleteNonEnvironmentTopic(Topic top, TmEngine tmEngine){ if(top.getSubjectIdentifiers().length() != 0){ String psi = top.getSubjectIdentifiers().get(0).getReference(); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 04:06:00 2011 (r953) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 04:20:42 2011 (r954) @@ -21,6 +21,7 @@ private VerticalPanel containerPanel = new VerticalPanel(); private Button commitButton = new Button("delete the Environment topic and all its Hash-Object topics"); private final String ERROR_STYLE_CLASS = "bad_input"; + private CheckBoxClickHandler cbxClickHandler = new CheckBoxClickHandler(); public HashObjectPsiContainer(){ @@ -48,11 +49,25 @@ } } + cbx.addClickHandler(this.cbxClickHandler); + if(widgetIdx == this.containerPanel.getWidgetCount()) this.containerPanel.add(cbx); this.containerPanel.insert(this.commitButton, this.containerPanel.getWidgetCount()); } + private class CheckBoxClickHandler implements ClickHandler{ + @Override + public void onClick(ClickEvent event) { + Object obj = event.getSource(); + if(obj instanceof CheckBox){ + CheckBox source = (CheckBox) obj; + if(source.getValue()) source.removeStyleName(HashObjectPsiContainer.this.ERROR_STYLE_CLASS); + } + } + } + + private class HashObjectPsiContainerClickHandler implements ClickHandler { public HashObjectPsiContainerClickHandler(){} From lgiessmann at common-lisp.net Wed Sep 21 13:02:13 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 06:02:13 -0700 Subject: [isidorus-cvs] r955 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 06:02:11 2011 New Revision: 955 Log: gdl-frontend: Widgets: finalised the implementation of the delete-operation of environment topics Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 04:20:42 2011 (r954) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 06:02:11 2011 (r955) @@ -23,6 +23,7 @@ import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes; import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; import us.isidor.gdl.anaToMia.Widgets.base.Utils; +import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import us.isidor.gdl.anaToMia.Widgets.environment.IDeleteCallback; import us.isidor.gdl.anaToMia.Widgets.environment.Pair; @@ -38,7 +39,7 @@ "?topics model:environment env:"; private final String TM_SPARQL_QUERY_PART_2 = ".\n}"; private GdlWebPage gdlWebPage = null; - private HashObjectPsiContainer hashObjectPsiContainer = new HashObjectPsiContainer(); + private HashObjectPsiContainer hashObjectPsiContainer = null; @SuppressWarnings("unused") @@ -83,13 +84,23 @@ private void deleteEnvironmentTopic(Topic env){ String url = URL.encode(this.TM_SPARQL_URL); RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); - try{ - DeleteCallback.this.gdlWebPage.createLoadScreenPanel("Wating for Data", "Requesting all PSIs of instances of " + IsidorusConstants.HASH_OBJECT_PSI + " that are associated with " + env.getSubjectIdentifiers().get(0).getReference() + " from " + url); - builder.sendRequest(this.createTmSparqlQuery(env), new GetHashObjectPsisRequest()); - }catch(RequestException e){ - e.printStackTrace(); - Window.alert("could not request existing instances of " + IsidorusConstants.HASH_OBJECT_PSI + ", because(" + e.getClass() + "): " + e.getMessage()); + if(env.getSubjectIdentifiers().length() == 0){ + Window.alert("illegal environment topic detected, because: the topic " + env + " has no subject identifier"); DeleteCallback.this.gdlWebPage.resetPage(); + } else { + try{ + this.hashObjectPsiContainer = new HashObjectPsiContainer(env); + DeleteCallback.this.gdlWebPage.createLoadScreenPanel("Wating for Data", "Requesting all PSIs of instances of " + IsidorusConstants.HASH_OBJECT_PSI + " that are associated with " + env.getSubjectIdentifiers().get(0).getReference() + " from " + url); + builder.sendRequest(this.createTmSparqlQuery(env), new GetHashObjectPsisRequest()); + }catch(RequestException e){ + e.printStackTrace(); + Window.alert("could not delete the topic " + TmHelper.getAnyIdOfTopic(env) + ", because(" + e.getClass() + "): " + e.getMessage()); + DeleteCallback.this.gdlWebPage.resetPage(); + } catch(ExecutionException e){ + e.printStackTrace(); + Window.alert("could not delete the topic " + TmHelper.getAnyIdOfTopic(env) + ", because(" + e.getClass() + "): " + e.getMessage()); + DeleteCallback.this.gdlWebPage.resetPage(); + } } } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 04:20:42 2011 (r954) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 06:02:11 2011 (r955) @@ -1,11 +1,24 @@ package us.isidor.gdl.anaToMia.Widgets.isidorus; - import java.util.ArrayList; - +import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; +import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMap; +import us.isidor.gdl.anaToMia.Widgets.base.Utils; +import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; +import com.google.gwt.http.client.Request; +import com.google.gwt.http.client.RequestBuilder; +import com.google.gwt.http.client.RequestCallback; +import com.google.gwt.http.client.RequestException; +import com.google.gwt.http.client.Response; +import com.google.gwt.http.client.URL; +import com.google.gwt.json.client.JSONArray; +import com.google.gwt.json.client.JSONObject; +import com.google.gwt.json.client.JSONParser; +import com.google.gwt.json.client.JSONString; +import com.google.gwt.json.client.JSONValue; import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.Window; import com.google.gwt.user.client.ui.Button; @@ -22,20 +35,24 @@ private Button commitButton = new Button("delete the Environment topic and all its Hash-Object topics"); private final String ERROR_STYLE_CLASS = "bad_input"; private CheckBoxClickHandler cbxClickHandler = new CheckBoxClickHandler(); + private final String DELETE_URL = IsidorusConstants.DELETE_REQUEST_URL; + private Topic environmentTopic = null; - public HashObjectPsiContainer(){ + public HashObjectPsiContainer(Topic environmentTopic) throws ExecutionException { + if(environmentTopic == null) throw new ExecutionException("environmentTopic must not be null"); + this.environmentTopic = environmentTopic; this.initWidget(this.containerPanel); this.containerPanel.add(this.commitButton); - this.commitButton.addClickHandler(new HashObjectPsiContainerClickHandler()); + this.commitButton.addClickHandler(new HashObjectPsiContainerClickHandler(this.environmentTopic)); DOM.setStyleAttribute(this.commitButton.getElement(), "width", "100%"); DOM.setStyleAttribute(this.commitButton.getElement(), "marginTop", "1em"); } - public void addHashObjectPsi(String psi){ + public void addHashObjectPsi(String psi) { if(psi == null) return; - + this.commitButton.removeFromParent(); CheckBox cbx = new CheckBox(psi); this.psiCheckBoxes.add(cbx); @@ -47,7 +64,7 @@ this.containerPanel.insert(cbx, widgetIdx); break; } - } + } cbx.addClickHandler(this.cbxClickHandler); @@ -69,7 +86,12 @@ private class HashObjectPsiContainerClickHandler implements ClickHandler { - public HashObjectPsiContainerClickHandler(){} + private Topic environmentTopic = null; + + + public HashObjectPsiContainerClickHandler(Topic environmentTopic){ + this.environmentTopic = environmentTopic; + } @Override @@ -85,9 +107,131 @@ if(!allValuesChecked){ Window.alert("to delete the an environment topic, please select explicit all associated hash-object topics to be deleted!"); } else { - // TODO: delete all hash-objects - // TODO: delete the environment + DeleteAllHashObjectsRequest reqCallback = new DeleteAllHashObjectsRequest(HashObjectPsiContainer.this.psiCheckBoxes, this.environmentTopic); + for (CheckBox cbx : HashObjectPsiContainer.this.psiCheckBoxes) HashObjectPsiContainer.this.deleteHashObject(cbx.getText(), reqCallback); } } } + + + private void deleteHashObject(String psi, DeleteAllHashObjectsRequest reqCallback){ + if(psi != null || reqCallback != null){ + JSONObject delObj = this.createObjectToBeDelete(psi); + try{ + String url = URL.encode(this.DELETE_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); + builder.setHeader("Content-type", "application/json"); + + builder.sendRequest(delObj.toString(), reqCallback); + }catch(RequestException e){ + Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); + } + } + } + + + private JSONObject createObjectToBeDelete(String psi){ + JSONArray psis = new JSONArray(); + psis.set(0, new JSONString(psi)); + + JSONObject delObj = new JSONObject(); + delObj.put("type", new JSONString("Topic")); + + String[] pref = Utils.splitUriByLastFragment(psi); + JSONValue val = JSONParser.parseStrict("{\"version\":\"1.1\",\"prefixes\":{\"pref\":" + pref[0] + "},\"subject_identifiers\":[\"[pref:" + pref[1] + "]\"]}"); + delObj.put("delete", val.isObject()); + + return delObj; + } + + + private class DeleteAllHashObjectsRequest implements RequestCallback { + private ArrayList hashObjectsToDelete = new ArrayList(); + private int objectsDeleted = 0; + private Topic environmentTopic = null; + private String environmentPsi = null; + + + @SuppressWarnings("unused") + private DeleteAllHashObjectsRequest(){} + + + public DeleteAllHashObjectsRequest(ArrayList hashObjectToDelete, Topic environmentTopic){ + if(hashObjectToDelete != null) for (CheckBox cbx : hashObjectToDelete) this.hashObjectsToDelete.add(cbx.getText()); + this.environmentTopic = environmentTopic; + this.environmentPsi = this.environmentTopic.getSubjectIdentifiers().get(0).getReference(); // it's ensured that the passed topic has at least one psi before + } + + + @Override + public void onResponseReceived(Request request, Response response) { + if (200 == response.getStatusCode()) { + ++this.objectsDeleted; + if(this.objectsDeleted == this.hashObjectsToDelete.size()){ + TopicMap tm = environmentTopic.getTopicMap(); + for (String psi : this.hashObjectsToDelete) { + Topic top = tm.getTopicBySubjectIdentifier(tm.createLocator(psi)); + top.remove(); + } + + JSONObject delObj = HashObjectPsiContainer.this.createObjectToBeDelete(this.environmentPsi); + String url = URL.encode(HashObjectPsiContainer.this.DELETE_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); + builder.setHeader("Content-type", "application/json"); + try{ + builder.sendRequest(delObj.toString(), new EnvironemntDeleteRequest(delObj, this.environmentTopic)); + }catch(RequestException e){ + Window.alert("delete operation of the object " + delObj + " failed, because: (" + e.getClass() + ")\n" + e.getMessage()); + } + } + } else { + Window.alert("could not delete all topics of " + Utils.arrayToString(this.hashObjectsToDelete) + ", because(" + response.getStatusCode() + "): " + response.getStatusText()); + } + } + + + @Override + public void onError(Request request, Throwable exception) { + String message = null; + Class eClass = null; + if(exception != null){ + message = exception.getMessage(); + eClass = exception.getClass(); + } + Window.alert("could not delete all topics of " + Utils.arrayToString(this.hashObjectsToDelete) + ", because(" + eClass + "): " + message); + } + } + + + private class EnvironemntDeleteRequest implements RequestCallback { + private JSONObject objectToBeSend = null; + private Topic topicToBeDeleted = null; + + + @SuppressWarnings("unused") + private EnvironemntDeleteRequest(){} + + + public EnvironemntDeleteRequest(JSONObject objectToBeDeleted, Topic topicToBeDeleted){ + this.objectToBeSend = objectToBeDeleted; + this.topicToBeDeleted = topicToBeDeleted; + } + + + @Override + public void onResponseReceived(Request request, Response response) { + if (200 == response.getStatusCode()) { + Window.Location.reload(); + this.topicToBeDeleted.remove(); + } else { + Window.alert("delete operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); + } + } + + + @Override + public void onError(Request request, Throwable exception) { + Window.alert("could not delete the data: " + this.objectToBeSend); + } + } } From lgiessmann at common-lisp.net Wed Sep 21 13:29:29 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 06:29:29 -0700 Subject: [isidorus-cvs] r956 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 06:29:26 2011 New Revision: 956 Log: gdl-frontend: Widgets: fixed a bug in the delete operation handler of environment topics Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 06:02:11 2011 (r955) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 06:29:26 2011 (r956) @@ -89,7 +89,7 @@ DeleteCallback.this.gdlWebPage.resetPage(); } else { try{ - this.hashObjectPsiContainer = new HashObjectPsiContainer(env); + this.hashObjectPsiContainer = new HashObjectPsiContainer(env, DeleteCallback.this.gdlWebPage); DeleteCallback.this.gdlWebPage.createLoadScreenPanel("Wating for Data", "Requesting all PSIs of instances of " + IsidorusConstants.HASH_OBJECT_PSI + " that are associated with " + env.getSubjectIdentifiers().get(0).getReference() + " from " + url); builder.sendRequest(this.createTmSparqlQuery(env), new GetHashObjectPsisRequest()); }catch(RequestException e){ Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 06:02:11 2011 (r955) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 06:29:26 2011 (r956) @@ -4,6 +4,7 @@ import java.util.ArrayList; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMap; +import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; import us.isidor.gdl.anaToMia.Widgets.base.Utils; import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import com.google.gwt.event.dom.client.ClickEvent; @@ -37,10 +38,12 @@ private CheckBoxClickHandler cbxClickHandler = new CheckBoxClickHandler(); private final String DELETE_URL = IsidorusConstants.DELETE_REQUEST_URL; private Topic environmentTopic = null; + private GdlWebPage gdlWebPage = null; - public HashObjectPsiContainer(Topic environmentTopic) throws ExecutionException { - if(environmentTopic == null) throw new ExecutionException("environmentTopic must not be null"); + public HashObjectPsiContainer(Topic environmentTopic, GdlWebPage gdlWebPage) throws ExecutionException { + if(environmentTopic == null || gdlWebPage == null) throw new ExecutionException("environmentTopic and gdlWebPage must not be null"); + this.gdlWebPage = gdlWebPage; this.environmentTopic = environmentTopic; this.initWidget(this.containerPanel); this.containerPanel.add(this.commitButton); @@ -73,6 +76,38 @@ } + private void deleteHashObject(String psi, DeleteAllHashObjectsRequest reqCallback){ + if(psi != null || reqCallback != null){ + Window.alert(">> " + psi); + JSONObject delObj = this.createObjectToBeDelete(psi); + try{ + String url = URL.encode(this.DELETE_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); + builder.setHeader("Content-type", "application/json"); + + builder.sendRequest(delObj.toString(), reqCallback); + }catch(RequestException e){ + Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); + } + } + } + + + private JSONObject createObjectToBeDelete(String psi){ + JSONArray psis = new JSONArray(); + psis.set(0, new JSONString(psi)); + + JSONObject delObj = new JSONObject(); + delObj.put("type", new JSONString("Topic")); + + String[] pref = Utils.splitUriByLastFragment(psi); + JSONValue val = JSONParser.parseStrict("{\"version\":\"1.1\",\"prefixes\":{\"pref\":" + pref[0] + "},\"subject_identifiers\":[\"[pref:" + pref[1] + "]\"]}"); + delObj.put("delete", val.isObject()); + + return delObj; + } + + private class CheckBoxClickHandler implements ClickHandler{ @Override public void onClick(ClickEvent event) { @@ -107,43 +142,13 @@ if(!allValuesChecked){ Window.alert("to delete the an environment topic, please select explicit all associated hash-object topics to be deleted!"); } else { + HashObjectPsiContainer.this.gdlWebPage.createLoadScreenPanel("Wating for Completing a Delete Request", "deleting all associated Hash-Object topics of the Environment Topic " + TmHelper.getAnyIdOfTopic(this.environmentTopic) + " from " + HashObjectPsiContainer.this.DELETE_URL); DeleteAllHashObjectsRequest reqCallback = new DeleteAllHashObjectsRequest(HashObjectPsiContainer.this.psiCheckBoxes, this.environmentTopic); for (CheckBox cbx : HashObjectPsiContainer.this.psiCheckBoxes) HashObjectPsiContainer.this.deleteHashObject(cbx.getText(), reqCallback); } } } - - private void deleteHashObject(String psi, DeleteAllHashObjectsRequest reqCallback){ - if(psi != null || reqCallback != null){ - JSONObject delObj = this.createObjectToBeDelete(psi); - try{ - String url = URL.encode(this.DELETE_URL); - RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); - builder.setHeader("Content-type", "application/json"); - - builder.sendRequest(delObj.toString(), reqCallback); - }catch(RequestException e){ - Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); - } - } - } - - - private JSONObject createObjectToBeDelete(String psi){ - JSONArray psis = new JSONArray(); - psis.set(0, new JSONString(psi)); - - JSONObject delObj = new JSONObject(); - delObj.put("type", new JSONString("Topic")); - - String[] pref = Utils.splitUriByLastFragment(psi); - JSONValue val = JSONParser.parseStrict("{\"version\":\"1.1\",\"prefixes\":{\"pref\":" + pref[0] + "},\"subject_identifiers\":[\"[pref:" + pref[1] + "]\"]}"); - delObj.put("delete", val.isObject()); - - return delObj; - } - private class DeleteAllHashObjectsRequest implements RequestCallback { private ArrayList hashObjectsToDelete = new ArrayList(); From lgiessmann at common-lisp.net Wed Sep 21 13:56:40 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 06:56:40 -0700 Subject: [isidorus-cvs] r957 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 06:56:39 2011 New Revision: 957 Log: gdl-frontend: Widgets: fixed a bug in the method HashObjectPsiContainer.createObjectToBeDeleted(...) Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 06:29:26 2011 (r956) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 06:56:39 2011 (r957) @@ -78,8 +78,7 @@ private void deleteHashObject(String psi, DeleteAllHashObjectsRequest reqCallback){ if(psi != null || reqCallback != null){ - Window.alert(">> " + psi); - JSONObject delObj = this.createObjectToBeDelete(psi); + JSONObject delObj = this.createObjectToBeDeleted(psi); try{ String url = URL.encode(this.DELETE_URL); RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); @@ -93,17 +92,17 @@ } - private JSONObject createObjectToBeDelete(String psi){ + private JSONObject createObjectToBeDeleted(String psi){ JSONArray psis = new JSONArray(); psis.set(0, new JSONString(psi)); - + JSONObject delObj = new JSONObject(); delObj.put("type", new JSONString("Topic")); - + String[] pref = Utils.splitUriByLastFragment(psi); - JSONValue val = JSONParser.parseStrict("{\"version\":\"1.1\",\"prefixes\":{\"pref\":" + pref[0] + "},\"subject_identifiers\":[\"[pref:" + pref[1] + "]\"]}"); + JSONValue val = JSONParser.parseStrict("{\"version\":\"1.1\",\"prefixes\":{\"pref\":\"" + pref[0] + "\"},\"subject_identifiers\":[\"[pref:" + pref[1] + "]\"]}"); delObj.put("delete", val.isObject()); - + return delObj; } @@ -179,7 +178,7 @@ top.remove(); } - JSONObject delObj = HashObjectPsiContainer.this.createObjectToBeDelete(this.environmentPsi); + JSONObject delObj = HashObjectPsiContainer.this.createObjectToBeDeleted(this.environmentPsi); String url = URL.encode(HashObjectPsiContainer.this.DELETE_URL); RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); builder.setHeader("Content-type", "application/json"); From lgiessmann at common-lisp.net Wed Sep 21 14:22:50 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Wed, 21 Sep 2011 07:22:50 -0700 Subject: [isidorus-cvs] r958 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Wed Sep 21 07:22:50 2011 New Revision: 958 Log: gdl-frontend: Widgets: fixed a bug in the delete operation handler of environment topics Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 06:56:39 2011 (r957) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/DeleteCallback.java Wed Sep 21 07:22:50 2011 (r958) @@ -176,7 +176,7 @@ RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); builder.setHeader("Content-type", "application/json"); - builder.sendRequest(delObj.toString(), new DeleteRequest(delObj, top)); + builder.sendRequest(delObj.toString(), new DeleteRequest(delObj)); }catch(RequestException e){ Window.alert("could not delete the topic: " + psi + ", because(" + e.getClass() + "): " + e.getMessage()); }catch(ExporterException e){ @@ -188,16 +188,14 @@ private class DeleteRequest implements RequestCallback { private JSONObject objectToBeSend = null; - private Topic topicToBeDeleted = null; @SuppressWarnings("unused") private DeleteRequest(){} - public DeleteRequest(JSONObject objectToBeDeleted, Topic topicToBeDeleted){ + public DeleteRequest(JSONObject objectToBeDeleted){ this.objectToBeSend = objectToBeDeleted; - this.topicToBeDeleted = topicToBeDeleted; } @@ -205,7 +203,6 @@ public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { Window.Location.reload(); - this.topicToBeDeleted.remove(); } else { Window.alert("delete operation of the object " + this.objectToBeSend + " failed: " + response.getStatusCode() + "(" + response.getStatusText() + ")\n" + response.getText()); } Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 06:56:39 2011 (r957) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Wed Sep 21 07:22:50 2011 (r958) @@ -3,7 +3,6 @@ import java.util.ArrayList; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic; -import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMap; import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; import us.isidor.gdl.anaToMia.Widgets.base.Utils; import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; @@ -171,13 +170,7 @@ public void onResponseReceived(Request request, Response response) { if (200 == response.getStatusCode()) { ++this.objectsDeleted; - if(this.objectsDeleted == this.hashObjectsToDelete.size()){ - TopicMap tm = environmentTopic.getTopicMap(); - for (String psi : this.hashObjectsToDelete) { - Topic top = tm.getTopicBySubjectIdentifier(tm.createLocator(psi)); - top.remove(); - } - + if(this.objectsDeleted == this.hashObjectsToDelete.size()){ JSONObject delObj = HashObjectPsiContainer.this.createObjectToBeDeleted(this.environmentPsi); String url = URL.encode(HashObjectPsiContainer.this.DELETE_URL); RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); From lgiessmann at common-lisp.net Thu Sep 22 11:41:55 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 22 Sep 2011 04:41:55 -0700 Subject: [isidorus-cvs] r959 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Thu Sep 22 04:41:54 2011 New Revision: 959 Log: gdl-frontend: Widgets: added a "wait-screen" whenthe user is committing data., so it is ensured that a button can be clicked only once during one operation Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Wed Sep 21 07:22:50 2011 (r958) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Thu Sep 22 04:41:54 2011 (r959) @@ -36,19 +36,29 @@ public final String DELETE_REUQEST_URL = IsidorusConstants.DELETE_REQUEST_URL; public final String COMMIT_REQUEST_URL = IsidorusConstants.COMMIT_REQUEST_URL; public final String GET_REQUEST_URL = IsidorusConstants.GET_FRAGMENT_REQUEST_URL; + private GdlWebPage gdlWebPage = null; - public CommitCallback(){} + @SuppressWarnings("unused") + private CommitCallback(){} + + + public CommitCallback(GdlWebPage gdlWebPage){ + this.gdlWebPage = gdlWebPage; + } @Override public void commitTmConstruct(ArrayList> constructs, String buttonId, TmEngine tmEngine) { try{ if("creator_hash_object_commit_button_id".equals(buttonId)){ + if(this.gdlWebPage != null) this.gdlWebPage.createLoadScreenPanel("Committing Data", "committing the currently created Hash-Object topic to " + this.COMMIT_REQUEST_URL); this.commitCreatedHashObject(constructs, tmEngine, false); }else if("editor_hash_object_commit_button_id".equals(buttonId)){ + if(this.gdlWebPage != null) this.gdlWebPage.createLoadScreenPanel("Updating Data", "updating the currently changed Hash-Object topic on " + this.COMMIT_REQUEST_URL); this.commitCreatedHashObject(constructs, tmEngine, true); } else if("environment_commit_button_id".equals(buttonId)){ + if(this.gdlWebPage != null) this.gdlWebPage.createLoadScreenPanel("Committing Data", "committing the currently created Environment topic to " + this.COMMIT_REQUEST_URL); this.commitCreatedEnvironment(constructs, tmEngine); } }catch(Exception e){ Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Wed Sep 21 07:22:50 2011 (r958) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Thu Sep 22 04:41:54 2011 (r959) @@ -168,7 +168,7 @@ GdlPanel gdlPanel = new GdlPanel(null, topicsToCreate, 362, 160); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); - gdlPanel.setCommitCallback(new CommitCallback()); + gdlPanel.setCommitCallback(new CommitCallback(GdlWebPage.this)); gdlPanel.setDeleteCallback(new DeleteCallback(GdlWebPage.this)); gdlPanel.addStyleName(GdlWebPage.this.GDL_PANEL_STYLE_NAME); GdlWebPage.this.setGdlPanel(gdlPanel); @@ -192,7 +192,7 @@ GdlPanel gdlPanel = new GdlPanel(new Pair(source.getText(), TopicIdentifierTypes.SubjectIdentifier), null, 362, 160); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); - gdlPanel.setCommitCallback(new CommitCallback()); + gdlPanel.setCommitCallback(new CommitCallback(GdlWebPage.this)); gdlPanel.setDeleteCallback(new DeleteCallback(GdlWebPage.this)); GdlWebPage.this.setGdlPanel(gdlPanel); gdlPanel.loadSchema(); From lgiessmann at common-lisp.net Thu Sep 22 11:51:02 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 22 Sep 2011 04:51:02 -0700 Subject: [isidorus-cvs] r960 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Thu Sep 22 04:51:01 2011 New Revision: 960 Log: gdl-frontend: Widgets: fixed a bug when deleting an Environment without any Hash-Objects bound to it Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Thu Sep 22 04:41:54 2011 (r959) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/HashObjectPsiContainer.java Thu Sep 22 04:51:01 2011 (r960) @@ -142,7 +142,19 @@ } else { HashObjectPsiContainer.this.gdlWebPage.createLoadScreenPanel("Wating for Completing a Delete Request", "deleting all associated Hash-Object topics of the Environment Topic " + TmHelper.getAnyIdOfTopic(this.environmentTopic) + " from " + HashObjectPsiContainer.this.DELETE_URL); DeleteAllHashObjectsRequest reqCallback = new DeleteAllHashObjectsRequest(HashObjectPsiContainer.this.psiCheckBoxes, this.environmentTopic); - for (CheckBox cbx : HashObjectPsiContainer.this.psiCheckBoxes) HashObjectPsiContainer.this.deleteHashObject(cbx.getText(), reqCallback); + if(HashObjectPsiContainer.this.psiCheckBoxes.size() == 0){ + JSONObject delObj = HashObjectPsiContainer.this.createObjectToBeDeleted(this.environmentTopic.getSubjectIdentifiers().get(0).getReference()); + String url = URL.encode(HashObjectPsiContainer.this.DELETE_URL); + RequestBuilder builder = new RequestBuilder(RequestBuilder.DELETE, url); + builder.setHeader("Content-type", "application/json"); + try{ + builder.sendRequest(delObj.toString(), new EnvironemntDeleteRequest(delObj, this.environmentTopic)); + }catch(RequestException e){ + Window.alert("delete operation of the object " + delObj + " failed, because: (" + e.getClass() + ")\n" + e.getMessage()); + } + } else { + for (CheckBox cbx : HashObjectPsiContainer.this.psiCheckBoxes) HashObjectPsiContainer.this.deleteHashObject(cbx.getText(), reqCallback); + } } } } From lgiessmann at common-lisp.net Thu Sep 22 12:39:11 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 22 Sep 2011 05:39:11 -0700 Subject: [isidorus-cvs] r961 - in branches/gdl-frontend/src: anaToMia/hosted_files rest_interface Message-ID: Author: lgiessmann Date: Thu Sep 22 05:39:10 2011 New Revision: 961 Log: gdl-interface: fixed a bug in the delete-handler Modified: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css ============================================================================== --- branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css Thu Sep 22 04:51:01 2011 (r960) +++ branches/gdl-frontend/src/anaToMia/hosted_files/GDL_Widgets.css Thu Sep 22 05:39:10 2011 (r961) @@ -62,6 +62,18 @@ } +.hash_object_psi_container { + border: rgb(134, 169, 203) 1px solid; + border-radius: 5px; + padding: 0.5em; +} + + +.content_panel > tbody > tr > td { + width: 50%; +} + + .gdl_panel { margin-left:auto; margin-right:0; @@ -70,4 +82,9 @@ .create_new_button { margin-bottom: 2em; +} + + +.bad_input { + color: red; } \ No newline at end of file Modified: branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Thu Sep 22 04:51:01 2011 (r960) +++ branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Thu Sep 22 05:39:10 2011 (r961) @@ -158,11 +158,15 @@ (player role :revision (1- rev))) (roles result :revision (1- rev)))) ((typep result 'TopicC) - (elephant:drop-instance result) (let ((assocs - (map 'list (lambda(role) - (parent role :revision (1- rev))) - (player-in-roles result :revision (1- rev))))) + (remove-null + (map 'list (lambda(role) + (parent role :revision (1- rev))) + (player-in-roles result :revision (1- rev))))) + (frags + (elephant:get-instances-by-value + 'd:FragmentC 'd:topic result))) + (map nil #'elephant:drop-instance frags) (loop for assoc in assocs append (map 'list (lambda(role) (player role :revision (1- rev))) From lgiessmann at common-lisp.net Thu Sep 22 13:48:53 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 22 Sep 2011 06:48:53 -0700 Subject: [isidorus-cvs] r962 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Thu Sep 22 06:48:53 2011 New Revision: 962 Log: gdl-frontend: Widgets: updated the GDL-Schema for the editor-views of Environment and Hash-Object topics Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm Thu Sep 22 05:39:10 2011 (r961) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm Thu Sep 22 06:48:53 2011 (r962) @@ -91,7 +91,7 @@ {"subject_identifiers":["[tgg:environment-editor-text-label-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:environment-editor-text-label-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"name:"}]}, - {"subject_identifiers":["[tgg:environment-editor-name-text]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_name_text_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"240px"},{"type":"si:[gdl:cursor]", "value":"text"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:environment-editor-name-text]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_name_text_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"240px"},{"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:background-color]", "value":"gray"}]}, {"subject_identifiers":["[tgg:environment-editor-name-text-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"70px"}]}, {"subject_identifiers":["[tgg:environment-editor-name-text-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Sep 22 05:39:10 2011 (r961) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Sep 22 06:48:53 2011 (r962) @@ -61,10 +61,10 @@ {"subject_identifiers":["[gdlt:Visible-Object]"]}, {"subject_identifiers":["[gdl:width]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:height]"], "instance_of":["si:[tmcl:occurrence-type]"]}, - {"subject_identifiers":["[gdl:pointer]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:border-style]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:background-color]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:color]"], "instance_of":["si:[tmcl:occurrence-type]"]}, + {"subject_identifiers":["[gdl:cursor]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:id]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:padding-left]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdlt:View]"]}, @@ -110,7 +110,7 @@ {"subject_identifiers":["[tgg:has-environment-editor-association-view]"], "instance_of":["si:[gdlt:Editor-Association-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"has_environment_editor_association_view_id"}, {"type":"si:[gdl:width]", "value":"230px"}]}, {"subject_identifiers":["[tgg:hash-object-has-environment-editor-association-view-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, - {"subject_identifiers":["[tgg:hash-object-editor-text-env]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"230px"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:hash-object-editor-text-env]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"230px"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:background-color]", "value":"gray"}, {"type":"si:[gdl:border-style]", "value":"none"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-env-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"0px"}, {"type":"si:[gdl:left]", "value":"0px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-env-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-has-environment-environment-role-player]"], "instance_of":["si:[gdlt:Role-Player]"]}, @@ -120,7 +120,7 @@ {"subject_identifiers":["[tgg:hash-object-editor-text-label-key-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-editor-text-label-key-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"key:"}]}, - {"subject_identifiers":["[tgg:hash-object-editor-text-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_key_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"230px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:hash-object-editor-text-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_key_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"230px"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:background-color]", "value":"gray"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-key-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"40px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-key-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, @@ -129,7 +129,7 @@ {"subject_identifiers":["[tgg:hash-object-editor-text-label-value-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-editor-text-label-value-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"value:"}]}, - {"subject_identifiers":["[tgg:hash-object-editor-text-value]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_value_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"230px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:hash-object-editor-text-value]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_value_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"230px"},{"type":"si:[gdl:cursor]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-value-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"70px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-value-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, From lgiessmann at common-lisp.net Thu Sep 22 14:12:10 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 22 Sep 2011 07:12:10 -0700 Subject: [isidorus-cvs] r963 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Thu Sep 22 07:12:10 2011 New Revision: 963 Log: gdl-frontend: Widgets: updated the merged GDL-Schemas Deleted: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Thu Sep 22 06:48:53 2011 (r962) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Thu Sep 22 07:12:10 2011 (r963) @@ -1,11497 +1 @@ -{ - "version":"1.1", - "prefixes":{ - "pref_5":"http://textgrid.org/serviceregistry/model/types/", - "pref_4":"http://textgrid.org/serviceregistry/model/", - "pref_1":"http://textgrid.org/serviceregistry/gdl/", - "pref_6":"http://psi.topicmaps.org/iso13250/model/", - "pref_8":"http://textgrid.org/serviceregistry/", - "xsd":"http://www.w3.org/2001/XMLSchema#", - "pref_2":"http://psi.isidor.us/gdl/types/", - "pref_7":"http://psi.topicmaps.org/tmcl/", - "pref_3":"http://psi.isidor.us/gdl/" - }, - "item_identifiers":["[pref_8:services-tm]" - ], - "topics":[{ - "subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-config-configuration-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-config-parameter-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-parameter-service-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-data-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-form-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-default-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-crud-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-multiple-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-mime-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-param-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-param-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-parameter-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-parameter-id-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/parameter/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-tg-approved-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-textgrid-url-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-identifier-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-identifier-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-owner-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-owner-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-use-target-ns-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-target-namespace-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-location-body-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-inline-description-location-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-location-uri-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-keywords-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-keywords-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-service-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-service-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-operation-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-operation-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/service/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:data]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:form]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:default]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter-config-id]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter-config-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:example-config]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:needs-b64-encoding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:crud]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:multiple]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:mime-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:param]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter-id]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:tg-approved]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:textgrid-url]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:identifier]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:owner]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:use-target-ns]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:target-namespace]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:description-location-body]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:inline-description-location]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:description-location-uri]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:keywords]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:description]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:operation]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:configuration]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-config]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-parameter]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Parameter-Config]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Parameter]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-editor-delete-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_delete_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-editor-name-text-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"70px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-editor-name-text]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_name_text_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"240px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-editor-text-label-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-editor-text-label-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-editor-text-label]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_text_label_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"60px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-editor-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-commit-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-creator-name-text-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"70px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-name-text]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_name_text_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"240px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-text-label-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-creator-text-label-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-text-label]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_text_label_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"60px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_creator_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_3:cursor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"editor_hash_object_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_delete_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-key]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-env]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:has-environment-editor-association-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Editor-Association-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_editor_association_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_2:Delete-Button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Editor-Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"creator_hash_object_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"reset", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Action-Button]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_reset_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-key]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:List-Box]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_list_box_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"232px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:has-environment-creator-association-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Creator-Association-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_createor_association_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-hash-type-default-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"confserver", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_creator_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:textgrid-ui-schema]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Schema]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", - "type":"si:[pref_3:schema-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Commit-Button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Action-Button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Value-Group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:right]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:left]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:top]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:position-style]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:font-size]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:readonly]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Text]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:List-Box]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Text-Object]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Literal-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:fixed]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:literal-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Literal-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:TM-Single-Type-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:display-by]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:TM-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Creator-Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:view-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:id]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:color]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:background-color]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:border-style]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:pointer]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:height]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:padding-left]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:width]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:hidden-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Hidden-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Visible-Object]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Role-Player]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Descriptor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:schema-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Schema]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:descendant]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:ancestor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value-group]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:descriptor]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-construct]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:containee]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:container]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:value-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:tm-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:association-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:topic-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:contains]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/environment/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:environment-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:key]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Hash-Object]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Service]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:supertype-subtype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:subtype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:supertype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-role]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-topic-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-statement]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-occurrence-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:subject-identifier-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]", - "si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:datatype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:regexp]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:card-max]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:card-min]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:association-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:role-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:occurrence-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:name-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - } - ], - "associations":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:data]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:data]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:form]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:form]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:default]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:default]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:crud]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:crud]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:multiple]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:multiple]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:param]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:param]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:identifier]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:identifier]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:owner]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:owner]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:keywords]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:keywords]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:operation]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:operation]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-editor-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-editor-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-value]", - "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-editor-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_5:Environment]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-default-editor-topic-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-creator-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-creator-name-text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-creator-text-label]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-value]", - "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:environment-creator-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_5:Environment]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:environment-default-creator-topic-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Literal-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-delete-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:display-by]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:has-environment-editor-association-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-value]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-editor-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-editor-topic-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Delete-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Association-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Editor-Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Editor-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-commit-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-reset-button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-key]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:display-by]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-list-box-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:has-environment-hash-role-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:association-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:has-environment-creator-association-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:value-group]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:position]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env-position]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:ancestor]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:descendant]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-text-label-env]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-default-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:hidden-value]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-hash-type-hidden-value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:topic-view-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-value]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-binding]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:descriptor]", - "reifier":null, - "player":"si:[pref_1:hash-object-creator-view-binding]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:tm-construct]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_3:contains]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_3:container]", - "reifier":null, - "player":"si:[pref_1:textgrid-ui-schema]" - }, - { - "item_identifiers":null, - "type":"si:[pref_3:containee]", - "reifier":null, - "player":"si:[pref_1:hash-object-default-creator-topic-view]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Commit-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Button]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Action-Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Button]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value-Group]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Position]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Text]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:List-Box]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Text-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Literal-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Literal-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:TM-Single-Type-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:TM-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:TM-Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Hidden-Value]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Association-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Creator-Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Association-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Creator-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Topic-View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Default-Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:View]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Topic-View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:View]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Visible-Object]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_2:Descriptor]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_2:Role-Player]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-hash-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-hash-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-environment-environment-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-regular-expression-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:value]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-value-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-key-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-key-regular-expression-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:key]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-key-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash-type]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-datatype-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash-type]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:hash-type]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-hash-type-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:environment-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:environment-name-regular-expression-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:environment-name]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:environment-name-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Environment]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:environment-psi-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Hash-Object]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:hash-psi-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_7:constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_7:association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_7:constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_7:topic-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_7:constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_7:regular-expression-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_7:constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_7:topic-occurrence-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_7:constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_7:subject-identifier-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_6:supertype-subtype]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_6:supertype]", - "reifier":null, - "player":"si:[pref_7:constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_6:subtype]", - "reifier":null, - "player":"si:[pref_7:topic-name-constraint]" - } - ] - } - ], - "item_type":"topicmap", - "reifier":null -} +{"version":"1.1","prefixes":{"pref_5":"http:\/\/textgrid.org\/serviceregistry\/model\/types\/","pref_4":"http:\/\/textgrid.org\/serviceregistry\/model\/","pref_1":"http:\/\/textgrid.org\/serviceregistry\/gdl\/","pref_6":"http:\/\/psi.topicmaps.org\/iso13250\/model\/","pref_8":"http:\/\/textgrid.org\/serviceregistry\/","xsd":"http:\/\/www.w3.org\/2001\/XMLSchema#","pref_2":"http:\/\/psi.isidor.us\/gdl\/types\/","pref_7":"http:\/\/psi.topicmaps.org\/tmcl\/","pref_3":"http:\/\/psi.isidor.us\/gdl\/"},"item_identifiers":["[pref_8:services-tm]"],"topics":[{"subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-config-configuration-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-config-parameter-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-parameter-service-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-data-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-form-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-default-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/parameter-config\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-crud-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-multiple-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-mime-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-param-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-param-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-parameter-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-parameter-id-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/parameter\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-tg-approved-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-textgrid-url-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-identifier-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-identifier-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-owner-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-owner-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-use-target-ns-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-target-namespace-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-location-body-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-inline-description-location-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-location-uri-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-keywords-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-keywords-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-service-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-service-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-operation-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-operation-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/service\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:data]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:form]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:default]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-config-id]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-config-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:example-config]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:needs-b64-encoding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:crud]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:multiple]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:mime-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:param]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-id]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:tg-approved]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:textgrid-url]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:identifier]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:owner]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:use-target-ns]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:target-namespace]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:description-location-body]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:inline-description-location]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:description-location-uri]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:keywords]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:description]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:service-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:operation]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:service-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:configuration]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-config]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-parameter]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Parameter-Config]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Parameter]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-editor-delete-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"65px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-delete-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Delete-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_delete_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-name-text-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-editor-name-text-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"70px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-name-text]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_name_text_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"240px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"default","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"name:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-editor-text-label-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_text_label_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"60px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-default-editor-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Editor-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Editor Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_default_editor_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"322px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"65px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-name-text-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-creator-name-text-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"70px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-name-text]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_name_text_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"240px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"name:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-creator-text-label-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_text_label_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"60px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-default-creator-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Creator-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Creator Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_default_creator_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"322px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"editor_hash_object_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-delete-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Delete-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_delete_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"value:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"default","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"key:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"0px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"0px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"default","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:has-environment-editor-association-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Editor-Association-View]"],"names":[{"item_identifiers":null,"value":"A Editor View for associations of the type http:\/\/textgrid.org\/serviceregistry\/model\/has-environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"has_environment_editor_association_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"environment:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Editor-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Editor Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Hash-Object","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_default_editor_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"362px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"160px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_2:Delete-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Editor-Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Editor-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:cursor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"creator_hash_object_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"reset","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Action-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_reset_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:pointer]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"value:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:pointer]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"key:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Role-Player]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"0px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"0px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:List-Box]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_list_box_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"232px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"environment:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Role-Player]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Hidden-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:has-environment-creator-association-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Creator-Association-View]"],"names":[{"item_identifiers":null,"value":"A Creator View for associations of the type http:\/\/textgrid.org\/serviceregistry\/model\/has-environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"has_environment_createor_association_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-hash-type-default-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"confserver","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-hash-type-hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Hidden-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Creator-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Creator Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Hash-Object","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_default_creator_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"362px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"160px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:textgrid-ui-schema]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Schema]"],"names":[{"item_identifiers":null,"value":"GDL Schema for the TextGrid-ServiceRegistry-UI","type":"si:[pref_3:schema-name]","scope":null,"variants":null,"reifier":null}],"occurrences":null},{"subject_identifiers":["[pref_2:Commit-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Action-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Value-Group]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:right]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:left]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:top]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:position-style]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Position]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:font-size]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:readonly]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Text]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:List-Box]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Text-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Literal-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:fixed]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:literal-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Literal-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:TM-Single-Type-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:display-by]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:TM-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Creator-Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Creator-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:view-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]","si:[pref_3:view-name]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:id]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:color]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:background-color]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:border-style]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:pointer]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:height]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:padding-left]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:width]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Hidden-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Visible-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Role-Player]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Descriptor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:schema-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Schema]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:descendant]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:ancestor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value-group]","[pref_3:value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:descriptor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-construct]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:containee]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:container]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:association-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:topic-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:contains]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-service-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-hash-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-hash-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-environment-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/hashobject\/.+\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/environment\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:hash]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:service]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-hash]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:environment-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:hash-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Hash-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Service]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:supertype-subtype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:subtype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]","si:[pref_6:subtype]","si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:supertype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-role]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-topic-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-statement]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:occurrence-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-occurrence-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:subject-identifier-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]","si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:datatype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:regexp]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:card-max]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:card-min]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]","si:[pref_7:card-min]","si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:association-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:role-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:occurrence-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:name-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]","si:[pref_7:topic-type]","si:[pref_7:topic-type]"],"names":null,"occurrences":null}],"associations":[{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:configuration]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:configuration]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter-Config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-data-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:data]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-data-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:data]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-data-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-form-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:form]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-form-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:form]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-form-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-default-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:default]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-default-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:default]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-default-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-config-id]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-parameter-config-id-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-config-id]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-parameter-config-id-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-config-name]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter-Config]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-psi-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter-Config]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:needs-b64-encoding]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-needs-b64-encoding-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:needs-b64-encoding]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-needs-b64-encoding-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-crud-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:crud]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-crud-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:crud]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-crud-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-multiple-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:multiple]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-multiple-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:multiple]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-multiple-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-mime-type-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:mime-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-mime-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:mime-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-mime-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-param-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:param]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-param-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:param]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-param-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-id-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-id]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-id-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-id]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-id-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-type-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-name]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-psi-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-tg-approved-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:tg-approved]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-tg-approved-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:tg-approved]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-tg-approved-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-textgrid-url-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:textgrid-url]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-textgrid-url-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:textgrid-url]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-textgrid-url-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-identifier-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:identifier]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-identifier-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:identifier]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-identifier-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-owner-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:owner]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-owner-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:owner]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-owner-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-use-target-ns-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:use-target-ns]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-use-target-ns-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:use-target-ns]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-use-target-ns-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-target-namespace-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:target-namespace]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-target-namespace-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:target-namespace]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-target-namespace-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-body-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description-location-body]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-body-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description-location-body]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-body-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-inline-description-location-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:inline-description-location]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-inline-description-location-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:inline-description-location]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-inline-description-location-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-uri-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description-location-uri]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-uri-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description-location-uri]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-uri-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-keywords-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:keywords]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-keywords-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:keywords]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-keywords-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-service-type-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-service-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-service-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-operation-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:operation]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-operation-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:operation]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-operation-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service-name]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-psi-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:environment-editor-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Environment]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:environment-creator-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Environment]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:display-by]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:hash-object-editor-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Hash-Object]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Action-Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Delete-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Association-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Editor-Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Editor-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:display-by]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-hash-role-player]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-hash-role-hidden-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:has-environment-hash-role-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-hash-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-hash-type-default-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:hash-object-creator-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Hash-Object]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Action-Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Commit-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Action-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value-Group]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Position]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Text]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:List-Box]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Visible-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Text-Object]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Literal-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:TM-Single-Type-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:TM-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:TM-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Hidden-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Descriptor]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Association-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Creator-Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Creator-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Visible-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Visible-Object]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Role-Player]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment-name]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment-name]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-psi-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-psi-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-occurrence-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:subject-identifier-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-name-constraint]"}]}],"item_type":"topicmap","reifier":null} \ No newline at end of file Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Thu Sep 22 06:48:53 2011 (r962) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Thu Sep 22 07:12:10 2011 (r963) @@ -1,14587 +1,2 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/environment/.+$ - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GDL Schema for the TextGrid-ServiceRegistry-UI - - - - - - - - - - - - - GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - - - - - - hash_object_default_creator_topic_view_id - - - - - - 362px - - - - - - 160px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - - - - - - - - confserver - - - - - - - - - - - - - A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - - - - - - has_environment_createor_association_view_id - - - - - - 230px - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - - - - - - - - hash_object_text_label_env_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - environment: - - - - - - - - - - - - - hash_object_text_list_box_env_id - - - - - - true - - - - - - 232px - - - - - - - - - - - - - absolute - - - - - - 0px - - - - - - 0px - - - - - - - - - - - - - - - - - - - - - - - - - - - hash_object_text_label_key_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - key: - - - - - - - - - - - - - hash_object_text_key_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - hash_object_text_label_value_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - value: - - - - - - - - - - - - - hash_object_text_value_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - hash_object_reset_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - reset - - - - - - - - - - - - - creator_hash_object_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - - - - - - GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - - - - - - hash_object_default_editor_topic_view_id - - - - - - 362px - - - - - - 160px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - hash_object_text_label_env_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - environment: - - - - - - - - - - - - - A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - - - - - - has_environment_editor_association_view_id - - - - - - 230px - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 120px - - - - - - - - - - - - - hash_object_text_env_id - - - - - - true - - - - - - 230px - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 0px - - - - - - 0px - - - - - - - - - - - - - - - - - - - - hash_object_text_label_key_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - key: - - - - - - - - - - - - - hash_object_text_key_id - - - - - - true - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - hash_object_text_label_value_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - value: - - - - - - - - - - - - - hash_object_text_value_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - hash_object_delete_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - editor_hash_object_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - - - - - - environment_default_creator_topic_view_id - - - - - - 322px - - - - - - 100px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - environment_text_label_id - - - - - - true - - - - - - 60px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - name: - - - - - - - - - - - - - environment_name_text_id - - - - - - false - - - - - - 240px - - - - - - text - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 70px - - - - - - - - - - - - - - - - - - - - environment_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 65px - - - - - - 10px - - - - - - - - - - - - - GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - - - - - - environment_default_editor_topic_view_id - - - - - - 322px - - - - - - 100px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - environment_text_label_id - - - - - - true - - - - - - 60px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - name: - - - - - - - - - - - - - environment_name_text_id - - - - - - true - - - - - - 240px - - - - - - text - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 70px - - - - - - - - - - - - - - - - - - - - environment_delete_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 65px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/service/.+$ - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/parameter/.+$ - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/parameter-config/.+$ - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#boolean - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 0 - - - - - - 1 - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +11^http://textgrid.org/serviceregistry/environment/.+$11^.+$11^http://textgrid.org/serviceregistry/hashobject/.+/.+$11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$1111111111111111GDL Schema for the TextGrid-ServiceRegistry-UIGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_creator_topic_view_id362px160px#023467confserverA Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_createor_association_view_id230pxabsolute10px120pxhash_object_text_label_env_idtrue100px#023467none#fffabsolute10px10pxenvironment:hash_object_text_list_box_env_idtrue232pxabsolute0px0pxhash_object_text_label_key_idtrue100px#023467none#fffabsolute40px10pxkey:hash_object_text_key_idfalse230pxtextnone2pxabsolute40px120pxhash_object_text_label_value_idtrue100px#023467none#fffabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_reset_button_id30px80px12pxabsolute115px10pxresetcreator_hash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_editor_topic_view_id362px160px#023467hash_object_text_label_env_idtrue100px#023467none#fffabsolute10px10pxenvironment:A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_editor_association_view_id230pxabsolute10px120pxhash_object_text_env_idtrue230px2pxdefaultgraynoneabsolute0px0pxhash_object_text_label_key_idtrue100px#023467none#fffabsolute40px10pxkey:hash_object_text_key_idtrue230pxnone2pxdefaultgrayabsolute40px120pxhash_object_text_label_value_idtrue100px#023467none#fffabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_delete_button_id30px80px12pxabsolute115px10pxeditor_hash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_creator_topic_view_id322px100px#023467environment_text_label_idtrue60px#023467none#fffabsolute10px10pxname:environment_name_text_idfalse240pxtext2pxabsolute10px70pxenvironment_commit_button_id30px80px12pxabsolute65px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_editor_topic_view_id322px100px#023467environment_text_label_idtrue60px#023467none#fffabsolute10px10pxname:environment_name_text_idtrue240pxdefault2pxnonegrayabsolute10px70pxenvironment_delete_button_id30px80px12pxabsolute65px10px11^http://textgrid.org/serviceregistry/service/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean11^http://textgrid.org/serviceregistry/parameter/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean11^http://textgrid.org/serviceregistry/parameter-config/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string1111111111111111 \ No newline at end of file Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Thu Sep 22 06:48:53 2011 (r962) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Thu Sep 22 07:12:10 2011 (r963) @@ -14,1651 +14,1712 @@ "item_identifiers":["[pref_8:services-tm]" ], "topics":[{ - "subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-config-configuration-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Delete-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"environment_delete_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:height]", + "value":"30px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"80px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-config-parameter-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-name-text-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:has-parameter-service-role-constraint]" + "subject_identifiers":["[pref_1:environment-editor-name-text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"240px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:cursor]", + "value":"default", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-config-data-constraint]" + "subject_identifiers":["[pref_1:environment-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:literal-value]", + "value":"name:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-form-constraint]" + "subject_identifiers":["[pref_1:environment-editor-text-label-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"10px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-config-default-constraint]" + "subject_identifiers":["[pref_1:environment-editor-text-label]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"60px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-config-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-config-psi-constraint]" + "subject_identifiers":["[pref_1:environment-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:id]", + "value":"environment_default_editor_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"322px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", + "type":"si:[pref_3:height]", + "value":"100px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]" + "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"65px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-crud-constraint]" + "subject_identifiers":["[pref_1:environment-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_commit_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-multiple-constraint]" + "subject_identifiers":["[pref_1:environment-creator-name-text-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"10px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"70px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-mime-type-constraint]" + "subject_identifiers":["[pref_1:environment-creator-name-text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"false", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-param-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"240px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-param-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:cursor]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-parameter-type-constraint]" + "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"10px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:parameter-parameter-id-constraint]" + "subject_identifiers":["[pref_1:environment-creator-text-label]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"60px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:parameter-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/parameter/.+$", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]" + "subject_identifiers":["[pref_1:environment-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-tg-approved-constraint]" + "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"environment_default_creator_topic_view_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"322px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-textgrid-url-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"115px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-identifier-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:right]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-identifier-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"editor_hash_object_commit_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:height]", + "value":"30px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-owner-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-owner-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"115px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-use-target-ns-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Delete-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_delete_button_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-target-namespace-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-location-body-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:readonly]", + "value":"false", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:width]", + "value":"230px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#boolean", + "type":"si:[pref_3:cursor]", + "value":"text", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-inline-description-location-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-description-location-uri-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"70px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-keywords-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-keywords-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-description-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-service-type-datatype-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_4:service-service-type-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:top]", + "value":"40px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-operation-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:service-operation-constraint]" + "subject_identifiers":["[pref_1:hash-object-editor-text-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"0", + "type":"si:[pref_3:width]", + "value":"230px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:service-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", + "type":"si:[pref_3:cursor]", + "value":"default", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/service/.+$", + "type":"si:[pref_3:background-color]", + "value":"gray", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_4:data]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:form]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:default]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-config-id]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:parameter-config-name]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:example-config]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:needs-b64-encoding]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:crud]" + "subject_identifiers":["[pref_1:hash-object-editor-text-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"default", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:multiple]" + "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:mime-type]" + "subject_identifiers":["[pref_1:has-environment-editor-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Editor-Association-View]" ], - "names":null, - "occurrences":null + "names":[{ + "item_identifiers":null, + "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_editor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:param]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:parameter-type]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:parameter-id]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:parameter-name]" + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_2:Text]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:tg-approved]" + "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:textgrid-url]" + "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:identifier]" + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } ], - "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:owner]" + "subject_identifiers":["[pref_2:Delete-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:use-target-ns]" + "subject_identifiers":["[pref_2:Editor-Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:target-namespace]" + "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:description-location-body]" + "subject_identifiers":["[pref_3:cursor]" ], "subject_locators":null, "item_identifiers":null, @@ -1668,141 +1729,115 @@ "occurrences":null }, { - "subject_identifiers":["[pref_4:inline-description-location]" + "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Position]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:description-location-uri]" + "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Commit-Button]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"creator_hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:keywords]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"reset", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_4:description]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_4:service-type]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:operation]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:configuration]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:parameter]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-config]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-parameter]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Parameter-Config]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Parameter]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_2:Position]" ], "names":null, "occurrences":[{ @@ -1817,7 +1852,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"65px", + "value":"115px", "scope":null, "reifier":null }, @@ -1832,18 +1867,18 @@ ] }, { - "subject_identifiers":["[pref_1:environment-editor-delete-button]" + "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_2:Action-Button]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_delete_button_id", + "value":"hash_object_reset_button_id", "scope":null, "reifier":null }, @@ -1874,7 +1909,7 @@ ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -1884,7 +1919,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-name-text-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" ], "subject_locators":null, "item_identifiers":null, @@ -1903,7 +1938,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"10px", + "value":"70px", "scope":null, "reifier":null }, @@ -1911,14 +1946,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"70px", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-name-text]" + "subject_identifiers":["[pref_1:hash-object-creator-text-value]" ], "subject_locators":null, "item_identifiers":null, @@ -1929,7 +1964,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_name_text_id", + "value":"hash_object_text_value_id", "scope":null, "reifier":null }, @@ -1937,7 +1972,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:readonly]", - "value":"true", + "value":"false", "scope":null, "reifier":null }, @@ -1945,14 +1980,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"240px", + "value":"230px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", + "type":"si:[pref_3:pointer]", "value":"text", "scope":null, "reifier":null @@ -1960,6 +1995,14 @@ { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:padding-left]", "value":"2px", "scope":null, @@ -1968,7 +2011,7 @@ ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" ], "subject_locators":null, "item_identifiers":null, @@ -1979,14 +2022,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:literal-value]", - "value":"name:", + "value":"value:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -1996,7 +2039,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-editor-text-label-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2015,7 +2058,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"10px", + "value":"70px", "scope":null, "reifier":null }, @@ -2030,7 +2073,7 @@ ] }, { - "subject_identifiers":["[pref_1:environment-editor-text-label]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" ], "subject_locators":null, "item_identifiers":null, @@ -2041,7 +2084,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "value":"hash_object_text_label_value_id", "scope":null, "reifier":null }, @@ -2057,7 +2100,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"60px", + "value":"100px", "scope":null, "reifier":null }, @@ -2088,143 +2131,127 @@ ] }, { - "subject_identifiers":["[pref_1:environment-editor-view-binding]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "instance_of":["si:[pref_2:Position]" ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", + "type":"si:[pref_3:position-style]", + "value":"absolute", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", + "type":"si:[pref_3:top]", + "value":"40px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_3:left]", + "value":"120px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"65px", + "type":"si:[pref_3:readonly]", + "value":"false", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", + "type":"si:[pref_3:width]", + "value":"230px", "scope":null, "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:environment-creator-commit-button]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" - ], - "names":null, - "occurrences":[{ + }, + { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_commit_button_id", + "type":"si:[pref_3:pointer]", + "value":"text", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", + "type":"si:[pref_3:padding-left]", + "value":"2px", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", + "type":"si:[pref_3:literal-value]", + "value":"key:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2234,7 +2261,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-creator-name-text-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2253,7 +2280,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"10px", + "value":"40px", "scope":null, "reifier":null }, @@ -2261,14 +2288,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"70px", + "value":"10px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-name-text]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" ], "subject_locators":null, "item_identifiers":null, @@ -2279,7 +2306,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_name_text_id", + "value":"hash_object_text_label_key_id", "scope":null, "reifier":null }, @@ -2287,7 +2314,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:readonly]", - "value":"false", + "value":"true", "scope":null, "reifier":null }, @@ -2295,48 +2322,48 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"240px", + "value":"100px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:cursor]", - "value":"text", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value]" + "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_2:Role-Player]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"name:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" ], "subject_locators":null, "item_identifiers":null, @@ -2346,7 +2373,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2365,7 +2392,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"10px", + "value":"0px", "scope":null, "reifier":null }, @@ -2373,25 +2400,25 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:left]", - "value":"10px", + "value":"0px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-text-label]" + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_2:List-Box]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"environment_text_label_id", + "value":"hash_object_text_list_box_env_id", "scope":null, "reifier":null }, @@ -2407,108 +2434,42 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"60px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "value":"232px", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:environment-creator-view-binding]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_2:Default-Literal-Value]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } - ], "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"environment_default_creator_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"322px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_3:literal-value]", + "value":"environment:", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_3:cursor]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_2:Value-Group]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2527,14 +2488,14 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"115px", + "value":"10px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", + "type":"si:[pref_3:left]", "value":"10px", "scope":null, "reifier":null @@ -2542,26 +2503,26 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_2:Text]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:id]", - "value":"editor_hash_object_commit_button_id", + "value":"hash_object_text_label_env_id", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", + "type":"si:[pref_3:readonly]", + "value":"true", "scope":null, "reifier":null }, @@ -2569,108 +2530,58 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"80px", + "value":"100px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", + "type":"si:[pref_3:border-style]", + "value":"none", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_3:color]", + "value":"#fff", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" + "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Delete-Button]" + "instance_of":["si:[pref_2:Role-Player]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_delete_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_2:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" + "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" ], "subject_locators":null, "item_identifiers":null, @@ -2689,7 +2600,7 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:top]", - "value":"70px", + "value":"10px", "scope":null, "reifier":null }, @@ -2704,26 +2615,26 @@ ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-value]" + "subject_identifiers":["[pref_1:has-environment-creator-association-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_2:Creator-Association-View]" ], - "names":null, - "occurrences":[{ + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", "scope":null, + "variants":null, "reifier":null - }, - { + } + ], + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", + "type":"si:[pref_3:id]", + "value":"has_environment_createor_association_view_id", "scope":null, "reifier":null }, @@ -2734,35 +2645,11 @@ "value":"230px", "scope":null, "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" + "subject_identifiers":["[pref_1:hash-hash-type-default-value]" ], "subject_locators":null, "item_identifiers":null, @@ -2773,77 +2660,53 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:literal-value]", - "value":"value:", + "value":"confserver", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" + "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_2:Hidden-Value]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_2:TM-Single-Type-Value]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" + "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" ], - "names":null, - "occurrences":[{ + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", "scope":null, + "variants":null, "reifier":null - }, - { + } + ], + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_3:id]", + "value":"hash_object_default_creator_topic_view_id", "scope":null, "reifier":null }, @@ -2851,594 +2714,291 @@ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", "type":"si:[pref_3:width]", - "value":"100px", + "value":"362px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_3:height]", + "value":"160px", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_3:background-color]", + "value":"#023467", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_1:textgrid-ui-schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Schema]" + ], + "names":[{ "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_3:schema-name]", "scope":null, + "variants":null, "reifier":null } - ] + ], + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" + "subject_identifiers":["[pref_2:Commit-Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Action-Button]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" + "subject_identifiers":["[pref_2:Button]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value-Group]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-key]" + "subject_identifiers":["[pref_3:right]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" + "subject_identifiers":["[pref_3:left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" + "subject_identifiers":["[pref_3:top]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + "subject_identifiers":["[pref_3:position-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" + "subject_identifiers":["[pref_2:Position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:font-size]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" + "subject_identifiers":["[pref_3:readonly]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" + "subject_identifiers":["[pref_2:Text]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-env]" + "subject_identifiers":["[pref_2:List-Box]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" + "subject_identifiers":["[pref_2:Text-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Literal-Value]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:has-environment-editor-association-view]" + "subject_identifiers":["[pref_3:fixed]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Editor-Association-View]" + "instance_of":["si:[pref_7:occurrence-type]" ], - "names":[{ - "item_identifiers":null, - "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Value]" ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_editor_association_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - } - ] + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" + "subject_identifiers":["[pref_3:literal-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" + "subject_identifiers":["[pref_2:Literal-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Single-Type-Value]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" + "subject_identifiers":["[pref_3:display-by]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" + "subject_identifiers":["[pref_2:TM-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" - ], + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" + "subject_identifiers":["[pref_2:Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" - ], + "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" + "subject_identifiers":["[pref_2:Creator-Association-View]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Association-View]" ], - "names":[{ - "item_identifiers":null, - "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", - "scope":null, - "variants":null, - "reifier":null - } + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" ], - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_editor_topic_view_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - } - ] + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null }, { - "subject_identifiers":["[pref_2:Delete-Button]" + "subject_identifiers":["[pref_2:Default-Topic-View]" ], "subject_locators":null, "item_identifiers":null, @@ -3447,7 +3007,7 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Editor-Association-View]" + "subject_identifiers":["[pref_2:Topic-View]" ], "subject_locators":null, "item_identifiers":null, @@ -3456,7 +3016,18 @@ "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" + "subject_identifiers":["[pref_3:view-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]", + "si:[pref_3:view-name]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:View]" ], "subject_locators":null, "item_identifiers":null, @@ -3465,1430 +3036,1056 @@ "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + "subject_identifiers":["[pref_3:id]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:right]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" + "subject_identifiers":["[pref_3:color]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Commit-Button]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"creator_hash_object_commit_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + "subject_identifiers":["[pref_3:background-color]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"reset", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + "subject_identifiers":["[pref_3:border-style]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + "subject_identifiers":["[pref_3:pointer]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"115px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" + "subject_identifiers":["[pref_3:height]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Action-Button]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_reset_button_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"30px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"80px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:font-size]", - "value":"12px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + "subject_identifiers":["[pref_3:padding-left]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + "subject_identifiers":["[pref_3:width]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + "subject_identifiers":["[pref_3:hidden-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + "subject_identifiers":["[pref_2:Hidden-Value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Visible-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Role-Player]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"value:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + "subject_identifiers":["[pref_2:Descriptor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + "subject_identifiers":["[pref_3:schema-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:name-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"70px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + "subject_identifiers":["[pref_2:Schema]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_value_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + "subject_identifiers":["[pref_3:descendant]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + "subject_identifiers":["[pref_3:ancestor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + "subject_identifiers":["[pref_3:value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"false", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:pointer]", - "value":"text", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:padding-left]", - "value":"2px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + "subject_identifiers":["[pref_3:value-group]", + "[pref_3:value-group]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"key:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + "subject_identifiers":["[pref_3:descriptor]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + "subject_identifiers":["[pref_3:tm-construct]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"40px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + "subject_identifiers":["[pref_3:tm-value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_key_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + "subject_identifiers":["[pref_3:containee]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + "subject_identifiers":["[pref_3:container]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + "subject_identifiers":["[pref_3:position]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"0px", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"0px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + "subject_identifiers":["[pref_3:value-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:List-Box]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_list_box_env_id", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"232px", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + "subject_identifiers":["[pref_3:view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"environment:", - "scope":null, - "reifier":null - } - ] + "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + "subject_identifiers":["[pref_3:tm-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Value-Group]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + "subject_identifiers":["[pref_3:association-view-binding]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:topic-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:contains]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" + "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Text]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_text_label_env_id", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:readonly]", - "value":"true", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"100px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:border-style]", - "value":"none", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:color]", - "value":"#fff", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" + "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Role-Player]" + "instance_of":["si:[pref_7:association-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" + "instance_of":["si:[pref_7:topic-role-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Position]" + "instance_of":["si:[pref_7:association-role-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:position-style]", - "value":"absolute", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:top]", - "value":"10px", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:left]", - "value":"120px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Creator-Association-View]" + "instance_of":["si:[pref_7:regular-expression-constraint]" ], - "names":[{ + "names":null, + "occurrences":[{ "item_identifiers":null, - "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", - "type":"si:[pref_3:view-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", "scope":null, - "variants":null, "reifier":null } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-constraint]" ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"has_environment_createor_association_view_id", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"230px", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-hash-type-default-value]" + "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Literal-Value]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:literal-value]", - "value":"confserver", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" + "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Hidden-Value]" + "instance_of":["si:[pref_7:regular-expression-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + "subject_identifiers":["[pref_4:hash-value-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:TM-Single-Type-Value]" + "instance_of":["si:[pref_7:topic-occurrence-constraint]" ], "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_2:Default-Creator-Topic-View]" - ], - "names":[{ + "occurrences":[{ "item_identifiers":null, - "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", - "type":"si:[pref_3:view-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, - "variants":null, "reifier":null } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], + "names":null, "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:id]", - "value":"hash_object_default_creator_topic_view_id", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:width]", - "value":"362px", + "type":"si:[pref_7:regexp]", + "value":"^.+$", "scope":null, "reifier":null - }, - { + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:height]", - "value":"160px", + "type":"si:[pref_7:card-min]", + "value":"1", "scope":null, "reifier":null }, { "item_identifiers":null, "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_3:background-color]", - "value":"#023467", + "type":"si:[pref_7:card-max]", + "value":"1", "scope":null, "reifier":null } ] }, { - "subject_identifiers":["[pref_1:textgrid-ui-schema]" + "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_2:Schema]" + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" ], - "names":[{ + "names":null, + "occurrences":[{ "item_identifiers":null, - "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", - "type":"si:[pref_3:schema-name]", + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", "scope":null, - "variants":null, "reifier":null } - ], - "occurrences":null + ] }, { - "subject_identifiers":["[pref_2:Commit-Button]" + "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Action-Button]" + "subject_identifiers":["[pref_4:hash-hash-type-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Button]" + "subject_identifiers":["[pref_4:hash-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_2:Value-Group]" + "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:right]" + "subject_identifiers":["[pref_4:environment-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:topic-name-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:left]" + "subject_identifiers":["[pref_4:environment-psi-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:subject-identifier-constraint]" ], "names":null, - "occurrences":null + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "scope":null, + "reifier":null + } + ] }, { - "subject_identifiers":["[pref_3:top]" + "subject_identifiers":["[pref_4:environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:position-style]" + "subject_identifiers":["[pref_4:hash]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Position]" + "subject_identifiers":["[pref_4:service]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:role-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:font-size]" + "subject_identifiers":["[pref_4:has-environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:readonly]" + "subject_identifiers":["[pref_4:has-hash]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Text]" + "subject_identifiers":["[pref_4:environment-name]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:name-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:List-Box]" + "subject_identifiers":["[pref_4:value]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Text-Object]" + "subject_identifiers":["[pref_4:key]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Default-Literal-Value]" + "subject_identifiers":["[pref_4:hash-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:fixed]" + "subject_identifiers":["[pref_5:Environment]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:literal-value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Literal-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:TM-Single-Type-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:display-by]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:TM-Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Creator-Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Association-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Default-Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Topic-View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:view-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:View]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:id]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:color]" + "subject_identifiers":["[pref_5:Hash-Object]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:background-color]" + "subject_identifiers":["[pref_5:Service]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:border-style]" + "subject_identifiers":["[pref_6:supertype-subtype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:pointer]" + "subject_identifiers":["[pref_6:subtype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:role-type]", + "si:[pref_6:subtype]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:height]" + "subject_identifiers":["[pref_6:supertype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:padding-left]" + "subject_identifiers":["[pref_7:constrained-role]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:width]" + "subject_identifiers":["[pref_7:constrained-topic-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" + "instance_of":["si:[pref_7:association-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:hidden-value]" + "subject_identifiers":["[pref_7:constrained-statement]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Hidden-Value]" + "instance_of":["si:[pref_7:association-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Visible-Object]" + "subject_identifiers":["[pref_7:constrained]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":null, - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_2:Role-Player]" + "instance_of":["si:[pref_7:role-type]" ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":null, "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Descriptor]" + "subject_identifiers":["[pref_7:association-role-constraint]" ], "subject_locators":null, "item_identifiers":null, @@ -4898,17 +4095,17 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:schema-name]" + "subject_identifiers":["[pref_7:topic-role-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_2:Schema]" + "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" ], "subject_locators":null, "item_identifiers":null, @@ -4918,2997 +4115,150 @@ "occurrences":null }, { - "subject_identifiers":["[pref_3:descendant]" + "subject_identifiers":["[pref_7:regular-expression-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:ancestor]" + "subject_identifiers":["[pref_7:topic-occurrence-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:value]" + "subject_identifiers":["[pref_7:topic-name-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:value-group]" + "subject_identifiers":["[pref_7:subject-identifier-constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:descriptor]" + "subject_identifiers":["[pref_7:constraint]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:role-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:tm-construct]" + "subject_identifiers":["[pref_7:datatype]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:tm-value]" + "subject_identifiers":["[pref_7:regexp]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:containee]" + "subject_identifiers":["[pref_7:card-max]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:container]" + "subject_identifiers":["[pref_7:card-min]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" + "instance_of":["si:[pref_7:occurrence-type]", + "si:[pref_7:card-min]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:position]" + "subject_identifiers":["[pref_7:association-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:value-binding]" + "subject_identifiers":["[pref_7:role-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:view-binding]" + "subject_identifiers":["[pref_7:occurrence-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:tm-binding]" + "subject_identifiers":["[pref_7:name-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_7:topic-type]" ], "names":null, "occurrences":null }, { - "subject_identifiers":["[pref_3:association-view-binding]" + "subject_identifiers":["[pref_7:topic-type]" ], "subject_locators":null, "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:topic-type]" ], "names":null, "occurrences":null - }, - { - "subject_identifiers":["[pref_3:topic-view-binding]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_3:contains]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-role-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-value-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-key-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-datatype-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:datatype]", - "value":"http://www.w3.org/2001/XMLSchema#string", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-hash-type-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-occurrence-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:hash-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:regular-expression-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-name-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment-psi-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:subject-identifier-constraint]" - ], - "names":null, - "occurrences":[{ - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-min]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:card-max]", - "value":"1", - "scope":null, - "reifier":null - }, - { - "item_identifiers":null, - "datatype":"http://www.w3.org/2001/XMLSchema#string", - "type":"si:[pref_7:regexp]", - "value":"^http://textgrid.org/serviceregistry/environment/.+$", - "scope":null, - "reifier":null - } - ] - }, - { - "subject_identifiers":["[pref_4:environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:service]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:has-hash]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:environment-name]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:name-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:value]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:key]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_4:hash-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Environment]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Hash-Object]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_5:Service]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:supertype-subtype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:subtype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_6:supertype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-role]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-topic-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained-statement]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:association-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constrained]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:association-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-role-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:regular-expression-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-occurrence-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-name-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:subject-identifier-constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:constraint]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]", - "si:[pref_7:role-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:datatype]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:regexp]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:card-max]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:card-min]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:occurrence-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:association-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:role-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:occurrence-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:name-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - }, - { - "subject_identifiers":["[pref_7:topic-type]" - ], - "subject_locators":null, - "item_identifiers":null, - "instance_of":["si:[pref_7:topic-type]" - ], - "names":null, - "occurrences":null - } - ], - "associations":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:configuration]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-configuration-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-config]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-config-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-service-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-role]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:has-parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:has-parameter-parameter-role-constraint]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:data]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:data]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-data-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:form]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:form]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-form-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:default]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:default]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-default-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-config-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter-Config]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:needs-b64-encoding]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:crud]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:crud]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-crud-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:multiple]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:multiple]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-multiple-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:mime-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-mime-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:param]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:param]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-param-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-id]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-id-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-parameter-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:parameter-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:parameter-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Parameter]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:tg-approved]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-tg-approved-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:textgrid-url]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-textgrid-url-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:identifier]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:identifier]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-identifier-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:owner]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:owner]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-owner-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:use-target-ns]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-use-target-ns-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:target-namespace]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-target-namespace-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-body]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-body-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:inline-description-location]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-inline-description-location-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description-location-uri]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-location-uri-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:keywords]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:keywords]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-keywords-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:description]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-description-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-type]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-service-type-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-datatype-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:operation]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:operation]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-operation-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-statement]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_4:service-name]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-name-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained-topic-type]", - "reifier":null, - "scope":null, - "roles":[{ - "item_identifiers":null, - "type":"si:[pref_7:constraint]", - "reifier":null, - "player":"si:[pref_4:service-psi-constraint]" - }, - { - "item_identifiers":null, - "type":"si:[pref_7:constrained]", - "reifier":null, - "player":"si:[pref_5:Service]" - } - ] - }, - { + } + ], + "associations":[{ "item_identifiers":null, "type":"si:[pref_3:position]", "reifier":null, @@ -11494,4 +7844,4 @@ ], "item_type":"topicmap", "reifier":null -} \ No newline at end of file +} Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Thu Sep 22 06:48:53 2011 (r962) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Thu Sep 22 07:12:10 2011 (r963) @@ -1,9751 +1,2 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/environment/.+$ - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GDL Schema for the TextGrid-ServiceRegistry-UI - - - - - - - - - - - - - GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - - - - - - hash_object_default_creator_topic_view_id - - - - - - 362px - - - - - - 160px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - - - - - - - - confserver - - - - - - - - - - - - - A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - - - - - - has_environment_createor_association_view_id - - - - - - 230px - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - - - - - - - - hash_object_text_label_env_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - environment: - - - - - - - - - - - - - hash_object_text_list_box_env_id - - - - - - true - - - - - - 232px - - - - - - - - - - - - - absolute - - - - - - 0px - - - - - - 0px - - - - - - - - - - - - - - - - - - - - - - - - - - - hash_object_text_label_key_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - key: - - - - - - - - - - - - - hash_object_text_key_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - hash_object_text_label_value_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - value: - - - - - - - - - - - - - hash_object_text_value_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - hash_object_reset_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - reset - - - - - - - - - - - - - creator_hash_object_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - - - - - - GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - - - - - - hash_object_default_editor_topic_view_id - - - - - - 362px - - - - - - 160px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - hash_object_text_label_env_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - environment: - - - - - - - - - - - - - A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - - - - - - has_environment_editor_association_view_id - - - - - - 230px - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 120px - - - - - - - - - - - - - hash_object_text_env_id - - - - - - true - - - - - - 230px - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 0px - - - - - - 0px - - - - - - - - - - - - - - - - - - - - hash_object_text_label_key_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - key: - - - - - - - - - - - - - hash_object_text_key_id - - - - - - true - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - hash_object_text_label_value_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - value: - - - - - - - - - - - - - hash_object_text_value_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - hash_object_delete_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - editor_hash_object_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - - - - - - environment_default_creator_topic_view_id - - - - - - 322px - - - - - - 100px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - environment_text_label_id - - - - - - true - - - - - - 60px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - name: - - - - - - - - - - - - - environment_name_text_id - - - - - - false - - - - - - 240px - - - - - - text - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 70px - - - - - - - - - - - - - - - - - - - - environment_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 65px - - - - - - 10px - - - - - - - - - - - - - GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - - - - - - environment_default_editor_topic_view_id - - - - - - 322px - - - - - - 100px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - environment_text_label_id - - - - - - true - - - - - - 60px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - name: - - - - - - - - - - - - - environment_name_text_id - - - - - - true - - - - - - 240px - - - - - - text - - - - - - 2px - - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 70px - - - - - - - - - - - - - - - - - - - - environment_delete_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - - absolute - - - - - - 65px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +11^http://textgrid.org/serviceregistry/environment/.+$11^.+$11^http://textgrid.org/serviceregistry/hashobject/.+/.+$11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$1111111111111111GDL Schema for the TextGrid-ServiceRegistry-UIGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_creator_topic_view_id362px160px#023467confserverA Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_createor_association_view_id230pxabsolute10px120pxhash_object_text_label_env_idtrue100px#023467none#fffabsolute10px10pxenvironment:hash_object_text_list_box_env_idtrue232pxabsolute0px0pxhash_object_text_label_key_idtrue100px#023467none#fffabsolute40px10pxkey:hash_object_text_key_idfalse230pxtextnone2pxabsolute40px120pxhash_object_text_label_value_idtrue100px#023467none#fffabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_reset_button_id30px80px12pxabsolute115px10pxresetcreator_hash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_editor_topic_view_id362px160px#023467hash_object_text_label_env_idtrue100px#023467none#fffabsolute10px10pxenvironment:A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_editor_association_view_id230pxabsolute10px120pxhash_object_text_env_idtrue230px2pxdefaultgraynoneabsolute0px0pxhash_object_text_label_key_idtrue100px#023467none#fffabsolute40px10pxkey:hash_object_text_key_idtrue230pxnone2pxdefaultgrayabsolute40px120pxhash_object_text_label_value_idtrue100px#023467none#fffabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_delete_button_id30px80px12pxabsolute115px10pxeditor_hash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_creator_topic_view_id322px100px#023467environment_text_label_idtrue60px#023467none#fffabsolute10px10pxname:environment_name_text_idfalse240pxtext2pxabsolute10px70pxenvironment_commit_button_id30px80px12pxabsolute65px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_editor_topic_view_id322px100px#023467environment_text_label_idtrue60px#023467none#fffabsolute10px10pxname:environment_name_text_idtrue240pxdefault2pxnonegrayabsolute10px70pxenvironment_delete_button_id30px80px12pxabsolute65px10px \ No newline at end of file From lgiessmann at common-lisp.net Thu Sep 22 14:13:33 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 22 Sep 2011 07:13:33 -0700 Subject: [isidorus-cvs] r964 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt gwt/clean gwt/clean/images Message-ID: Author: lgiessmann Date: Thu Sep 22 07:13:31 2011 New Revision: 964 Log: gdl-frontend: updated all hosted files Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2C5635514A330ECC9280DFF7CB1F5DBC.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/794025F1DCE6E98D6CC7642FDCBE3F09.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/8DAD90B7D3461FC35A7531034F266D4A.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/8FBF5C85659F486CCC700B2CA3F2EA78.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9A0BAD98DB119038F84C421B8F696F02.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/F37C8A5030E690FCA40137B5BD50498A.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2C5635514A330ECC9280DFF7CB1F5DBC.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2C5635514A330ECC9280DFF7CB1F5DBC.cache.html Thu Sep 22 07:13:31 2011 (r964) @@ -0,0 +1,1736 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/794025F1DCE6E98D6CC7642FDCBE3F09.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/794025F1DCE6E98D6CC7642FDCBE3F09.cache.html Thu Sep 22 07:13:31 2011 (r964) @@ -0,0 +1,1734 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/8DAD90B7D3461FC35A7531034F266D4A.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/8DAD90B7D3461FC35A7531034F266D4A.cache.html Thu Sep 22 07:13:31 2011 (r964) @@ -0,0 +1,1763 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/8FBF5C85659F486CCC700B2CA3F2EA78.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/8FBF5C85659F486CCC700B2CA3F2EA78.cache.html Thu Sep 22 07:13:31 2011 (r964) @@ -0,0 +1,1781 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9A0BAD98DB119038F84C421B8F696F02.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9A0BAD98DB119038F84C421B8F696F02.cache.html Thu Sep 22 07:13:31 2011 (r964) @@ -0,0 +1,1746 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/F37C8A5030E690FCA40137B5BD50498A.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/F37C8A5030E690FCA40137B5BD50498A.cache.html Thu Sep 22 07:13:31 2011 (r964) @@ -0,0 +1,1725 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Thu Sep 22 07:13:31 2011 (r964) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='2C5635514A330ECC9280DFF7CB1F5DBC',Pb='794025F1DCE6E98D6CC7642FDCBE3F09',Qb='8DAD90B7D3461FC35A7531034F266D4A',Rb='8FBF5C85659F486CCC700B2CA3F2EA78',Sb='9A0BAD98DB119038F84C421B8F696F02',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + From lgiessmann at common-lisp.net Thu Sep 22 14:23:56 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Thu, 22 Sep 2011 07:23:56 -0700 Subject: [isidorus-cvs] r965 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Thu Sep 22 07:23:54 2011 New Revision: 965 Log: gdl-frontend: Widgets: updated the format and indent of the merged GDL-Schemas Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Thu Sep 22 07:13:31 2011 (r964) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Thu Sep 22 07:23:54 2011 (r965) @@ -1 +1,11553 @@ -{"version":"1.1","prefixes":{"pref_5":"http:\/\/textgrid.org\/serviceregistry\/model\/types\/","pref_4":"http:\/\/textgrid.org\/serviceregistry\/model\/","pref_1":"http:\/\/textgrid.org\/serviceregistry\/gdl\/","pref_6":"http:\/\/psi.topicmaps.org\/iso13250\/model\/","pref_8":"http:\/\/textgrid.org\/serviceregistry\/","xsd":"http:\/\/www.w3.org\/2001\/XMLSchema#","pref_2":"http:\/\/psi.isidor.us\/gdl\/types\/","pref_7":"http:\/\/psi.topicmaps.org\/tmcl\/","pref_3":"http:\/\/psi.isidor.us\/gdl\/"},"item_identifiers":["[pref_8:services-tm]"],"topics":[{"subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-config-configuration-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-config-parameter-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-parameter-service-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-data-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-form-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-default-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-config-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/parameter-config\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-crud-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-multiple-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-mime-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-param-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-param-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-parameter-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-parameter-id-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:parameter-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/parameter\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-tg-approved-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-textgrid-url-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-identifier-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-identifier-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-owner-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-owner-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-use-target-ns-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-target-namespace-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-location-body-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#boolean","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-inline-description-location-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-location-uri-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-keywords-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-keywords-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-description-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-service-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-service-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-operation-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-operation-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"0","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:service-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/service\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:data]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:form]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:default]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-config-id]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-config-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:example-config]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:needs-b64-encoding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:crud]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:multiple]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:mime-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:param]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-id]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:tg-approved]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:textgrid-url]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:identifier]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:owner]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:use-target-ns]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:target-namespace]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:description-location-body]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:inline-description-location]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:description-location-uri]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:keywords]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:description]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:service-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:operation]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:service-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:configuration]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:parameter]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-config]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-parameter]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Parameter-Config]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Parameter]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-editor-delete-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"65px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-delete-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Delete-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_delete_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-name-text-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-editor-name-text-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"70px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-name-text]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_name_text_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"240px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"default","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"name:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-editor-text-label-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-text-label]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_text_label_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"60px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-editor-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-default-editor-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Editor-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Editor Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_default_editor_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"322px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"65px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-name-text-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-creator-name-text-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"70px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-name-text]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_name_text_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"240px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"name:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-creator-text-label-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-text-label]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_text_label_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"60px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:environment-creator-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:environment-default-creator-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Creator-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Creator Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"environment_default_creator_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"322px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"editor_hash_object_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-delete-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Delete-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_delete_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"value:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"default","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"key:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"0px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"0px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:cursor]","value":"default","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"gray","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:has-environment-editor-association-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Editor-Association-View]"],"names":[{"item_identifiers":null,"value":"A Editor View for associations of the type http:\/\/textgrid.org\/serviceregistry\/model\/has-environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"has_environment_editor_association_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"environment:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-text-label-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-editor-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Editor-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Editor Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Hash-Object","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_default_editor_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"362px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"160px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_2:Delete-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Editor-Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Editor-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:cursor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:right]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-commit-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Commit-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"creator_hash_object_commit_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"reset","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"115px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-reset-button]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Action-Button]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_reset_button_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"30px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"80px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:font-size]","value":"12px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:pointer]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"value:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"70px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_value_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"false","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:pointer]","value":"text","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:padding-left]","value":"2px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"key:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"40px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_key_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Role-Player]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"0px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"0px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:List-Box]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_list_box_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"232px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"environment:","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Value-Group]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"10px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-creator-text-label-env]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Text]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_text_label_env_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:readonly]","value":"true","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"100px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:border-style]","value":"none","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:color]","value":"#fff","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Role-Player]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Hidden-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Position]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:position-style]","value":"absolute","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:top]","value":"10px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:left]","value":"120px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:has-environment-creator-association-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Creator-Association-View]"],"names":[{"item_identifiers":null,"value":"A Creator View for associations of the type http:\/\/textgrid.org\/serviceregistry\/model\/has-environment","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"has_environment_createor_association_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"230px","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-hash-type-default-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Literal-Value]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:literal-value]","value":"confserver","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:hash-hash-type-hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Hidden-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-creator-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:TM-Single-Type-Value]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Default-Creator-Topic-View]"],"names":[{"item_identifiers":null,"value":"GDL Default Creator Topic View for instances of http:\/\/textgrid.org\/serviceregistry\/model\/Hash-Object","type":"si:[pref_3:view-name]","scope":null,"variants":null,"reifier":null}],"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:id]","value":"hash_object_default_creator_topic_view_id","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:width]","value":"362px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:height]","value":"160px","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_3:background-color]","value":"#023467","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_1:textgrid-ui-schema]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_2:Schema]"],"names":[{"item_identifiers":null,"value":"GDL Schema for the TextGrid-ServiceRegistry-UI","type":"si:[pref_3:schema-name]","scope":null,"variants":null,"reifier":null}],"occurrences":null},{"subject_identifiers":["[pref_2:Commit-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Action-Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Button]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Value-Group]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:right]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:left]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:top]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:position-style]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Position]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:font-size]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:readonly]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Text]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:List-Box]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Text-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Literal-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:fixed]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:literal-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Literal-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:TM-Single-Type-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:display-by]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:TM-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Creator-Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Association-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Creator-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Default-Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Topic-View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:view-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]","si:[pref_3:view-name]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:View]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:id]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:color]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:background-color]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:border-style]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:pointer]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:height]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:padding-left]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:width]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:hidden-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Hidden-Value]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Visible-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Role-Player]"],"subject_locators":null,"item_identifiers":null,"instance_of":null,"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Descriptor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:schema-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_2:Schema]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:descendant]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:ancestor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value-group]","[pref_3:value-group]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:descriptor]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-construct]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:containee]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:container]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:position]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:value-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:tm-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:association-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:topic-view-binding]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_3:contains]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-service-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-hash-hash-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-hash-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:has-environment-environment-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-role-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-value-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-key-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-datatype-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:datatype]","value":"http:\/\/www.w3.org\/2001\/XMLSchema#string","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-hash-type-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-occurrence-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:hash-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/hashobject\/.+\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:regular-expression-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-name-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment-psi-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:subject-identifier-constraint]"],"names":null,"occurrences":[{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-min]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:card-max]","value":"1","scope":null,"reifier":null},{"item_identifiers":null,"datatype":"http:\/\/www.w3.org\/2001\/XMLSchema#string","type":"si:[pref_7:regexp]","value":"^http:\/\/textgrid.org\/serviceregistry\/environment\/.+$","scope":null,"reifier":null}]},{"subject_identifiers":["[pref_4:environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:hash]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:service]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:has-hash]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:environment-name]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:name-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:value]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:key]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_4:hash-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Environment]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Hash-Object]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_5:Service]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:supertype-subtype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:subtype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]","si:[pref_6:subtype]","si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_6:supertype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-role]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-topic-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained-statement]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:association-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constrained]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:association-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-role-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:occurrence-datatype-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:regular-expression-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-occurrence-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-name-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:subject-identifier-constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:constraint]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]","si:[pref_7:role-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:datatype]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:regexp]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:card-max]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:card-min]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:occurrence-type]","si:[pref_7:card-min]","si:[pref_7:occurrence-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:association-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:role-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:occurrence-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:name-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]"],"names":null,"occurrences":null},{"subject_identifiers":["[pref_7:topic-type]"],"subject_locators":null,"item_identifiers":null,"instance_of":["si:[pref_7:topic-type]","si:[pref_7:topic-type]","si:[pref_7:topic-type]"],"names":null,"occurrences":null}],"associations":[{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:configuration]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:configuration]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter-Config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-configuration-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-config]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-config-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-parameter-parameter-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-data-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:data]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-data-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:data]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-data-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-form-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:form]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-form-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:form]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-form-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-default-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:default]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-default-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:default]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-default-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-config-id]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-parameter-config-id-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-config-id]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-parameter-config-id-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-config-name]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter-Config]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-config-psi-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter-Config]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:needs-b64-encoding]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-needs-b64-encoding-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:needs-b64-encoding]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-needs-b64-encoding-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-crud-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:crud]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-crud-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:crud]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-crud-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-multiple-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:multiple]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-multiple-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:multiple]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-multiple-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-mime-type-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:mime-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-mime-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:mime-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-mime-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-param-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:param]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-param-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:param]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-param-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-id-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-id]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-id-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-id]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-id-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-type-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-parameter-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:parameter-name]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:parameter-psi-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Parameter]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-tg-approved-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:tg-approved]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-tg-approved-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:tg-approved]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-tg-approved-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-textgrid-url-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:textgrid-url]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-textgrid-url-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:textgrid-url]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-textgrid-url-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-identifier-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:identifier]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-identifier-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:identifier]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-identifier-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-owner-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:owner]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-owner-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:owner]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-owner-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-use-target-ns-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:use-target-ns]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-use-target-ns-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:use-target-ns]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-use-target-ns-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-target-namespace-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:target-namespace]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-target-namespace-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:target-namespace]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-target-namespace-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-body-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description-location-body]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-body-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description-location-body]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-body-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-inline-description-location-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:inline-description-location]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-inline-description-location-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:inline-description-location]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-inline-description-location-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-uri-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description-location-uri]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-uri-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description-location-uri]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-location-uri-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-keywords-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:keywords]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-keywords-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:keywords]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-keywords-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:description]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-description-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-service-type-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-service-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service-type]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-service-type-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-operation-datatype-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:operation]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-operation-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:operation]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-operation-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service-name]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-name-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:service-psi-constraint]"},{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-name-text-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-text-label-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-editor-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:environment-editor-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-editor-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Environment]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-default-editor-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-name-text-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-name-text]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-text-label-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-creator-text-label]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:environment-creator-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:environment-creator-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Environment]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:environment-default-creator-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-delete-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:display-by]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-editor-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-editor-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:hash-object-editor-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-editor-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Hash-Object]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-default-editor-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Action-Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Delete-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Association-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Editor-Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Editor-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-commit-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-reset-button]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-key]"}]},{"item_identifiers":null,"type":"si:[pref_3:display-by]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-environment-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-list-box-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-hash-role-player]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-hash-role-hidden-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:has-environment-hash-role-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_1:hash-object-has-environment-hash-role-player]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:association-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:has-environment-creator-association-view]"}]},{"item_identifiers":null,"type":"si:[pref_3:view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:value-group]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value-group]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:position]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env-position]"},{"item_identifiers":null,"type":"si:[pref_3:ancestor]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:descendant]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-creator-text-label-env]"}]},{"item_identifiers":null,"type":"si:[pref_3:value-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:value]","reifier":null,"player":"si:[pref_1:hash-hash-type-default-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:hidden-value]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-hash-type-hidden-value]"}]},{"item_identifiers":null,"type":"si:[pref_3:topic-view-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"},{"item_identifiers":null,"type":"si:[pref_3:tm-value]","reifier":null,"player":"si:[pref_1:hash-object-creator-view-binding]"}]},{"item_identifiers":null,"type":"si:[pref_3:tm-binding]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:descriptor]","reifier":null,"player":"si:[pref_1:hash-object-creator-view-binding]"},{"item_identifiers":null,"type":"si:[pref_3:tm-construct]","reifier":null,"player":"si:[pref_5:Hash-Object]"}]},{"item_identifiers":null,"type":"si:[pref_3:contains]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_3:container]","reifier":null,"player":"si:[pref_1:textgrid-ui-schema]"},{"item_identifiers":null,"type":"si:[pref_3:containee]","reifier":null,"player":"si:[pref_1:hash-object-default-creator-topic-view]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Action-Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Commit-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Button]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Action-Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Button]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value-Group]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Position]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Text]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Text-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:List-Box]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Visible-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Text-Object]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Literal-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Literal-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:TM-Single-Type-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:TM-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:TM-Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Hidden-Value]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Value]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Descriptor]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Association-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Creator-Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Association-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Creator-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Topic-View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Default-Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:View]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Topic-View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Visible-Object]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:View]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Visible-Object]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_2:Descriptor]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_2:Role-Player]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Service]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-service-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-hash-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-hash-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-role]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:has-environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:has-environment-environment-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:value]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-value-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:key]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-key-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-datatype-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:hash-type]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-hash-type-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment-name]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-statement]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_4:environment-name]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-name-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Environment]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:environment-psi-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_7:constrained-topic-type]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_7:constrained]","reifier":null,"player":"si:[pref_5:Hash-Object]"},{"item_identifiers":null,"type":"si:[pref_7:constraint]","reifier":null,"player":"si:[pref_4:hash-psi-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:association-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-role-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:regular-expression-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-occurrence-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:subject-identifier-constraint]"}]},{"item_identifiers":null,"type":"si:[pref_6:supertype-subtype]","reifier":null,"scope":null,"roles":[{"item_identifiers":null,"type":"si:[pref_6:supertype]","reifier":null,"player":"si:[pref_7:constraint]"},{"item_identifiers":null,"type":"si:[pref_6:subtype]","reifier":null,"player":"si:[pref_7:topic-name-constraint]"}]}],"item_type":"topicmap","reifier":null} \ No newline at end of file +{ + "version":"1.1", + "prefixes":{ + "pref_5":"http://textgrid.org/serviceregistry/model/types/", + "pref_4":"http://textgrid.org/serviceregistry/model/", + "pref_1":"http://textgrid.org/serviceregistry/gdl/", + "pref_6":"http://psi.topicmaps.org/iso13250/model/", + "pref_8":"http://textgrid.org/serviceregistry/", + "xsd":"http://www.w3.org/2001/XMLSchema#", + "pref_2":"http://psi.isidor.us/gdl/types/", + "pref_7":"http://psi.topicmaps.org/tmcl/", + "pref_3":"http://psi.isidor.us/gdl/" + }, + "item_identifiers":["[pref_8:services-tm]" + ], + "topics":[{ + "subject_identifiers":["[pref_4:has-config-configuration-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-config-configuration-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-config-parameter-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-config-parameter-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-service-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-parameter-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-parameter-parameter-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-data-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-data-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-form-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-form-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-default-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-default-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-parameter-config-id-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-config-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter-config/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-needs-b64-encoding-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-crud-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-crud-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-multiple-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-multiple-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-mime-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-mime-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-param-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-param-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-id-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-parameter-id-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:parameter-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/parameter/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-tg-approved-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-tg-approved-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-textgrid-url-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-textgrid-url-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-identifier-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-identifier-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-owner-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-owner-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-use-target-ns-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-use-target-ns-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-target-namespace-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-target-namespace-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-body-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-body-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-inline-description-location-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#boolean", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-inline-description-location-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-uri-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-location-uri-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-keywords-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-keywords-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-description-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-service-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-service-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-operation-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-operation-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"0", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:service-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/service/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:data]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:form]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:default]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-config-id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-config-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:example-config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:needs-b64-encoding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:crud]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:multiple]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:mime-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:param]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:tg-approved]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:textgrid-url]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:identifier]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:owner]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:use-target-ns]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:target-namespace]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:description-location-body]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:inline-description-location]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:description-location-uri]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:keywords]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:description]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:operation]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:configuration]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Parameter-Config]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Parameter]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-delete-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-delete-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Delete-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"70px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-name-text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"240px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"default", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-text-label]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"60px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-editor-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-default-editor-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"322px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"65px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-commit-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"70px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-name-text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_name_text_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"240px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"name:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-text-label]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_text_label_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"60px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:environment-creator-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:environment-default-creator-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"environment_default_creator_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"322px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-commit-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"editor_hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-delete-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-delete-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Delete-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_delete_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"default", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:cursor]", + "value":"default", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"gray", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environment-editor-association-view-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:has-environment-editor-association-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Editor-Association-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_editor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-text-label-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-editor-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-default-editor-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Editor-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_editor_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_2:Delete-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Editor-Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Editor-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:cursor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-commit-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:right]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-commit-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Commit-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"creator_hash_object_commit_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"reset", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"115px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-reset-button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Action-Button]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_reset_button_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"30px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"80px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:font-size]", + "value":"12px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"value:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"70px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_value_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"false", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:pointer]", + "value":"text", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:padding-left]", + "value":"2px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"key:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"40px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_key_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environment-environment-role-player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Role-Player]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"0px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"0px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-list-box-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:List-Box]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_list_box_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"232px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"environment:", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Value-Group]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"10px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-text-label-env]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Text]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_text_label_env_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:readonly]", + "value":"true", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"100px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:border-style]", + "value":"none", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:color]", + "value":"#fff", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environment-hash-role-player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Role-Player]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:has-environment-hash-role-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-has-environement-creator-association-view-position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Position]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:position-style]", + "value":"absolute", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:top]", + "value":"10px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:left]", + "value":"120px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:has-environment-creator-association-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Creator-Association-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"has_environment_createor_association_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"230px", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-hash-type-default-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Literal-Value]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:literal-value]", + "value":"confserver", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:hash-hash-type-hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Hidden-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-creator-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:TM-Single-Type-Value]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_1:hash-object-default-creator-topic-view]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Default-Creator-Topic-View]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object", + "type":"si:[pref_3:view-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:id]", + "value":"hash_object_default_creator_topic_view_id", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:width]", + "value":"362px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:height]", + "value":"160px", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_3:background-color]", + "value":"#023467", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_1:textgrid-ui-schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_2:Schema]" + ], + "names":[{ + "item_identifiers":null, + "value":"GDL Schema for the TextGrid-ServiceRegistry-UI", + "type":"si:[pref_3:schema-name]", + "scope":null, + "variants":null, + "reifier":null + } + ], + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Commit-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Action-Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Button]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value-Group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:right]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:left]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:top]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position-style]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:font-size]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:readonly]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Text]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:List-Box]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Text-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Literal-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:fixed]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:literal-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Literal-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Single-Type-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:display-by]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:TM-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Creator-Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Association-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Creator-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Default-Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Topic-View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]", + "si:[pref_3:view-name]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:View]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:id]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:background-color]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:border-style]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:pointer]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:height]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:padding-left]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:width]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:hidden-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Hidden-Value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Visible-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Role-Player]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":null, + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:schema-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_2:Schema]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descendant]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:ancestor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-group]", + "[pref_3:value-group]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:descriptor]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-construct]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:containee]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:container]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:position]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:value-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:tm-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:association-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:topic-view-binding]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_3:contains]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash-service-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-service-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-hash-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-hash-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:has-environment-environment-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-role-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-value-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-key-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-datatype-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:datatype]", + "value":"http://www.w3.org/2001/XMLSchema#string", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-hash-type-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-occurrence-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:hash-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/hashobject/.+/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:regular-expression-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-name-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment-psi-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:subject-identifier-constraint]" + ], + "names":null, + "occurrences":[{ + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-min]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:card-max]", + "value":"1", + "scope":null, + "reifier":null + }, + { + "item_identifiers":null, + "datatype":"http://www.w3.org/2001/XMLSchema#string", + "type":"si:[pref_7:regexp]", + "value":"^http://textgrid.org/serviceregistry/environment/.+$", + "scope":null, + "reifier":null + } + ] + }, + { + "subject_identifiers":["[pref_4:environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:has-hash]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:environment-name]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:name-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:value]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:key]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_4:hash-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Environment]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Hash-Object]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_5:Service]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype-subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:subtype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]", + "si:[pref_6:subtype]", + "si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_6:supertype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-role]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained-statement]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:association-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constrained]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-role-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-datatype-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regular-expression-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-occurrence-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-name-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:subject-identifier-constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:constraint]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:role-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:datatype]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:regexp]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-max]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:card-min]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:occurrence-type]", + "si:[pref_7:card-min]", + "si:[pref_7:occurrence-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:association-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:role-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:occurrence-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:name-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + }, + { + "subject_identifiers":["[pref_7:topic-type]" + ], + "subject_locators":null, + "item_identifiers":null, + "instance_of":["si:[pref_7:topic-type]", + "si:[pref_7:topic-type]", + "si:[pref_7:topic-type]" + ], + "names":null, + "occurrences":null + } + ], + "associations":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:configuration]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:configuration]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-configuration-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-config]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-config-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-parameter-parameter-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:data]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:data]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-data-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:form]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:form]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-form-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:default]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:default]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-default-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-parameter-config-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-config-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter-Config]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:needs-b64-encoding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:needs-b64-encoding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:crud]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:crud]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-crud-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:multiple]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:multiple]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-multiple-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:mime-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:mime-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-mime-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:param]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:param]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-param-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-id]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-id-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-parameter-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:parameter-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:parameter-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Parameter]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:tg-approved]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:tg-approved]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-tg-approved-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:textgrid-url]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:textgrid-url]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-textgrid-url-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:identifier]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:identifier]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-identifier-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:owner]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:owner]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-owner-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:use-target-ns]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:use-target-ns]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-use-target-ns-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:target-namespace]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:target-namespace]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-target-namespace-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-body]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-body]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-body-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:inline-description-location]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:inline-description-location]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-inline-description-location-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-uri]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description-location-uri]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-location-uri-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:keywords]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:keywords]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-keywords-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:description]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-description-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-type]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-service-type-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-datatype-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:operation]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:operation]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-operation-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service-name]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-name-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:service-psi-constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-editor-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:environment-editor-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-editor-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Environment]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-default-editor-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-name-text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-creator-text-label]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:environment-creator-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:environment-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Environment]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:environment-default-creator-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-delete-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-editor-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-editor-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-editor-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-editor-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Delete-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Editor-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Editor-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-commit-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-reset-button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-key]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:display-by]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-environment-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-list-box-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:has-environment-hash-role-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environment-hash-role-player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:association-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:has-environment-creator-association-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:value-group]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value-group]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:position]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env-position]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:ancestor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:descendant]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-text-label-env]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-default-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:hidden-value]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-hash-type-hidden-value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:topic-view-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-value]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-binding]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:descriptor]", + "reifier":null, + "player":"si:[pref_1:hash-object-creator-view-binding]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:tm-construct]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_3:contains]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_3:container]", + "reifier":null, + "player":"si:[pref_1:textgrid-ui-schema]" + }, + { + "item_identifiers":null, + "type":"si:[pref_3:containee]", + "reifier":null, + "player":"si:[pref_1:hash-object-default-creator-topic-view]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Commit-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Button]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Action-Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Button]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value-Group]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Position]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:List-Box]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Text-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Literal-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Literal-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Single-Type-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:TM-Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Hidden-Value]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Creator-Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Association-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Creator-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Default-Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:View]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Topic-View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:View]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Visible-Object]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_2:Descriptor]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_2:Role-Player]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Service]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-service-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-hash-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-hash-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-role]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:has-environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:has-environment-environment-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:value]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-value-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:key]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-key-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-datatype-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:hash-type]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-hash-type-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-statement]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_4:environment-name]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-name-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Environment]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:environment-psi-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constrained-topic-type]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_7:constrained]", + "reifier":null, + "player":"si:[pref_5:Hash-Object]" + }, + { + "item_identifiers":null, + "type":"si:[pref_7:constraint]", + "reifier":null, + "player":"si:[pref_4:hash-psi-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:association-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-role-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:regular-expression-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-occurrence-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:subject-identifier-constraint]" + } + ] + }, + { + "item_identifiers":null, + "type":"si:[pref_6:supertype-subtype]", + "reifier":null, + "scope":null, + "roles":[{ + "item_identifiers":null, + "type":"si:[pref_6:supertype]", + "reifier":null, + "player":"si:[pref_7:constraint]" + }, + { + "item_identifiers":null, + "type":"si:[pref_6:subtype]", + "reifier":null, + "player":"si:[pref_7:topic-name-constraint]" + } + ] + } + ], + "item_type":"topicmap", + "reifier":null +} \ No newline at end of file Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Thu Sep 22 07:13:31 2011 (r964) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Thu Sep 22 07:23:54 2011 (r965) @@ -1,2 +1,14733 @@ - -11^http://textgrid.org/serviceregistry/environment/.+$11^.+$11^http://textgrid.org/serviceregistry/hashobject/.+/.+$11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$1111111111111111GDL Schema for the TextGrid-ServiceRegistry-UIGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_creator_topic_view_id362px160px#023467confserverA Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_createor_association_view_id230pxabsolute10px120pxhash_object_text_label_env_idtrue100px#023467none#fffabsolute10px10pxenvironment:hash_object_text_list_box_env_idtrue232pxabsolute0px0pxhash_object_text_label_key_idtrue100px#023467none#fffabsolute40px10pxkey:hash_object_text_key_idfalse230pxtextnone2pxabsolute40px120pxhash_object_text_label_value_idtrue100px#023467none#fffabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_reset_button_id30px80px12pxabsolute115px10pxresetcreator_hash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_editor_topic_view_id362px160px#023467hash_object_text_label_env_idtrue100px#023467none#fffabsolute10px10pxenvironment:A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_editor_association_view_id230pxabsolute10px120pxhash_object_text_env_idtrue230px2pxdefaultgraynoneabsolute0px0pxhash_object_text_label_key_idtrue100px#023467none#fffabsolute40px10pxkey:hash_object_text_key_idtrue230pxnone2pxdefaultgrayabsolute40px120pxhash_object_text_label_value_idtrue100px#023467none#fffabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_delete_button_id30px80px12pxabsolute115px10pxeditor_hash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_creator_topic_view_id322px100px#023467environment_text_label_idtrue60px#023467none#fffabsolute10px10pxname:environment_name_text_idfalse240pxtext2pxabsolute10px70pxenvironment_commit_button_id30px80px12pxabsolute65px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_editor_topic_view_id322px100px#023467environment_text_label_idtrue60px#023467none#fffabsolute10px10pxname:environment_name_text_idtrue240pxdefault2pxnonegrayabsolute10px70pxenvironment_delete_button_id30px80px12pxabsolute65px10px11^http://textgrid.org/serviceregistry/service/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean11^http://textgrid.org/serviceregistry/parameter/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#boolean11^http://textgrid.org/serviceregistry/parameter-config/.+$0101http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#boolean01http://www.w3.org/2001/XMLSchema#string01http://www.w3.org/2001/XMLSchema#string1111111111111111 \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/environment/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Schema for the TextGrid-ServiceRegistry-UI + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_creator_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + + + + + + + + confserver + + + + + + + + + + + + + A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_createor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + hash_object_text_list_box_env_id + + + + + + true + + + + + + 232px + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_reset_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + reset + + + + + + + + + + + + + creator_hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_editor_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_editor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + hash_object_text_env_id + + + + + + true + + + + + + 230px + + + + + + 2px + + + + + + default + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + true + + + + + + 230px + + + + + + none + + + + + + 2px + + + + + + default + + + + + + gray + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + editor_hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_creator_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + false + + + + + + 240px + + + + + + text + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_editor_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + true + + + + + + 240px + + + + + + default + + + + + + 2px + + + + + + none + + + + + + gray + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/service/.+$ + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/parameter/.+$ + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/parameter-config/.+$ + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#boolean + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 0 + + + + + + 1 + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Thu Sep 22 07:13:31 2011 (r964) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Thu Sep 22 07:23:54 2011 (r965) @@ -1,2 +1,9840 @@ - -11^http://textgrid.org/serviceregistry/environment/.+$11^.+$11^http://textgrid.org/serviceregistry/hashobject/.+/.+$11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$http://www.w3.org/2001/XMLSchema#string11^.+$1111111111111111GDL Schema for the TextGrid-ServiceRegistry-UIGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_creator_topic_view_id362px160px#023467confserverA Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_createor_association_view_id230pxabsolute10px120pxhash_object_text_label_env_idtrue100px#023467none#fffabsolute10px10pxenvironment:hash_object_text_list_box_env_idtrue232pxabsolute0px0pxhash_object_text_label_key_idtrue100px#023467none#fffabsolute40px10pxkey:hash_object_text_key_idfalse230pxtextnone2pxabsolute40px120pxhash_object_text_label_value_idtrue100px#023467none#fffabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_reset_button_id30px80px12pxabsolute115px10pxresetcreator_hash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Objecthash_object_default_editor_topic_view_id362px160px#023467hash_object_text_label_env_idtrue100px#023467none#fffabsolute10px10pxenvironment:A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environmenthas_environment_editor_association_view_id230pxabsolute10px120pxhash_object_text_env_idtrue230px2pxdefaultgraynoneabsolute0px0pxhash_object_text_label_key_idtrue100px#023467none#fffabsolute40px10pxkey:hash_object_text_key_idtrue230pxnone2pxdefaultgrayabsolute40px120pxhash_object_text_label_value_idtrue100px#023467none#fffabsolute70px10pxvalue:hash_object_text_value_idfalse230pxtextnone2pxabsolute70px120pxhash_object_delete_button_id30px80px12pxabsolute115px10pxeditor_hash_object_commit_button_id30px80px12pxabsolute115px10pxGDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_creator_topic_view_id322px100px#023467environment_text_label_idtrue60px#023467none#fffabsolute10px10pxname:environment_name_text_idfalse240pxtext2pxabsolute10px70pxenvironment_commit_button_id30px80px12pxabsolute65px10pxGDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environmentenvironment_default_editor_topic_view_id322px100px#023467environment_text_label_idtrue60px#023467none#fffabsolute10px10pxname:environment_name_text_idtrue240pxdefault2pxnonegrayabsolute10px70pxenvironment_delete_button_id30px80px12pxabsolute65px10px \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/environment/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Schema for the TextGrid-ServiceRegistry-UI + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_creator_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + + + + + + + + confserver + + + + + + + + + + + + + A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_createor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + hash_object_text_list_box_env_id + + + + + + true + + + + + + 232px + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_reset_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + reset + + + + + + + + + + + + + creator_hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_editor_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_editor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + hash_object_text_env_id + + + + + + true + + + + + + 230px + + + + + + 2px + + + + + + default + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + true + + + + + + 230px + + + + + + none + + + + + + 2px + + + + + + default + + + + + + gray + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + editor_hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_creator_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + false + + + + + + 240px + + + + + + text + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_editor_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + true + + + + + + 240px + + + + + + default + + + + + + 2px + + + + + + none + + + + + + gray + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From lgiessmann at common-lisp.net Sat Sep 24 20:16:52 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Sat, 24 Sep 2011 13:16:52 -0700 Subject: [isidorus-cvs] r966 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Sat Sep 24 13:16:49 2011 New Revision: 966 Log: gdl-frontend: Widgets: added some constants Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Thu Sep 22 07:23:54 2011 (r965) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.java Sat Sep 24 13:16:49 2011 (r966) @@ -109,7 +109,7 @@ // set the new valid psi Name envName = top.getNames().get(0); - Locator psi = tm.createLocator("http://textgrid.org/serviceregistry/environment/" + envName.getValue()); + Locator psi = tm.createLocator(IsidorusConstants.ENVIRONMENT_PSI_PREFIX + envName.getValue()); top.addSubjectIdentifier(psi); } @@ -167,7 +167,7 @@ assoc = associations.get(0); } else { JsArray assocs = top.getTopicMap().getAssociations(); - Topic assocType = TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/has-environment", tm); + Topic assocType = TmHelper.getTopicByPsi(IsidorusConstants.HAS_ENVIRONMENT_PSI, tm); for(int i = 0; i != assocs.length(); ++i){ if(assocs.get(i).getType().equals(assocType)){ assoc = assocs.get(i); @@ -176,9 +176,9 @@ } } - Name env = assoc.getRoles(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/environment", tm)).get(0).getPlayer().getNames().get(0); - Occurrence key = top.getOccurrences(TmHelper.getTopicByPsi("http://textgrid.org/serviceregistry/model/key", tm)).get(0); - String psiValue = "http://textgrid.org/serviceregistry/hash-object/" + env.getValue() + "/" + key.getValue(); + Name env = assoc.getRoles(TmHelper.getTopicByPsi(IsidorusConstants.ENVIRONMENT_ROLE_TYPE_PSI, tm)).get(0).getPlayer().getNames().get(0); + Occurrence key = top.getOccurrences(TmHelper.getTopicByPsi(IsidorusConstants.KEY_OCCURRENCE_TYPE_PSI, tm)).get(0); + String psiValue = IsidorusConstants.HASH_OBJECT_PSI_PREFIX + env.getValue() + "/" + key.getValue(); Locator psi = tm.createLocator(psiValue); this.removeSubjectIdentifiers(top); top.addSubjectIdentifier(psi); Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Thu Sep 22 07:23:54 2011 (r965) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/IsidorusConstants.java Sat Sep 24 13:16:49 2011 (r966) @@ -10,6 +10,11 @@ public final static String HASH_OBJECT_PSI = "http://textgrid.org/serviceregistry/model/types/Hash-Object"; public final static String ENVIRONMENT_PSI = "http://textgrid.org/serviceregistry/model/types/Environment"; public final static String HASH_VALUE_OCCURRENCE_TYPE = "http://textgrid.org/serviceregistry/model/value"; + public final static String ENVIRONMENT_PSI_PREFIX = "http://textgrid.org/serviceregistry/environment/"; + public final static String HASH_OBJECT_PSI_PREFIX = "http://textgrid.org/serviceregistry/hash-object/"; + public final static String HAS_ENVIRONMENT_PSI = "http://textgrid.org/serviceregistry/model/has-environment"; + public final static String ENVIRONMENT_ROLE_TYPE_PSI = "http://textgrid.org/serviceregistry/model/environment"; + public final static String KEY_OCCURRENCE_TYPE_PSI = "http://textgrid.org/serviceregistry/model/key"; public final static String TM_SPARQL_ENDPOINT = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/tm-sparql"; public final static String DELETE_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/delete"; public final static String COMMIT_REQUEST_URL = Window.Location.getProtocol() + "//" + Window.Location.getHost() + "/gdl/commit"; From lgiessmann at common-lisp.net Sun Sep 25 16:26:54 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Sun, 25 Sep 2011 09:26:54 -0700 Subject: [isidorus-cvs] r967 - branches/gdl-frontend/src/anaToMia Message-ID: Author: lgiessmann Date: Sun Sep 25 09:26:53 2011 New Revision: 967 Log: gdl-frontend: added the TextGrid ServiceRegistry data in the new ontology-format Added: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_data.xtm branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Added: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_data.xtm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Sun Sep 25 09:26:53 2011 (r967) @@ -0,0 +1,3343 @@ +? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + confserver + + + + + + DefaultMetadataTransformStylesheetTextGridURI + + + + + + textgrid:2f7r + + + + + + + + + + + + confserver + + + + + + tgsearch-public + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/tgsearch-public + + + + + + + + + + + + confserver + + + + + + StreamingEditor + + + + + + http://134.76.20.86:9090/sedit.xslt/StreamingEditor?wsdl + + + + + + + + + + + + confserver + + + + + + last-api-change + + + + + + 2011-02-15 + + + + + + + + + + + + confserver + + + + + + CopyWorkflowTextGridURI + + + + + + textgrid:h4kg + + + + + + + + + + + + confserver + + + + + + CopyWorkflowTextGridURI + + + + + + textgrid:f8f5 + + + + + + + + + + + + confserver + + + + + + PasswordReset + + + + + + https://textgrid-ws3.sub.uni-goettingen.de/cgi-bin/pwReset.pl + + + + + + + + + + + + confserver + + + + + + tgpublish + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/tgpublish + + + + + + + + + + + + confserver + + + + + + ApprovedServicesTextGridURI + + + + + + textgrid:2f7s + + + + + + + + + + + + confserver + + + + + + logservice + + + + + + http://textgridlab.org/1.0/tglog/service + + + + + + + + + + + + confserver + + + + + + StreamingEditor + + + + + + https://textgridlab.org/1.0/sedit.xslt/StreamingEditor?wsdl + + + + + + + + + + + + confserver + + + + + + tgsearch-public + + + + + + https://textgridlab.org/1.0/tgsearch-public + + + + + + + + + + + + confserver + + + + + + tgsearch + + + + + + https://textgridlab.org/1.0/tgsearch + + + + + + + + + + + + confserver + + + + + + authz + + + + + + https://textgridlab.org/1.0/WebAuthN/WebAuthN2.php?authZinstance=textgrid-ws3.sub.uni-goettingen.de + + + + + + + + + + + + confserver + + + + + + userdata + + + + + + https://textgridlab.org/1.0/WebAuthN/TextGrid-WebAuth.php?authZinstance=textgrid-ws3.sub.uni-goettingen.de + + + + + + + + + + + + confserver + + + + + + pwchange + + + + + + https://textgridlab.org/1.0/PWchange/index.php + + + + + + + + + + + + confserver + + + + + + workflow + + + + + + https://textgridlab.org/1.0/workflow/GWESproxy.wsdl + + + + + + + + + + + + confserver + + + + + + tgauth + + + + + + https://textgridlab.org/1.0/tgauth/tgextra.php + + + + + + + + + + + + confserver + + + + + + PasswordReset + + + + + + https://textgridlab.org/1.0/pwReset.pl + + + + + + + + + + + + confserver + + + + + + tgcrud + + + + + + https://textgridlab.org/1.0/tgcrud/TGCrudService + + + + + + + + + + + + confserver + + + + + + tgpublish + + + + + + https://textgridlab.org/1.0/tgpublish + + + + + + + + + + + + confserver + + + + + + pwchange + + + + + + https://textgridlab.org/PWchange/index.php + + + + + + + + + + + + confserver + + + + + + pwchange + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/PWchange/index.php + + + + + + + + + + + + confserver + + + + + + webpublish + + + + + + http://textgrid-ws2.gwdg.de/teiPublisher/1/publish + + + + + + + + + + + + confserver + + + + + + last-api-change + + + + + + 2009-01-21 + + + + + + + + + + + + confserver + + + + + + rdf-repository + + + + + + http://ingrid.sub.uni-goettingen.de:8082/openrdf-sesame/repositories/textgrid + + + + + + + + + + + + confserver + + + + + + exist + + + + + + http://ingrid.sub.uni-goettingen.de:8082/exist/services/Query + + + + + + + + + + + + confserver + + + + + + logservice + + + + + + http://ingrid.sub.uni-goettingen.de:8082/axis2/services/textlog + + + + + + + + + + + + confserver + + + + + + tgcrud + + + + + + http://ingrid.sub.uni-goettingen.de:8082/axis2/services/TGCrudService + + + + + + + + + + + + confserver + + + + + + tgsearch + + + + + + http://ingrid.sub.uni-goettingen.de:8082/axis2/services/Metadata + + + + + + + + + + + + confserver + + + + + + tgauth + + + + + + http://ingrid.sub.uni-goettingen.de/rbac-8082/tgextra.php + + + + + + + + + + + + confserver + + + + + + authz + + + + + + https://textgridlab.org/WebAuthN/WebAuthN.php?authZinstance=ingrid-8082 + + + + + + + + + + + + confserver + + + + + + workflow + + + + + + http://ingrid.sub.uni-goettingen.de:8083/gwes/services/GWES + + + + + + + + + + + + confserver + + + + + + ns + + + + + + http://textgrid.info/namespaces/metadata/core/2008-07-24 + + + + + + + + + + + + confserver + + + + + + schema + + + + + + www.textgrid.info/schemas/textgrid-metadata_2008-07-24.xsd + + + + + + + + + + + + confserver + + + + + + webpublish + + + + + + http://textgrid-ws2.gwdg.de/teiPublisher/0/publish + + + + + + + + + + + + confserver + + + + + + last-api-change + + + + + + 2009-01-21 + + + + + + + + + + + + confserver + + + + + + rdf-repository + + + + + + http://ingrid.sub.uni-goettingen.de:8081/openrdf-sesame/repositories/textgrid + + + + + + + + + + + + confserver + + + + + + exist + + + + + + http://ingrid.sub.uni-goettingen.de:8081/exist/services/Query + + + + + + + + + + + + confserver + + + + + + logservice + + + + + + http://ingrid.sub.uni-goettingen.de:8081/logservice/textlog + + + + + + + + + + + + confserver + + + + + + tgcrud + + + + + + http://ingrid.sub.uni-goettingen.de:8081/axis2/services/TGCrudService + + + + + + + + + + + + confserver + + + + + + tgsearch + + + + + + http://ingrid.sub.uni-goettingen.de:8081/tgsearch/meta/ + + + + + + + + + + + + confserver + + + + + + tgauth + + + + + + http://ingrid.sub.uni-goettingen.de/rbac-8081/tgextra.php + + + + + + + + + + + + + confserver + + + + + + authz + + + + + + https://textgridlab.org/WebAuthN/WebAuthN.php?authZinstance=ingrid-8081 + + + + + + + + + + + + confserver + + + + + + workflow + + + + + + http://ingrid.sub.uni-goettingen.de:8083/gwes/services/GWES + + + + + + + + + + + + confserver + + + + + + ns + + + + + + http://textgrid.info/namespaces/metadata/core/2008-07-24 + + + + + + + + + + + + confserver + + + + + + schema + + + + + + www.textgrid.info/schemas/textgrid-metadata_2008-07-24.xsd + + + + + + + + + + + + confserver + + + + + + webpublish + + + + + + http://textgrid-ws2.gwdg.de/teiPublisher/2/publish + + + + + + + + + + + + confserver + + + + + + last-api-change + + + + + + 2009-01-21 + + + + + + + + + + + + confserver + + + + + + rdf-repository + + + + + + https://textgridlab.org/openrdf-sesame/repositories/textgrid + + + + + + + + + + + + confserver + + + + + + exist + + + + + + https://textgridlab.org/exist/services/Query + + + + + + + + + + + + confserver + + + + + + logservice + + + + + + https://textgridlab.org/tglog/service + + + + + + + + + + + + confserver + + + + + + tgcrud + + + + + + https://textgridlab.org/axis2/services/TGCrudService + + + + + + + + + + + + confserver + + + + + + tgsearch + + + + + + https://textgridlab.org/tgsearch/meta/ + + + + + + + + + + + + confserver + + + + + + tgauth + + + + + + https://textgridlab.org/tgauth/rbacSoap/tgextra.php + + + + + + + + + + + + confserver + + + + + + authz + + + + + + https://textgridlab.org/WebAuthN/WebAuthN.php?authZinstance=textgridlab.org + + + + + + + + + + + + confserver + + + + + + workflow + + + + + + http://ingrid.sub.uni-goettingen.de/gwes/services/GWES + + + + + + + + + + + + confserver + + + + + + ns + + + + + + http://textgrid.info/namespaces/metadata/core/2008-07-24 + + + + + + + + + + + + confserver + + + + + + schema + + + + + + www.textgrid.info/schemas/textgrid-metadata_2008-07-24.xsd + + + + + + + + + + + + confserver + + + + + + exist + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/exist/services/Query + + + + + + + + + + + + confserver + + + + + + tgcrud + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/tgcrud/TGCrudService + + + + + + + + + + + + confserver + + + + + + authz + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/WebAuthN/WebAuthN2.php?authZinstance=textgrid-ws3.sub.uni-goettingen.de + + + + + + + + + + + + confserver + + + + + + logservice + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/tglog/service + + + + + + + + + + + + confserver + + + + + + last-api-change + + + + + + 2011-02-15 + + + + + + + + + + + + confserver + + + + + + tgsearch + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/tgsearch + + + + + + + + + + + + confserver + + + + + + userdata + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/WebAuthN/TextGrid-WebAuth.php?authZinstance=textgrid-ws3.sub.uni-goettingen.de + + + + + + + + + + + + confserver + + + + + + pwchange + + + + + + https://textgridlab.org/PWchange/index.php + + + + + + + + + + + + confserver + + + + + + schema + + + + + + http://www.textgrid.de/schemas/textgrid-metadata_2010.xsd + + + + + + + + + + + + confserver + + + + + + workflow + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/workflow/GWESproxy.wsdl + + + + + + + + + + + + confserver + + + + + + tgauth + + + + + + https://textgrid-ws3.sub.uni-goettingen.de/tgauth/tgextra.php + + + + + + + + + + + + confserver + + + + + + webpublish + + + + + + http://textgrid-ws2.gwdg.de/teiPublisher/3/publish + + + + + + + + + + + + confserver + + + + + + ns + + + + + + http://textgrid.info/namespaces/metadata/core/2010 + + + + + + + + + + + + confserver + + + + + + rdf-repository + + + + + + http://textgrid-ws3.sub.uni-goettingen.de/openrdf-sesame/repositories/textgrid + + + + + + + + + + newmeta + + + + + + + + + + + + 1.0 + + + + + + + + + + + + production + + + + + + + + + + + + testing + + + + + + + + + + + + development + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Added: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm Sun Sep 25 09:26:53 2011 (r967) @@ -0,0 +1,2360 @@ +? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/environment/.+$ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Added: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Sun Sep 25 09:26:53 2011 (r967) @@ -0,0 +1,9241 @@ +? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/environment/.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Schema for the TextGrid-ServiceRegistry-UI + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_creator_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + + + + + confserver + + + + + + + + + + + + A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_createor_association_view_id + + + + + + 230px + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + hash_object_text_list_box_env_id + + + + + + true + + + + + + 232px + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + hash_object_text_key_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + hash_object_reset_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + reset + + + + + + + + + + + + creator_hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_editor_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + #023467 + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_editor_association_view_id + + + + + + 230px + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + hash_object_text_env_id + + + + + + true + + + + + + 230px + + + + + + 2px + + + + + + default + + + + + + gray + + + + + + none + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + hash_object_text_key_id + + + + + + true + + + + + + 230px + + + + + + none + + + + + + 2px + + + + + + default + + + + + + gray + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + hash_object_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + editor_hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_creator_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + #023467 + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + environment_name_text_id + + + + + + false + + + + + + 240px + + + + + + text + + + + + + 2px + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + environment_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_editor_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + #023467 + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + environment_name_text_id + + + + + + true + + + + + + 240px + + + + + + default + + + + + + 2px + + + + + + none + + + + + + gray + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + environment_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From lgiessmann at common-lisp.net Mon Sep 26 07:43:25 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 00:43:25 -0700 Subject: [isidorus-cvs] r968 - branches/gdl-frontend/src/anaToMia Message-ID: Author: lgiessmann Date: Mon Sep 26 00:43:25 2011 New Revision: 968 Log: gdl-frontend: fixed some bugs in the xtm-file that contains the TextGrid data Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_data.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Sun Sep 25 09:26:53 2011 (r967) +++ branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Mon Sep 26 00:43:25 2011 (r968) @@ -1,4 +1,4 @@ -? + @@ -59,8 +59,8 @@
- - + + @@ -112,21 +112,21 @@ - + - + - + @@ -134,7 +134,7 @@ - @@ -159,7 +159,7 @@ - @@ -184,7 +184,7 @@ - @@ -209,7 +209,7 @@ - @@ -234,7 +234,7 @@ - @@ -259,7 +259,7 @@ - @@ -284,7 +284,7 @@ - @@ -309,7 +309,7 @@ - @@ -334,7 +334,7 @@ - @@ -359,7 +359,7 @@ - @@ -384,7 +384,7 @@ - @@ -409,7 +409,7 @@ - @@ -434,7 +434,7 @@ - @@ -459,7 +459,7 @@ - @@ -484,7 +484,7 @@ - @@ -509,7 +509,7 @@ - @@ -534,7 +534,7 @@ - @@ -559,7 +559,7 @@ - @@ -584,7 +584,7 @@ - @@ -609,7 +609,7 @@ - @@ -634,7 +634,7 @@ - @@ -659,7 +659,7 @@ - @@ -684,7 +684,7 @@ - @@ -709,7 +709,7 @@ - @@ -734,7 +734,7 @@ - @@ -759,7 +759,7 @@ - @@ -784,7 +784,7 @@ - @@ -809,7 +809,7 @@ - @@ -834,7 +834,7 @@ - @@ -859,7 +859,7 @@ - @@ -884,7 +884,7 @@ - @@ -909,7 +909,7 @@ - @@ -934,7 +934,7 @@ - @@ -959,7 +959,7 @@ - @@ -984,7 +984,7 @@ - @@ -1009,7 +1009,7 @@ - @@ -1034,7 +1034,7 @@ - @@ -1059,7 +1059,7 @@ - @@ -1084,7 +1084,7 @@ - @@ -1109,7 +1109,7 @@ - @@ -1134,7 +1134,7 @@ - @@ -1159,7 +1159,7 @@ - @@ -1184,7 +1184,7 @@ - @@ -1210,7 +1210,7 @@ - @@ -1235,7 +1235,7 @@ - @@ -1260,7 +1260,7 @@ - @@ -1285,7 +1285,7 @@ - @@ -1310,7 +1310,7 @@ - @@ -1335,7 +1335,7 @@ - @@ -1360,7 +1360,7 @@ - @@ -1385,7 +1385,7 @@ - @@ -1410,7 +1410,7 @@ - @@ -1435,7 +1435,7 @@ - @@ -1460,7 +1460,7 @@ - @@ -1485,7 +1485,7 @@ - @@ -1510,7 +1510,7 @@ - @@ -1535,7 +1535,7 @@ - @@ -1560,7 +1560,7 @@ - @@ -1585,7 +1585,7 @@ - @@ -1610,7 +1610,7 @@ - @@ -1635,7 +1635,7 @@ - @@ -1660,7 +1660,7 @@ - @@ -1685,7 +1685,7 @@ - @@ -1710,7 +1710,7 @@ - @@ -1735,7 +1735,7 @@ - @@ -1760,7 +1760,7 @@ - @@ -1785,7 +1785,7 @@ - @@ -1810,7 +1810,7 @@ - @@ -1835,7 +1835,7 @@ - @@ -1860,7 +1860,7 @@ - @@ -1885,7 +1885,7 @@ - @@ -1910,7 +1910,7 @@ - @@ -1935,7 +1935,7 @@ - @@ -1961,7 +1961,7 @@ - @@ -1974,7 +1974,7 @@ - @@ -1987,7 +1987,7 @@ - @@ -2000,7 +2000,7 @@ - @@ -2013,7 +2013,7 @@ - @@ -2033,13 +2033,13 @@ - + - + @@ -2051,13 +2051,13 @@ - + - + @@ -2069,13 +2069,13 @@ - + - + @@ -2087,13 +2087,13 @@ - + - + @@ -2105,13 +2105,13 @@ - + - + @@ -2123,13 +2123,13 @@ - + - + @@ -2141,13 +2141,13 @@ - + - + @@ -2159,13 +2159,13 @@ - + - + @@ -2177,13 +2177,13 @@ - + - + @@ -2195,13 +2195,13 @@ - + - + @@ -2213,13 +2213,13 @@ - + - + @@ -2231,13 +2231,13 @@ - + - + @@ -2249,13 +2249,13 @@ - + - + @@ -2267,13 +2267,13 @@ - + - + @@ -2285,13 +2285,13 @@ - + - + @@ -2303,13 +2303,13 @@ - + - + @@ -2321,13 +2321,13 @@ - + - + @@ -2339,13 +2339,13 @@ - + - + @@ -2357,13 +2357,13 @@ - + - + @@ -2375,13 +2375,13 @@ - + - + @@ -2393,13 +2393,13 @@ - + - + @@ -2411,13 +2411,13 @@ - + - + @@ -2429,13 +2429,13 @@ - + - + @@ -2447,13 +2447,13 @@ - + - + @@ -2465,13 +2465,13 @@ - + - + @@ -2483,13 +2483,13 @@ - + - + @@ -2501,13 +2501,13 @@ - + - + @@ -2519,13 +2519,13 @@ - + - + @@ -2537,13 +2537,13 @@ - + - + @@ -2555,13 +2555,13 @@ - + - + @@ -2573,13 +2573,13 @@ - + - + @@ -2591,13 +2591,13 @@ - + - + @@ -2609,13 +2609,13 @@ - + - + @@ -2627,13 +2627,13 @@ - + - + @@ -2645,13 +2645,13 @@ - + - + @@ -2663,13 +2663,13 @@ - + - + @@ -2681,13 +2681,13 @@ - + - + @@ -2699,13 +2699,13 @@ - + - + @@ -2717,13 +2717,13 @@ - + - + @@ -2735,13 +2735,13 @@ - + - + @@ -2753,13 +2753,13 @@ - + - + @@ -2771,13 +2771,13 @@ - + - + @@ -2789,13 +2789,13 @@ - + - + @@ -2807,13 +2807,13 @@ - + - + @@ -2825,13 +2825,13 @@ - + - + @@ -2843,13 +2843,13 @@ - + - + @@ -2861,13 +2861,13 @@ - + - + @@ -2879,13 +2879,13 @@ - + - + @@ -2897,13 +2897,13 @@ - + - + @@ -2915,13 +2915,13 @@ - + - + @@ -2933,13 +2933,13 @@ - + - + @@ -2951,13 +2951,13 @@ - + - + @@ -2969,13 +2969,13 @@ - + - + @@ -2987,13 +2987,13 @@ - + - + @@ -3005,13 +3005,13 @@ - + - + @@ -3023,13 +3023,13 @@ - + - + @@ -3041,13 +3041,13 @@ - + - + @@ -3059,13 +3059,13 @@ - + - + @@ -3077,13 +3077,13 @@ - + - + @@ -3095,13 +3095,13 @@ - + - + @@ -3113,13 +3113,13 @@ - + - + @@ -3131,13 +3131,13 @@ - + - + @@ -3149,13 +3149,13 @@ - + - + @@ -3167,13 +3167,13 @@ - + - + @@ -3185,13 +3185,13 @@ - + - + @@ -3203,13 +3203,13 @@ - + - + @@ -3221,13 +3221,13 @@ - + - + @@ -3239,13 +3239,13 @@ - + - + @@ -3257,13 +3257,13 @@ - + - + @@ -3275,13 +3275,13 @@ - + - + @@ -3293,13 +3293,13 @@ - + - + @@ -3311,13 +3311,13 @@ - + - + @@ -3329,13 +3329,13 @@ - + - + From lgiessmann at common-lisp.net Mon Sep 26 08:12:11 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 01:12:11 -0700 Subject: [isidorus-cvs] r969 - in branches/gdl-frontend/src: anaToMia xml/xtm Message-ID: Author: lgiessmann Date: Mon Sep 26 01:12:10 2011 New Revision: 969 Log: fixed a bug in the xtm-exporter Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm branches/gdl-frontend/src/xml/xtm/exporter.lisp Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm Mon Sep 26 00:43:25 2011 (r968) +++ branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm Mon Sep 26 01:12:10 2011 (r969) @@ -1,4 +1,4 @@ -? + @@ -2357,4 +2357,3 @@ - Modified: branches/gdl-frontend/src/xml/xtm/exporter.lisp ============================================================================== --- branches/gdl-frontend/src/xml/xtm/exporter.lisp Mon Sep 26 00:43:25 2011 (r968) +++ branches/gdl-frontend/src/xml/xtm/exporter.lisp Mon Sep 26 01:12:10 2011 (r969) @@ -78,10 +78,11 @@ (if ,tm (union (filter-type-instance-topics (d:topics ,tm) tm :revision revision) - (d:associations ,tm)) + (list-extern-associations :revision revision)) (union (elephant:get-instances-by-class 'd:TopicC) - (list-extern-associations :revision revision))))))) + (d:associations ,tm))))))) + (defun export-as-xtm (xtm-path &key From lgiessmann at common-lisp.net Mon Sep 26 08:15:29 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 01:15:29 -0700 Subject: [isidorus-cvs] r970 - branches/gdl-frontend/src/anaToMia Message-ID: Author: lgiessmann Date: Mon Sep 26 01:15:28 2011 New Revision: 970 Log: gdl-frontend: fixed a bug in the exported TMCL-Schema for the TextGrid-ServiceRegistry Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm Mon Sep 26 01:12:10 2011 (r969) +++ branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm Mon Sep 26 01:15:28 2011 (r970) @@ -1,2359 +1,1441 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/environment/.+$ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/environment/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From lgiessmann at common-lisp.net Mon Sep 26 08:31:49 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 01:31:49 -0700 Subject: [isidorus-cvs] r971 - branches/gdl-frontend/src/anaToMia Message-ID: Author: lgiessmann Date: Mon Sep 26 01:31:49 2011 New Revision: 971 Log: gdl-frontend: fixed a bug in the required schema xtm for the TextGrid ServiceRegistry Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Mon Sep 26 01:15:28 2011 (r970) +++ branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Mon Sep 26 01:31:49 2011 (r971) @@ -1,9241 +1,5856 @@ -? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/environment/.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - http://www.w3.org/2001/XMLSchema#string - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - ^.+$ - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - 1 - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GDL Schema for the TextGrid-ServiceRegistry-UI - - - - - - - - - - - - GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - - - - - - hash_object_default_creator_topic_view_id - - - - - - 362px - - - - - - 160px - - - - - - #023467 - - - - - - - - - - - - - - - - - - - - - - - - confserver - - - - - - - - - - - - A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - - - - - - has_environment_createor_association_view_id - - - - - - 230px - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 120px - - - - - - - - - - - - - - - - - - - - - - - - hash_object_text_label_env_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - environment: - - - - - - - - - - - - hash_object_text_list_box_env_id - - - - - - true - - - - - - 232px - - - - - - - - - - - - absolute - - - - - - 0px - - - - - - 0px - - - - - - - - - - - - - - - - - - - - - - - - hash_object_text_label_key_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 10px - - - - - - - - - - - - - - - - - - key: - - - - - - - - - - - - hash_object_text_key_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 120px - - - - - - - - - - - - - - - - - - hash_object_text_label_value_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 10px - - - - - - - - - - - - - - - - - - value: - - - - - - - - - - - - hash_object_text_value_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 120px - - - - - - - - - - - - - - - - - - hash_object_reset_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - - - - - - reset - - - - - - - - - - - - creator_hash_object_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - - - - - - - - GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object - - - - - - hash_object_default_editor_topic_view_id - - - - - - 362px - - - - - - 160px - - - - - - #023467 - - - - - - - - - - - - - - - - - - hash_object_text_label_env_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - environment: - - - - - - - - - - - - A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment - - - - - - has_environment_editor_association_view_id - - - - - - 230px - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 120px - - - - - - - - - - - - hash_object_text_env_id - - - - - - true - - - - - - 230px - - - - - - 2px - - - - - - default - - - - - - gray - - - - - - none - - - - - - - - - - - - absolute - - - - - - 0px - - - - - - 0px - - - - - - - - - - - - - - - - - - hash_object_text_label_key_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 10px - - - - - - - - - - - - - - - - - - key: - - - - - - - - - - - - hash_object_text_key_id - - - - - - true - - - - - - 230px - - - - - - none - - - - - - 2px - - - - - - default - - - - - - gray - - - - - - - - - - - - absolute - - - - - - 40px - - - - - - 120px - - - - - - - - - - - - - - - - - - hash_object_text_label_value_id - - - - - - true - - - - - - 100px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 10px - - - - - - - - - - - - - - - - - - value: - - - - - - - - - - - - hash_object_text_value_id - - - - - - false - - - - - - 230px - - - - - - text - - - - - - none - - - - - - 2px - - - - - - - - - - - - absolute - - - - - - 70px - - - - - - 120px - - - - - - - - - - - - - - - - - - hash_object_delete_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - editor_hash_object_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - absolute - - - - - - 115px - - - - - - 10px - - - - - - - - - - - - GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - - - - - - environment_default_creator_topic_view_id - - - - - - 322px - - - - - - 100px - - - - - - #023467 - - - - - - - - - - - - - - - - - - environment_text_label_id - - - - - - true - - - - - - 60px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - name: - - - - - - - - - - - - environment_name_text_id - - - - - - false - - - - - - 240px - - - - - - text - - - - - - 2px - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 70px - - - - - - - - - - - - - - - - - - environment_commit_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - absolute - - - - - - 65px - - - - - - 10px - - - - - - - - - - - - GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment - - - - - - environment_default_editor_topic_view_id - - - - - - 322px - - - - - - 100px - - - - - - #023467 - - - - - - - - - - - - - - - - - - environment_text_label_id - - - - - - true - - - - - - 60px - - - - - - #023467 - - - - - - none - - - - - - #fff - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 10px - - - - - - - - - - - - - - - - - - name: - - - - - - - - - - - - environment_name_text_id - - - - - - true - - - - - - 240px - - - - - - default - - - - - - 2px - - - - - - none - - - - - - gray - - - - - - - - - - - - absolute - - - - - - 10px - - - - - - 70px - - - - - - - - - - - - - - - - - - environment_delete_button_id - - - - - - 30px - - - - - - 80px - - - - - - 12px - - - - - - - - - - - - absolute - - - - - - 65px - - - - - - 10px - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/environment/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + ^http://textgrid.org/serviceregistry/hashobject/.+/.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + http://www.w3.org/2001/XMLSchema#string + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + ^.+$ + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + 1 + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Schema for the TextGrid-ServiceRegistry-UI + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_creator_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + + + + + + + + confserver + + + + + + + + + + + + + A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_createor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + hash_object_text_list_box_env_id + + + + + + true + + + + + + 232px + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_reset_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + reset + + + + + + + + + + + + + creator_hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object + + + + + + hash_object_default_editor_topic_view_id + + + + + + 362px + + + + + + 160px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + hash_object_text_label_env_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + environment: + + + + + + + + + + + + + A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment + + + + + + has_environment_editor_association_view_id + + + + + + 230px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 120px + + + + + + + + + + + + + hash_object_text_env_id + + + + + + true + + + + + + 230px + + + + + + 2px + + + + + + default + + + + + + gray + + + + + + none + + + + + + + + + + + + + absolute + + + + + + 0px + + + + + + 0px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_key_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + key: + + + + + + + + + + + + + hash_object_text_key_id + + + + + + true + + + + + + 230px + + + + + + none + + + + + + 2px + + + + + + default + + + + + + gray + + + + + + + + + + + + + absolute + + + + + + 40px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_text_label_value_id + + + + + + true + + + + + + 100px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + value: + + + + + + + + + + + + + hash_object_text_value_id + + + + + + false + + + + + + 230px + + + + + + text + + + + + + none + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 70px + + + + + + 120px + + + + + + + + + + + + + + + + + + + + hash_object_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + editor_hash_object_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 115px + + + + + + 10px + + + + + + + + + + + + + GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_creator_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + false + + + + + + 240px + + + + + + text + + + + + + 2px + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_commit_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + + + + + + + + + + GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment + + + + + + environment_default_editor_topic_view_id + + + + + + 322px + + + + + + 100px + + + + + + #023467 + + + + + + + + + + + + + + + + + + + + environment_text_label_id + + + + + + true + + + + + + 60px + + + + + + #023467 + + + + + + none + + + + + + #fff + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 10px + + + + + + + + + + + + + + + + + + + + name: + + + + + + + + + + + + + environment_name_text_id + + + + + + true + + + + + + 240px + + + + + + default + + + + + + 2px + + + + + + none + + + + + + gray + + + + + + + + + + + + + absolute + + + + + + 10px + + + + + + 70px + + + + + + + + + + + + + + + + + + + + environment_delete_button_id + + + + + + 30px + + + + + + 80px + + + + + + 12px + + + + + + + + + + + + + absolute + + + + + + 65px + + + + + + 10px + + + + From lgiessmann at common-lisp.net Mon Sep 26 08:33:09 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 01:33:09 -0700 Subject: [isidorus-cvs] r972 - branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib Message-ID: Author: lgiessmann Date: Mon Sep 26 01:33:09 2011 New Revision: 972 Log: Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.js Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/lib/tm.js Mon Sep 26 01:33:09 2011 (r972) @@ -0,0 +1,3926 @@ +// tmjs, version 0.4.0 +// http://github.com/jansc/tmjs +// Copyright (c) 2010 Jan Schreiber +// Licensed under the MIT-License. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// OTHER DEALINGS IN THE SOFTWARE. +/*jslint browser: true, devel: true, onevar: true, undef: true, + nomen: false, eqeqeq: true, plusplus: true, bitwise: true, + regexp: true, newcap: true, immed: true, indent: 4 */ +/*global exports*/ + +var TM, TopicMapSystemFactory; + +/** + * @namespace Global namespace that holds all Topic Maps related objects. + * @author Jan Schreiber + * @copyright 2010 Jan Schreiber + * Date: Wed Dec 1 08:39:28 2010 +0100 + */ +TM = (function () { + var Version, Hash, XSD, TMDM, Locator, EventType, Topic, Association, + Scoped, Construct, Typed, Reifiable, + DatatypeAware, TopicMap, Role, Name, + Variant, Occurrence, TopicMapSystemMemImpl, + Index, TypeInstanceIndex, ScopedIndex, + SameTopicMapHelper, ArrayHelper, IndexHelper, addScope, + DuplicateRemover, + SignatureGenerator, MergeHelper, CopyHelper, + TypeInstanceHelper; + + Version = '0.4.0'; + + // ----------------------------------------------------------------------- + // Our swiss army knife for mixin of functions. + // See http://javascript.crockford.com/inheritance.html + Function.prototype.swiss = function (parnt) { + var i, name; + for (i = 1; i < arguments.length; i += 1) { + name = arguments[i]; + this.prototype[name] = parnt.prototype[name]; + } + return this; + }; + + // ----------------------------------------------------------------------- + // Simple hash table for lookup tables + Hash = function () { + this.hash = {}; + this.length = 0; + }; + + /** + * @class Simple hash implementation. + */ + Hash.prototype = { + /** + * Returns the object belonging to the key key or undefined if the + * key does not exist. + * @param key {String} The hash key. + * @returns {object} The stored object or undefined. + */ + get: function (key) { + return this.hash[key]; + }, + + /** + * Checks if the key exists in the hash table. + * @param key {String} The hash key. + * @returns {boolean} True if key exists in the hash table. False + * otherwise. + */ + contains: function (key) { + return this.get(key) !== undefined; + }, + + /** + * Stores an object in the hash table. + * @param key {String} The hash key. + * @param val {object} The value to be stored in the hash table. + * @returns val {object} A reference to the stored object. + */ + put: function (key, val) { + if (!this.hash[key]) { + this.length += 1; + } + this.hash[key] = val; + return val; + }, + + /** + * Removes the key and the corresponding value from the hash table. + * @param key {String} Removes value corresponding to key and the key + * from the hash table + * @returns {Hash} The hash table itself. + */ + remove: function (key) { + delete this.hash[key]; + this.length -= 1; + return this; + }, + + /** + * Returns an array with keys of the hash table. + * @returns {Array} An array with strings. + */ + keys: function () { + var ret = [], key; + for (key in this.hash) { + if (this.hash.hasOwnProperty(key)) { + ret.push(key); + } + } + return ret; + }, + + /** + * Returns an array with all values of the hash table. + * @returns {Array} An array with all objects stored as a value in + * the hash table. + */ + values: function () { + var ret = [], key; + for (key in this.hash) { + if (this.hash.hasOwnProperty(key)) { + ret.push(this.hash[key]); + } + } + return ret; + }, + + /** + * Empties the hash table by removing the reference to all objects. + * Note that the store objects themselves are not touched. + * @returns undefined + */ + empty: function () { + this.hash = {}; + this.length = 0; + }, + + /** + * Returns the size of the hash table, that is the count of all + * key/value pairs. + * @returns {Number} The count of all key/value pairs stored in the + * hash table. + */ + size: function () { + return this.length; + } + }; + + // ----------------------------------------------------------------------- + // Internal event handling system + EventType = {}; + EventType.ADD_ASSOCIATION = 1; + EventType.ADD_NAME = 2; + EventType.ADD_OCCURRENCE = 3; + EventType.ADD_ROLE = 4; + EventType.ADD_THEME = 5; + EventType.ADD_TOPIC = 6; + EventType.ADD_TYPE = 7; + EventType.REMOVE_ASSOCIATION = 8; + EventType.REMOVE_NAME = 9; + EventType.REMOVE_OCCURRENCE = 10; + EventType.REMOVE_ROLE = 11; + EventType.REMOVE_THEME = 12; + EventType.REMOVE_TOPIC = 13; + EventType.REMOVE_TYPE = 14; + EventType.SET_TYPE = 15; + + /** + * @namespace Namespace for XML Schema URIs. // FIXME!! + */ + XSD = { + 'string': "http://www.w3.org/2001/XMLSchema#string", + 'integer': "http://www.w3.org/2001/XMLSchema#integer", + 'anyURI': "http://www.w3.org/2001/XMLSchema#anyURI" + + // TODO: Add all build-in types + }; + + TMDM = { + 'TYPE_INSTANCE': 'http://psi.topicmaps.org/iso13250/model/type-instance', + 'TYPE': 'http://psi.topicmaps.org/iso13250/model/type', + 'INSTANCE': 'http://psi.topicmaps.org/iso13250/model/instance', + 'TOPIC_NAME': 'http://psi.topicmaps.org/iso13250/model/topic-name' + }; + + // ----------------------------------------------------------------------- + // TODO: The locator functions need some more work. Implement resolve() + // and toExternalForm() + + /** + * @class Immutable representation of an IRI. + */ + Locator = function (parnt, iri) { + this.parnt = parnt; + this.iri = iri; + }; + + /** + * Returns the IRI. + * @returns {String} A lexical representation of the IRI. + */ + Locator.prototype.getReference = function () { + return this.iri; + }; + + /** + * Returns true if the other object is equal to this one. + * @param other The object to compare this object against. + * @returns (other instanceof Locator && + * this.getReference().equals(((Locator)other).getReference())) + */ + Locator.prototype.equals = function (other) { + return (this.iri === other.getReference()); + }; + + /** + * Returns the external form of the IRI. Any special character will be + * escaped using the escaping conventions of RFC 3987. + * @returns {String} A string representation of this locator suitable for + * output or passing to APIs which will parse the locator anew. + */ + Locator.prototype.toExternalForm = function () { + throw {name: 'NotImplemented', message: 'Locator.toExternalForm() not implemented'}; + }; + + + // ----------------------------------------------------------------------- + /** + * @class Represents a Topic Maps construct. + */ + Construct = function () {}; + + /** + * Adds an item identifier. + * @param {Locator} itemIdentifier The item identifier to add. + * @returns {Construct} The construct itself (for chaining support) + * @throws {ModelConstraintException} If the itemidentifier is null. + * @throws {IdentityConstraintException} If another Topic Maps construct with + * the same item identifier exists. + */ + Construct.prototype.addItemIdentifier = function (itemIdentifier) { + var existing; + if (itemIdentifier === null) { + throw {name: 'ModelConstraintException', + message: 'addItemIdentifier(null) is illegal'}; + } + existing = this.getTopicMap()._ii2construct.get(itemIdentifier.getReference()); + if (existing) { + throw {name: 'IdentityConstraintException', + message: 'Topic Maps constructs with the same item identifier ' + + 'are not allowed', + reporter: this, + existing: existing, + locator: itemIdentifier}; + } + this.itemIdentifiers.push(itemIdentifier); + this.getTopicMap()._ii2construct.put(itemIdentifier.getReference(), this); + return this; + }; + + /** + * Returns true if the other object is equal to this one. Equality must be + * the result of comparing the identity (this == other) of the + * two objects. + * Note: This equality test does not reflect any equality rule according to + * the Topic Maps - Data Model (TMDM) by intention. + * @param {String} other The object to compare this object against. + */ + Construct.prototype.equals = function (other) { + return (this.id === other.id); + }; + + /** + * Returns the identifier of this construct. This property has no + * representation in the Topic Maps - Data Model. + * + * The ID can be anything, so long as no other Construct in the same topic + * map has the same ID. + * @returns {String} An identifier which identifies this construct uniquely + * within a topic map. + */ + Construct.prototype.getId = function () { + return this.id; + }; + + /** + * Returns the item identifiers of this Topic Maps construct. The return + * value may be empty but must never be null. + * @returns {Array} An array of Locators representing the item identifiers. + * The array MUST NOT be modified. + */ + Construct.prototype.getItemIdentifiers = function () { + return this.itemIdentifiers; + }; + + /** + * Returns the parent of this construct. This method returns + * null iff this construct is a TopicMap instance. + * @returns {Construct} The parent of this construct or null + * iff the construct is an instance of TopicMap. + */ + Construct.prototype.getParent = function () { + return this.parnt; + }; + + /** + * Returns the TopicMap instance to which this Topic Maps construct belongs. + * A TopicMap instance returns itself. + * @returns {Construct} The topic map instance to which this construct belongs. + */ + Construct.prototype.getTopicMap = function () { + throw {name: 'NotImplemented', message: 'getTopicMap() not implemented'}; + }; + + /** + * Returns the hash code value. + * TODO: Is this needed? + */ + Construct.prototype.hashCode = function () { + throw {name: 'NotImplemented', message: 'hashCode() not implemented'}; + }; + + /** + * Returns the parent of this construct. This method returns + * null iff this construct is a TopicMap instance. + * @returns {Construct} The parent of this construct or null + * iff the construct is an instance of {@link TopicMap}. + */ + Construct.prototype.remove = function () { + throw {name: 'NotImplemented', message: 'remove() not implemented'}; + }; + + /** + * Removes an item identifier. + * @param {Locator} itemIdentifier The item identifier to be removed from + * this construct, if present (null is ignored). + * @returns {Construct} The construct itself (for chaining support) + */ + Construct.prototype.removeItemIdentifier = function (itemIdentifier) { + if (itemIdentifier === null) { + return; + } + for (var i = 0; i < this.itemIdentifiers.length; i += 1) { + if (this.itemIdentifiers[i].getReference() === + itemIdentifier.getReference()) { + this.itemIdentifiers.splice(i, 1); + break; + } + } + this.getTopicMap()._ii2construct.remove(itemIdentifier.getReference()); + return this; + }; + + /** + * Returns true if the construct is a {@link TopicMap}-object + * @returns true if the construct is a {@link TopicMap}-object, + * false otherwise. + */ + Construct.prototype.isTopicMap = function () { + return false; + }; + + /** + * Returns true if the construct is a {@link Topic}-object + * @returns true if the construct is a {@link Topic}-object, + * false otherwise. + */ + Construct.prototype.isTopic = function () { + return false; + }; + + /** + * Returns true if the construct is an {@link Association}-object + * @returns true if the construct is an {@link Association}- + * object, false otherwise. + */ + Construct.prototype.isAssociation = function () { + return false; + }; + + /** + * Returns true if the construct is a {@link Role}-object + * @returns true if the construct is a {@link Role}-object, + * false otherwise. + */ + Construct.prototype.isRole = function () { + return false; + }; + + /** + * Returns true if the construct is a {@link Name}-object + * @returns true if the construct is a {@link Name}-object, + * false otherwise. + */ + Construct.prototype.isName = function () { + return false; + }; + + /** + * Returns true if the construct is an {@link Occurrenct}-object + * @returns true if the construct is an {@link Occurrence}-object, + * false otherwise. + */ + Construct.prototype.isOccurrence = function () { + return false; + }; + + /** + * Returns true if the construct is a {@link Variant}-object + * @returns true if the construct is a {@link Variant}-object, + * false otherwise. + */ + Construct.prototype.isVariant = function () { + return false; + }; + + // -------------------------------------------------------------------------- + Typed = function () {}; + + // Returns the type of this construct. + Typed.prototype.getType = function () { + return this.type; + }; + + /** + * Sets the type of this construct. + * @throws {ModelConstraintException} If type is null. + * @returns {Typed} The type itself (for chaining support) + */ + Typed.prototype.setType = function (type) { + if (type === null) { + throw {name: 'ModelConstraintException', + message: 'Topic.setType cannot be called without type'}; + } + SameTopicMapHelper.assertBelongsTo(this.getTopicMap(), type); + this.getTopicMap().setTypeEvent.fire(this, {old: this.type, type: type}); + this.type = type; + return this; + }; + + // -------------------------------------------------------------------------- + /** + * @class Indicates that a statement (Topic Maps construct) has a scope. + * Associations, Occurrences, Names, and Variants are scoped. + */ + Scoped = function () {}; + + /** + * Adds a topic to the scope. + * @throws {ModelConstraintException} If theme is null. + * @returns {Typed} The type itself (for chaining support) + */ + Scoped.prototype.addTheme = function (theme) { + if (theme === null) { + throw {name: 'ModelConstraintException', + message: 'addTheme(null) is illegal'}; + } + // Check if theme is part of the scope + for (var i = 0; i < this.scope.length; i += 1) { + if (this.scope[i] === theme) { + return false; + } + } + SameTopicMapHelper.assertBelongsTo(this.getTopicMap(), theme); + this.scope.push(theme); + this.getTopicMap().addThemeEvent.fire(this, {theme: theme}); + // Special case for names: add the theme to all variants + if (this.isName()) { + for (i = 0; i < this.variants.length; i += 1) { + this.getTopicMap().addThemeEvent.fire(this.variants[i], {theme: theme}); + } + } + return this; + }; + + /** + * Returns the topics which define the scope. + * @returns {Array} A possible empty Array with Topic objects. + */ + Scoped.prototype.getScope = function () { + if (this.isVariant()) { + var i, tmp = new Hash(), parent_scope = this.parnt.getScope(); + for (i = 0; i < parent_scope.length; i += 1) { + tmp.put(parent_scope[i].getId(), parent_scope[i]); + } + for (i = 0; i < this.scope.length; i += 1) { + tmp.put(this.scope[i].getId(), this.scope[i]); + } + return tmp.values(); + } + return this.scope; + }; + + /** + * Removes a topic from the scope. + * @returns {Scoped} The scoped object itself (for chaining support) + */ + Scoped.prototype.removeTheme = function (theme) { + var i, j, scope, found; + for (i = 0; i < this.scope.length; i += 1) { + if (this.scope[i] === theme) { + this.getTopicMap().removeThemeEvent.fire(this, {theme: this.scope[i]}); + this.scope.splice(i, 1); + break; + } + } + // Special case for names: remove the theme from index for all variants + if (this.isName()) { + for (i = 0; i < this.variants.length; i += 1) { + scope = this.variants[i].scope; + // Check if the the variant has theme as scope + found = false; + for (j = 0; j < scope.length; j += 1) { + if (theme.equals(scope[j])) { + found = true; + } + } + if (!found) { + this.getTopicMap().removeThemeEvent.fire(this.variants[i], {theme: theme}); + } + } + } + return this; + }; + + + // -------------------------------------------------------------------------- + /** + * @class Indicates that a Construct is reifiable. Every Topic Maps + * construct that is not a Topic is reifiable. + */ + Reifiable = function () {}; + + /** + * Returns the reifier of this construct. + */ + Reifiable.prototype.getReifier = function () { + return this.reifier; + }; + + /** + * Sets the reifier of the construct. + * @throws {ModelConstraintException} If reifier already reifies another + * construct. + * @returns {Reifiable} The reified object itself (for chaining support) + */ + Reifiable.prototype.setReifier = function (reifier) { + if (reifier && reifier.getReified() !== null) { + throw {name: 'ModelConstraintException', + message: 'Reifies already another construct'}; + } + SameTopicMapHelper.assertBelongsTo(this.getTopicMap(), reifier); + if (this.reifier) { + this.reifier._setReified(null); + } + if (reifier) { + reifier._setReified(this); + } + this.reifier = reifier; + return this; + }; + + // -------------------------------------------------------------------------- + /** + * @class Common base interface for Occurrences and Variants. + * Inherits Scoped, Reifiable + */ + DatatypeAware = function () {}; + + /** + * Returns the BigDecimal representation of the value. + */ + DatatypeAware.prototype.decimalValue = function () { + // FIXME Implement! + }; + + /** + * Returns the float representation of the value. + * @throws {NumberFormatException} If the value is not convertable to float. + */ + DatatypeAware.prototype.floatValue = function () { + var ret = parseFloat(this.value); + if (isNaN(ret)) { + throw {name: 'NumberFormatException', + message: '"' + this.value + '" is not a float'}; + } + return ret; + }; + + /** + * Returns the Locator identifying the datatype of the value. + */ + DatatypeAware.prototype.getDatatype = function () { + return this.datatype; + }; + + /** + * Returns the lexical representation of the value. + */ + DatatypeAware.prototype.getValue = function () { + if (typeof this.value === 'object' && this.value instanceof Locator) { + return this.value.getReference(); + } + return this.value.toString(); + }; + + /** + * Returns the BigInteger representation of the value. + * @throws {NumberFormatException} If the value cannot be parsed as an int. + */ + DatatypeAware.prototype.integerValue = function () { + var ret = parseInt(this.value, 10); + if (isNaN(ret)) { + throw {name: 'NumberFormatException', + message: '"' + this.value + '" is not an integer'}; + } + return ret; + }; + + /** + * Returns the Locator representation of the value. + * @throws {ModelConstraintException} If the value is not an Locator + * object. + */ + DatatypeAware.prototype.locatorValue = function () { + if (!(typeof this.value === 'object' && this.value instanceof Locator)) { + throw {name: 'ModelConstraintException', + message: '"' + this.value + '" is not a locator'}; + } + return this.value; + }; + + /** + * Returns the long representation of the value. + */ + DatatypeAware.prototype.longValue = function () { + // FIXME Implement! + }; + + /** + * Sets the value and the datatype. + * @throws {ModelConstraintException} If datatype or value is null. + */ + DatatypeAware.prototype.setValue = function (value, datatype) { + var tm = this.getTopicMap(); + if (datatype === null) { + throw {name: 'ModelConstraintException', message: 'Invalid datatype'}; + } + if (value === null) { + throw {name: 'ModelConstraintException', message: 'Invalid value'}; + } + this.value = value; + this.datatype = datatype || + this.getTopicMap().createLocator(XSD.string); + if (datatype && datatype.getReference() === XSD.anyURI) { + this.value = tm.createLocator(value); + } + if (!datatype) { + if (typeof value === 'number') { + // FIXME Could be XSD.float as well + this.datatype = tm.createLocator(XSD.integer); + } + } + if (typeof value === 'object' && value instanceof Locator) { + this.datatype = tm.createLocator(XSD.anyURI); + } + }; + + // -------------------------------------------------------------------------- + /** + * Constructs a new Topic Map System Factoy. The constructor should not be + * called directly. Use the {TM.TopicMapSystemFactory.newInstance} instead. + * @class Represents a Topic Maps construct. + * @memberOf TM + */ + TopicMapSystemFactory = function () { + this.properties = {}; + this.features = {}; + }; + + /** + * Returns the particular feature requested for in the underlying implementation + * of TopicMapSystem. + */ + TopicMapSystemFactory.prototype.getFeature = function (featureName) { + return this.features; + }; + + /** + * Gets the value of a property in the underlying implementation of + * TopicMapSystem. + */ + TopicMapSystemFactory.prototype.getProperty = function (propertyName) { + return this.properties[propertyName]; + }; + + /** + * Returns if the particular feature is supported by the TopicMapSystem. + */ + TopicMapSystemFactory.prototype.hasFeature = function (featureName) { + return false; + }; + + /** + * Obtain a new instance of a TopicMapSystemFactory. + * @static + * @returns {TopicMapSystemFactory} + */ + TopicMapSystemFactory.newInstance = function () { + return new TopicMapSystemFactory(); + }; + + /** + * Creates a new TopicMapSystem instance using the currently configured + * factory parameters. + */ + TopicMapSystemFactory.prototype.newTopicMapSystem = function () { + var backend = this.properties['com.semanticheadache.tmjs.backend'] || 'memory'; + if (backend === 'memory') { + return new TopicMapSystemMemImpl(); + } + }; + + /** + * Sets a particular feature in the underlying implementation of TopicMapSystem. + */ + TopicMapSystemFactory.prototype.setFeature = function (featureName, enable) { + this.features[featureName] = enable; + }; + + /** + * Sets a property in the underlying implementation of TopicMapSystem. + */ + TopicMapSystemFactory.prototype.setProperty = function (propertyName, value) { + this.properties[propertyName] = value; + }; + + /** + * Creates a new instance of TopicMamSystem. + * @class Implementation of the TopicMapSystem interface. + */ + TopicMapSystemMemImpl = function () { + this.topicmaps = {}; + }; + + /** + * @throws {TopicMapExistsException} If a topic map with the given locator + * already exists. + */ + TopicMapSystemMemImpl.prototype.createTopicMap = function (locator) { + if (this.topicmaps[locator.getReference()]) { + throw {name: 'TopicMapExistsException', + message: 'A topic map under the same IRI already exists'}; + } + var tm = new TopicMap(this, locator); + this.topicmaps[locator.getReference()] = tm; + return tm; + }; + + TopicMapSystemMemImpl.prototype.getLocators = function () { + var locators = [], key; + for (key in this.topicmaps) { + if (this.topicmaps.hasOwnProperty(key)) { + locators.push(this.createLocator(key)); + } + } + return locators; + }; + + TopicMapSystemMemImpl.prototype.getTopicMap = function (locator) { + var tm; + if (locator instanceof Locator) { + tm = this.topicmaps[locator.getReference()]; + } else { + tm = this.topicmaps[locator]; + } + if (!tm) { + return null; + } + return tm; + }; + + /** + * @param {String} iri + */ + TopicMapSystemMemImpl.prototype.createLocator = function (iri) { + return new Locator(this, iri); + }; + + TopicMapSystemMemImpl.prototype.getFeature = function (featureName) { + return false; + }; + + TopicMapSystemMemImpl.prototype._removeTopicMap = function (tm) { + var key; + for (key in this.topicmaps) { + if (this.topicmaps.hasOwnProperty(key) && + key === tm.locator.getReference()) { + delete this.topicmaps[key]; + } + } + }; + + TopicMapSystemMemImpl.prototype.close = function () { + this.topicmaps = null; // release references + }; + + TopicMap = function (tms, locator) { + this.topicmapsystem = tms; + this.itemIdentifiers = []; + this.locator = locator; + this.topics = []; + this.associations = []; + this._constructId = 1; + this._si2topic = new Hash(); // Index for subject identifiers + this._sl2topic = new Hash(); // Index for subject locators + this._ii2construct = new Hash(); // Index for item identifiers + this._id2construct = new Hash(); // Index for object ids + + // The topic map object always get the id 0 + this.id = 0; + this._id2construct.put(this.id, this); + + this.reifier = null; + this.handlers = []; + + // Our own event handling mechanism + var EventHandler = function (eventtype) { + this.eventtype = eventtype; + this.handlers = []; + }; + EventHandler.prototype = { + registerHandler: function (handler) { + this.handlers.push(handler); + }, + removeHandler: function (handler) { + for (var i = 0; i < this.handlers.length; i += 1) { + if (handler.toString() === + this.handlers[i].toString()) { + this.handlers.splice(i, 1); + } + } + }, + fire: function (source, obj) { + obj = obj || {}; + for (var i = 0; i < this.handlers.length; i += 1) { + this.handlers[i](this.eventtype, source, obj); + } + } + }; + this.addAssociationEvent = new EventHandler(EventType.ADD_ASSOCIATION); + this.addNameEvent = new EventHandler(EventType.ADD_NAME); + this.addOccurrenceEvent = new EventHandler(EventType.ADD_OCCURRENCE); + this.addRoleEvent = new EventHandler(EventType.ADD_ROLE); + this.addThemeEvent = new EventHandler(EventType.ADD_THEME); + this.addTopicEvent = new EventHandler(EventType.ADD_TOPIC); + this.addTypeEvent = new EventHandler(EventType.ADD_TYPE); + this.removeAssociationEvent = new EventHandler(EventType.REMOVE_ASSOCIATION); + this.removeNameEvent = new EventHandler(EventType.REMOVE_NAME); + this.removeOccurrenceEvent = new EventHandler(EventType.REMOVE_OCCURRENCE); + this.removeRoleEvent = new EventHandler(EventType.REMOVE_ROLE); + this.removeThemeEvent = new EventHandler(EventType.REMOVE_THEME); + this.removeTopicEvent = new EventHandler(EventType.REMOVE_TOPIC); + this.removeTypeEvent = new EventHandler(EventType.REMOVE_TYPE); + this.setTypeEvent = new EventHandler(EventType.SET_TYPE); + this.typeInstanceIndex = new TypeInstanceIndex(this); + this.scopedIndex = new ScopedIndex(this); + }; + + /** + * @returns {TopicMap} The topic map object itself (for chaining support) + */ + TopicMap.prototype.register_event_handler = function (type, handler) { + switch (type) { + case EventType.ADD_ASSOCIATION: + this.addAssociationEvent.registerHandler(handler); + break; + case EventType.ADD_NAME: + this.addNameEvent.registerHandler(handler); + break; + case EventType.ADD_OCCURRENCE: + this.addOccurrenceEvent.registerHandler(handler); + break; + case EventType.ADD_ROLE: + this.addRoleEvent.registerHandler(handler); + break; + case EventType.ADD_THEME: + this.addThemeEvent.registerHandler(handler); + break; + case EventType.ADD_TOPIC: + this.addTopicEvent.registerHandler(handler); + break; + case EventType.ADD_TYPE: + this.addTypeEvent.registerHandler(handler); + break; + case EventType.REMOVE_ASSOCIATION: + this.removeAssociationEvent.registerHandler(handler); + break; + case EventType.REMOVE_NAME: + this.removeNameEvent.registerHandler(handler); + break; + case EventType.REMOVE_OCCURRENCE: + this.removeOccurrenceEvent.registerHandler(handler); + break; + case EventType.REMOVE_ROLE: + this.removeRoleEvent.registerHandler(handler); + break; + case EventType.REMOVE_THEME: + this.removeThemeEvent.registerHandler(handler); + break; + case EventType.REMOVE_TOPIC: + this.removeTopicEvent.registerHandler(handler); + break; + case EventType.REMOVE_TYPE: + this.removeTypeEvent.registerHandler(handler); + break; + case EventType.SET_TYPE: + this.setTypeEvent.registerHandler(handler); + break; + } + return this; + }; + + TopicMap.swiss(Reifiable, 'getReifier', 'setReifier'); + TopicMap.swiss(Construct, 'addItemIdentifier', 'getItemIdentifiers', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + /** + * Removes duplicate topic map objects. This function is quite expensive, + * so it should not be called too often. It is meant to remove duplicates + * after imports of topic maps. + * @returns {TopicMap} The topic map object itself (for chaining support) + */ + TopicMap.prototype.sanitize = function () { + DuplicateRemover.removeTopicMapDuplicates(this); + TypeInstanceHelper.convertAssociationsToType(this); + return this; + }; + + TopicMap.prototype.isTopicMap = function () { + return true; + }; + + TopicMap.prototype._getConstructId = function () { + this._constructId = this._constructId + 1; + return this._constructId; + }; + + TopicMap.prototype.remove = function () { + if (this.topicmapsystem === null) { + return null; + } + this.topicmapsystem._removeTopicMap(this); + this.topicmapsystem = null; + this.itemIdentifiers = null; + this.locator = null; + this.topics = null; + this.associations = null; + this._si2topic = null; + this._sl2topic = null; + this._ii2construct = null; + this._id2construct = null; + this.reifier = null; + this.id = null; + this.typeInstanceIndex = null; + return null; + }; + + /** + * @throws {ModelConstraintException} If type or scope is null. + */ + TopicMap.prototype.createAssociation = function (type, scope) { + var a; + if (type === null) { + throw {name: 'ModelConstraintException', + message: 'Creating an association with type == null is not allowed'}; + } + if (scope === null) { + throw {name: 'ModelConstraintException', + message: 'Creating an association with scope == null is not allowed'}; + } + SameTopicMapHelper.assertBelongsTo(this, type); + SameTopicMapHelper.assertBelongsTo(this, scope); + + a = new Association(this); + this.associations.push(a); + if (type) { + a.setType(type); + } + addScope(a, scope); + this.addAssociationEvent.fire(a); + return a; + }; + + TopicMap.prototype.createLocator = function (iri) { + return new Locator(this, iri); + }; + + TopicMap.prototype._createEmptyTopic = function () { + var t = new Topic(this); + this.addTopicEvent.fire(t); + this.topics.push(t); + return t; + }; + + TopicMap.prototype.createTopic = function () { + var t = this._createEmptyTopic(); + t.addItemIdentifier(this.createLocator('urn:x-tmjs:' + t.getId())); + return t; + }; + + /** + * @throws {ModelConstraintException} If no itemIdentifier is given. + * @throws {IdentityConstraintException} If another construct with the + * specified item identifier exists which is not a Topic. + */ + TopicMap.prototype.createTopicByItemIdentifier = function (itemIdentifier) { + if (!itemIdentifier) { + throw {name: 'ModelConstraintException', + message: 'createTopicByItemIdentifier() needs an item identifier'}; + } + var t = this.getConstructByItemIdentifier(itemIdentifier); + if (t) { + if (!t.isTopic()) { + throw {name: 'IdentityConstraintException', + message: 'Another construct with the specified item identifier ' + + 'exists which is not a Topic.'}; + } + return t; + } + t = this._createEmptyTopic(); + t.addItemIdentifier(itemIdentifier); + return t; + }; + + /** + * @throws {ModelConstraintException} If no subjectIdentifier is given. + */ + TopicMap.prototype.createTopicBySubjectIdentifier = function (subjectIdentifier) { + if (!subjectIdentifier) { + throw {name: 'ModelConstraintException', + message: 'createTopicBySubjectIdentifier() needs a subject identifier'}; + } + var t = this.getTopicBySubjectIdentifier(subjectIdentifier); + if (t) { + return t; + } + t = this._createEmptyTopic(); + t.addSubjectIdentifier(subjectIdentifier); + return t; + }; + + /** + * @throws {ModelConstraintException} If no subjectLocator is given. + */ + TopicMap.prototype.createTopicBySubjectLocator = function (subjectLocator) { + if (!subjectLocator) { + throw {name: 'ModelConstraintException', + message: 'createTopicBySubjectLocator() needs a subject locator'}; + } + var t = this.getTopicBySubjectLocator(subjectLocator); + if (t) { + return t; + } + t = this._createEmptyTopic(); + t.addSubjectLocator(subjectLocator); + return t; + }; + + TopicMap.prototype.getAssociations = function () { + return this.associations; + }; + + /** + * @throws {ModelConstraintException} If id is null. + */ + TopicMap.prototype.getConstructById = function (id) { + if (id === null) { + throw {name: 'ModelConstraintException', + message: 'getConstructById(null) is illegal'}; + } + var ret = this._id2construct.get(id); + if (!ret) { + return null; + } + return ret; + }; + + /** + * @throws {ModelConstraintException} If itemIdentifier is null. + */ + TopicMap.prototype.getConstructByItemIdentifier = function (itemIdentifier) { + if (itemIdentifier === null) { + throw {name: 'ModelConstraintException', + message: 'getConstructByItemIdentifier(null) is illegal'}; + } + var ret = this._ii2construct.get(itemIdentifier.getReference()); + if (!ret) { + return null; + } + return ret; + }; + + /** + * @throws {UnsupportedOperationException} If the index type is not + * supported. + */ + TopicMap.prototype.getIndex = function (className) { + var index; + if (className === 'TypeInstanceIndex') { + index = this.typeInstanceIndex; + return index; + } else if (className === 'ScopedIndex') { + index = new ScopedIndex(this); + return index; + } + // TODO: Should we throw an exception that indicates that the + // index is not known? Check the TMAPI docs! + throw {name: 'UnsupportedOperationException', + message: 'getIndex ist not (yet) supported'}; + }; + + TopicMap.prototype.getParent = function () { + return null; + }; + + TopicMap.prototype.getTopicBySubjectIdentifier = function (subjectIdentifier) { + var res = this._si2topic.get(subjectIdentifier.getReference()); + if (res) { + return res; + } + return null; // Make sure that the result is not undefined + }; + + TopicMap.prototype.getTopicBySubjectLocator = function (subjectLocator) { + var res = this._sl2topic.get(subjectLocator.getReference()); + if (res) { + return res; + } + return null; // Make sure that the result is not undefined + }; + + TopicMap.prototype.getLocator = function () { + return this.locator; + }; + + TopicMap.prototype.getTopics = function () { + return this.topics; + }; + + TopicMap.prototype.mergeIn = function (topicmap) { + // TODO implement! + throw {name: 'NotImplemented', message: 'TopicMap.mergeIn() not implemented'}; + }; + + TopicMap.prototype.equals = function (topicmap) { + return this.locator.equals(topicmap.locator); + }; + + TopicMap.prototype.getId = function () { + return this.id; + }; + + TopicMap.prototype.getTopicMap = function () { + return this; + }; + + // Remove item identifiers + TopicMap.prototype._removeConstruct = function (construct) { + var iis = construct.getItemIdentifiers(), i; + for (i = 0; i < iis.length; i += 1) { + this._ii2construct.remove(iis[i].getReference()); + } + this._id2construct.remove(construct.getId()); + }; + + TopicMap.prototype._removeTopic = function (topic) { + var i, sis = topic.getSubjectIdentifiers(), + slos = topic.getSubjectLocators(); + // remove subject identifiers from TopicMap._si2topic + for (i = 0; i < sis.length; i += 1) { + this._si2topic.remove(sis[i].getReference()); + } + // remove subject locators from TopicMap._sl2topic + for (i = 0; i < slos.length; i += 1) { + this._sl2topic.remove(slos[i].getReference()); + } + this._removeConstruct(topic); + // remove topic from TopicMap.topics + for (i = 0; i < this.topics.length; i += 1) { + if (topic.id === this.topics[i].id) { + this.topics.splice(i, 1); + break; + } + } + }; + + TopicMap.prototype._removeAssociation = function (association) { + var i; + // remove association from TopicMap.associations + for (i = 0; i < this.associations.length; i += 1) { + if (association.id === this.associations[i].id) { + this.associations.splice(i, 1); + break; + } + } + this._removeConstruct(association); + // remove association from TopicMap.associations + for (i = 0; i < this.associations.length; i += 1) { + if (association.id === this.associations[i].id) { + this.associations.splice(i, 1); + break; + } + } + }; + + TopicMap.prototype._removeRole = function (role) { + this._removeConstruct(role); + }; + + TopicMap.prototype._removeOccurrence = function (occ) { + this._removeConstruct(occ); + }; + + TopicMap.prototype._removeName = function (name) { + this._removeConstruct(name); + }; + + TopicMap.prototype._removeVariant = function (variant) { + this._removeConstruct(variant); + }; + + // hashCode, remove + + // -------------------------------------------------------------------------- + + Topic = function (parnt) { + this.subjectIdentifiers = []; + this.subjectLocators = []; + this.itemIdentifiers = []; + this.parnt = parnt; + this.id = parnt._getConstructId(); + this.getTopicMap()._id2construct.put(this.id, this); + this.types = []; + this.rolesPlayed = []; + this.occurrences = []; + this.names = []; + this.reified = null; + }; + + Topic.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Topic.prototype.isTopic = function () { + return true; + }; + + Topic.prototype.getTopicMap = function () { + return this.parnt; + }; + + /** + * Adds a subject identifier to this topic. + * @throws {ModelConstraintException} If subjectIdentifier is null or + * not defined. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.addSubjectIdentifier = function (subjectIdentifier) { + if (!subjectIdentifier) { + throw {name: 'ModelConstraintException', + message: 'addSubjectIdentifier() needs subject identifier'}; + } + // Ignore if the identifier already exists + for (var i = 0; i < this.subjectIdentifiers.length; i += 1) { + if (this.subjectIdentifiers[i].getReference() === + subjectIdentifier.getReference()) { + return; + } + } + this.subjectIdentifiers.push(subjectIdentifier); + this.parnt._si2topic.put(subjectIdentifier.getReference(), this); + return this; + }; + + /** + * Adds a subject locator to this topic. + * @throws {ModelConstraintException} If subjectLocator is null or + * not defined. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.addSubjectLocator = function (subjectLocator) { + if (!subjectLocator) { + throw {name: 'ModelConstraintException', + message: 'addSubjectLocator() needs subject locator'}; + } + // Ignore if the identifier already exists + for (var i = 0; i < this.subjectLocators.length; i += 1) { + if (this.subjectLocators[i].getReference() === + subjectLocator.getReference()) { + return; + } + } + this.subjectLocators.push(subjectLocator); + this.parnt._sl2topic.put(subjectLocator.getReference(), this); + return this; + }; + + /** + * Adds a type to this topic. + * @throws {ModelConstraintException} If type is null or not defined. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.addType = function (type) { + if (!type) { + throw {name: 'ModelConstraintException', + message: 'addType() needs type'}; + } + SameTopicMapHelper.assertBelongsTo(this.parnt, type); + this.parnt.addTypeEvent.fire(this, {type: type}); + this.types.push(type); + return this; + }; + + // TODO: @type is optional In TMAPI 2.0 + // Creates a Name for this topic with the specified value, and scope. + // Creates a Name for this topic with the specified type, value, and scope. + Topic.prototype.createName = function (value, type, scope) { + var name; + if (type) { + SameTopicMapHelper.assertBelongsTo(this.parnt, type); + } + if (scope) { + SameTopicMapHelper.assertBelongsTo(this.parnt, scope); + } + if (typeof scope === 'undefined') { + scope = null; + } + + name = new Name(this, value, type); + addScope(name, scope); + this.names.push(name); + return name; + }; + + // TODO: @datatype is optional in TMAPI, value may be string or locator. + // Creates an Occurrence for this topic with the specified type, IRI value, and + // scope. + // createOccurrence(Topic type, java.lang.String value, Locator datatype, + // java.util.Collection scope) + // Creates an Occurrence for this topic with the specified type, string value, + // and scope. + Topic.prototype.createOccurrence = function (type, value, datatype, scope) { + var occ; + SameTopicMapHelper.assertBelongsTo(this.parnt, type); + SameTopicMapHelper.assertBelongsTo(this.parnt, scope); + + occ = new Occurrence(this, type, value, datatype); + this.parnt.addOccurrenceEvent.fire(occ, {type: type, value: value}); + addScope(occ, scope); + this.occurrences.push(occ); + return occ; + }; + + /** + * Returns the Names of this topic where the name type is type. + *type is optional. + */ + Topic.prototype.getNames = function (type) { + var ret = [], i; + + for (i = 0; i < this.names.length; i += 1) { + if (type && this.names[i].getType().equals(type)) { + ret.push(this.names[i]); + } else if (!type) { + ret.push(this.names[i]); + } + } + return ret; + }; + + /** + * Returns the Occurrences of this topic where the occurrence type is type. type + * is optional. + * @throws {IllegalArgumentException} If type is null. + */ + Topic.prototype.getOccurrences = function (type) { + var ret = [], i; + if (type === null) { + throw {name: 'IllegalArgumentException', + message: 'Topic.getOccurrences cannot be called without type'}; + } + for (i = 0; i < this.occurrences.length; i += 1) { + if (type && this.occurrences[i].getType().equals(type)) { + ret.push(this.occurrences[i]); + } else if (!type) { + ret.push(this.occurrences[i]); + } + } + return ret; + }; + + Topic.prototype._removeOccurrence = function (occ) { + // remove this from TopicMap.topics + for (var i = 0; i < this.occurrences.length; i += 1) { + if (this.occurrences[i].equals(occ)) { + this.occurrences.splice(i, 1); + break; + } + } + this.getTopicMap()._removeOccurrence(occ); + }; + + // Returns the Construct which is reified by this topic. + Topic.prototype.getReified = function (type) { + return this.reified; + }; + + Topic.prototype._setReified = function (reified) { + this.reified = reified; + }; + + /** + * Returns the roles played by this topic. + * Returns the roles played by this topic where the role type is type. + * assocType is optional + * @throws {IllegalArgumentException} If type or assocType is null. + */ + Topic.prototype.getRolesPlayed = function (type, assocType) { + if (type === null) { + throw {name: 'IllegalArgumentException', + message: 'Topic.getRolesPlayed cannot be called without type'}; + } + if (assocType === null) { + throw {name: 'IllegalArgumentException', + message: 'Topic.getRolesPlayed cannot be called with assocType===null'}; + } + var ret = [], i; + for (i = 0; i < this.rolesPlayed.length; i += 1) { + if (!type) { + ret.push(this.rolesPlayed[i]); + } else if (this.rolesPlayed[i].getType().equals(type)) { + if (assocType && + this.rolesPlayed[i].getParent().getType().equals(assocType) || + !assocType) { + ret.push(this.rolesPlayed[i]); + } + } + } + return ret; + }; + + // @private Registers role as a role played + // TODO: Rename to _addRolePlayed + Topic.prototype.addRolePlayed = function (role) { + this.rolesPlayed.push(role); + }; + + // TODO: Rename to _removeRolePlayed + Topic.prototype.removeRolePlayed = function (role) { + for (var i = 0; i < this.rolesPlayed.length; i += 1) { + if (this.rolesPlayed[i].id === role.id) { + this.rolesPlayed.splice(i, 1); + } + } + }; + + /** + * Returns the subject identifiers assigned to this topic. + */ + Topic.prototype.getSubjectIdentifiers = function () { + return this.subjectIdentifiers; + }; + + /** + * Returns the subject locators assigned to this topic. + */ + Topic.prototype.getSubjectLocators = function () { + return this.subjectLocators; + }; + + /** + * Returns the types of which this topic is an instance of. + */ + Topic.prototype.getTypes = function () { + return this.types; + }; + + /** + * Merges another topic into this topic. + * @throws {ModelConstraintException} If the topics reify different + * information items. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.mergeIn = function (other) { + var arr, i, tmp, tmp2, signatures, tiidx, sidx; + if (this.equals(other)) { + return true; + } + + SameTopicMapHelper.assertBelongsTo(this.getTopicMap(), other); + if (this.getReified() && other.getReified() && + !this.getReified().equals(other.getReified())) { + throw {name: 'ModelConstraintException', + message: 'The topics reify different Topic Maps constructs and cannot be merged!' + }; + } + + if (!this.getReified() && other.getReified()) { + tmp = other.getReified(); + tmp.setReifier(this); + } + + // Change all constructs that use other as type + tiidx = this.parnt.typeInstanceIndex; + MergeHelper.moveTypes(tiidx.getOccurrences(other), this); + MergeHelper.moveTypes(tiidx.getNames(other), this); + MergeHelper.moveTypes(tiidx.getAssociations(other), this); + MergeHelper.moveTypes(tiidx.getRoles(other), this); + + // Change all topics that have other as type + arr = tiidx.getTopics(other); + for (i = 0; i < arr.length; i += 1) { + arr[i].removeType(other); + arr[i].addType(this); + } + + // Change all constructs that use other as theme + sidx = this.parnt.scopedIndex; + MergeHelper.moveThemes(sidx.getAssociations(other), other, this); + MergeHelper.moveThemes(sidx.getOccurrences(other), other, this); + MergeHelper.moveThemes(sidx.getNames(other), other, this); + MergeHelper.moveThemes(sidx.getVariants(other), other, this); + + MergeHelper.moveItemIdentifiers(other, this); + + arr = other.getSubjectLocators(); + while (arr.length) { + tmp = arr[arr.length - 1]; + other.removeSubjectLocator(tmp); + this.addSubjectLocator(tmp); + } + + arr = other.getSubjectIdentifiers(); + while (arr.length) { + tmp = arr[arr.length - 1]; + other.removeSubjectIdentifier(tmp); + this.addSubjectIdentifier(tmp); + } + + arr = other.getTypes(); + while (arr.length) { + tmp = arr[arr.length - 1]; + other.removeType(tmp); + this.addType(tmp); + } + + // merge roles played + arr = this.getRolesPlayed(); + signatures = {}; + for (i = 0; i < arr.length; i += 1) { + tmp2 = arr[i].getParent(); + signatures[SignatureGenerator.makeAssociationSignature(tmp2)] = tmp2; + } + arr = other.getRolesPlayed(); + for (i = 0; i < arr.length; i += 1) { + tmp = arr[i]; + tmp.setPlayer(this); + if ((tmp2 = signatures[SignatureGenerator.makeAssociationSignature(tmp.getParent())])) { + MergeHelper.moveItemIdentifiers(tmp.getParent(), tmp2); + MergeHelper.moveReifier(tmp.getParent(), tmp2); + tmp.getParent().remove(); + } + } + + // merge names + arr = this.getNames(); + signatures = {}; + for (i = 0; i < arr.length; i += 1) { + signatures[SignatureGenerator.makeNameSignature(arr[i])] = arr[i]; + } + arr = other.getNames(); + for (i = 0; i < arr.length; i += 1) { + tmp = arr[i]; + if ((tmp2 = signatures[SignatureGenerator.makeNameSignature(arr[i])])) { + MergeHelper.moveItemIdentifiers(tmp, tmp2); + MergeHelper.moveReifier(tmp, tmp2); + MergeHelper.moveVariants(tmp, tmp2); + tmp.remove(); + } else { + tmp2 = this.createName(tmp.getValue(), tmp.getType(), tmp.getScope()); + MergeHelper.moveVariants(tmp, tmp2); + } + } + + // merge occurrences + arr = this.getOccurrences(); + signatures = {}; + for (i = 0; i < arr.length; i += 1) { + signatures[SignatureGenerator.makeOccurrenceSignature(arr[i])] = arr[i]; + } + arr = other.getOccurrences(); + for (i = 0; i < arr.length; i += 1) { + tmp = arr[i]; + if ((tmp2 = signatures[SignatureGenerator.makeOccurrenceSignature(arr[i])])) { + MergeHelper.moveItemIdentifiers(tmp, tmp2); + MergeHelper.moveReifier(tmp, tmp2); + tmp.remove(); + } else { + tmp2 = this.createOccurrence(tmp.getType(), tmp.getValue(), + tmp.getDatatype(), tmp.getScope()); + MergeHelper.moveReifier(tmp, tmp2); + } + } + + other.remove(); + return this; + }; + + /** + * Removes this topic from the containing TopicMap instance. + * @throws {TopicInUseException} If the topics is used as reifier, + * occurrence type, name type, association type, role type, topic type, + * association theme, occurrence theme, name theme, variant theme, + * or if it is used as a role player. + */ + Topic.prototype.remove = function () { + var tiidx = this.parnt.typeInstanceIndex, + sidx = this.parnt.scopedIndex; + if (this.getReified() || + tiidx.getOccurrences(this).length || + tiidx.getNames(this).length || + tiidx.getAssociations(this).length || + tiidx.getRoles(this).length || + tiidx.getTopics(this).length || + sidx.getAssociations(this).length || + sidx.getOccurrences(this).length || + sidx.getNames(this).length || + sidx.getVariants(this).length || + this.getRolesPlayed().length) { + throw {name: 'TopicInUseException', + message: '', reporter: this}; + } + this.parnt._removeTopic(this); + this.parnt._id2construct.remove(this.id); + this.parnt.removeTopicEvent.fire(this); + this.id = null; + return this.parnt; + }; + + /** + * Removes a subject identifier from this topic. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.removeSubjectIdentifier = function (subjectIdentifier) { + for (var i = 0; i < this.subjectIdentifiers.length; i += 1) { + if (this.subjectIdentifiers[i].getReference() === + subjectIdentifier.getReference()) { + this.subjectIdentifiers.splice(i, 1); + break; + } + } + this.parnt._sl2topic.remove(subjectIdentifier.getReference()); + return this; + }; + + /** + * Removes a subject locator from this topic. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.removeSubjectLocator = function (subjectLocator) { + for (var i = 0; i < this.subjectLocators.length; i += 1) { + if (this.subjectLocators[i].getReference() === + subjectLocator.getReference()) { + this.subjectLocators.splice(i, 1); + break; + } + } + this.parnt._sl2topic.remove(subjectLocator.getReference()); + return this; + }; + + /** + * Removes a type from this topic. + * @returns {Topic} The topic itself (for chaining support) + */ + Topic.prototype.removeType = function (type) { + for (var i = 0; i < this.types.length; i += 1) { + if (this.types[i].equals(type)) { + this.types.splice(i, 1); + this.parnt.removeTypeEvent.fire(this, {type: type}); + break; + } + } + }; + + Topic.prototype._removeName = function (name) { + for (var i = 0; i < this.names.length; i += 1) { + if (this.names[i].equals(name)) { + this.names.splice(i, 1); + break; + } + } + this.getTopicMap()._removeName(name); + }; + + // -------------------------------------------------------------------------- + Occurrence = function (parnt, type, value, datatype) { + this.itemIdentifiers = []; + this.parnt = parnt; + this.type = type; + this.value = value; + this.datatype = datatype ? datatype : this.getTopicMap().createLocator(XSD.string); + this.scope = []; + this.reifier = null; + this.id = this.getTopicMap()._getConstructId(); + this.getTopicMap()._id2construct.put(this.id, this); + }; + + // mergein Typed, DatatypeAware, Reifiable, Scoped, Construct + Occurrence.swiss(Typed, 'getType', 'setType'); + Occurrence.swiss(DatatypeAware, 'decimalValue', 'floatValue', + 'getDatatype', 'getValue', 'integerValue', 'locatorValue', 'longValue', + 'setValue'); + Occurrence.swiss(Reifiable, 'getReifier', 'setReifier'); + Occurrence.swiss(Scoped, 'addTheme', 'getScope', 'removeTheme'); + Occurrence.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Occurrence.prototype.isOccurrence = function () { + return true; + }; + + Occurrence.prototype.getTopicMap = function () { + return this.parnt.getParent(); + }; + + Occurrence.prototype.remove = function () { + var i; + for (i = 0; i < this.scope.length; i += 1) { + this.parnt.parnt.removeThemeEvent.fire(this, {theme: this.scope[i]}); + } + this.parnt.parnt.removeOccurrenceEvent.fire(this); + this.parnt._removeOccurrence(this); + this.id = null; + return this.parnt; + }; + + Name = function (parnt, value, type) { + this.itemIdentifiers = []; + this.parnt = parnt; + this.value = value; + this.scope = []; + this.id = this.getTopicMap()._getConstructId(); + this.type = type || + parnt.parnt.createTopicBySubjectIdentifier( + parnt.parnt.createLocator('http://psi.topicmaps.org/iso13250/model/topic-name')); + this.reifier = null; + this.variants = []; + this.getTopicMap()._id2construct.put(this.id, this); + this.parnt.parnt.addNameEvent.fire(this, {type: this.type, value: value}); + }; + + // mergein Typed, DatatypeAware, Reifiable, Scoped, Construct + Name.swiss(Typed, 'getType', 'setType'); + Name.swiss(Reifiable, 'getReifier', 'setReifier'); + Name.swiss(Scoped, 'addTheme', 'getScope', 'removeTheme'); + Name.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Name.prototype.isName = function () { + return true; + }; + + Name.prototype.getTopicMap = function () { + return this.parnt.parnt; + }; + + /** + * @throws {ModelConstraintException} If scope is null. + */ + Name.prototype.createVariant = function (value, datatype, scope) { + var scope_length = 0, i, variant; + if (typeof scope === 'undefined' || scope === null) { + throw {name: 'ModelConstraintException', + message: 'Creation of a variant with a null scope is not allowed'}; + } + if (scope && typeof scope === 'object') { + if (scope instanceof Array) { + scope_length = scope.length; + } else if (scope instanceof Topic) { + scope_length = 1; + } + } + /* + TODO: Compare scope of Name and Variant + if (scope_length <= this.getScope().length) { + // check if the variants scope contains more scoping topics + throw {name: 'ModelConstraintException', + message: 'The variant would be in the same scope as the parent'}; + }*/ + variant = new Variant(this, value, datatype); + addScope(variant, scope); + for (i = 0; i < this.scope.length; i += 1) { + this.getTopicMap().addThemeEvent.fire(variant, + {theme: this.scope[i]}); + } + this.variants.push(variant); + return variant; + }; + + /** + * @throws {ModelConstraintException} If value is null. + * @returns {Name} The name itself (for chaining support) + */ + Name.prototype.setValue = function (value) { + if (!value) { + throw {name: 'ModelConstraintException', + message: 'Name.setValue(null) is not allowed'}; + } + this.value = value; + return this; + }; + + Name.prototype.getValue = function (value) { + return this.value; + }; + + Name.prototype.remove = function () { + var i; + for (i = 0; i < this.scope.length; i += 1) { + this.parnt.parnt.removeThemeEvent.fire(this, {theme: this.scope[i]}); + } + this.parnt.parnt.removeNameEvent.fire(this); + this.parnt._removeName(this); + this.id = null; + return this.parnt; + }; + + Name.prototype._removeVariant = function (variant) { + for (var i = 0; i < this.variants.length; i += 1) { + if (this.variants[i].equals(variant)) { + this.variants.splice(i, 1); + break; + } + } + this.getTopicMap()._removeVariant(variant); + }; + + Name.prototype.getVariants = function () { + return this.variants; + }; + + /** + * @throws {ModelConstraintException} If value or datatype is null. + */ + Variant = function (parnt, value, datatype) { + if (value === null) { + throw {name: 'ModelConstraintException', + message: 'Creation of a variant with null value is not allowed'}; + } + if (datatype === null) { + throw {name: 'ModelConstraintException', + message: 'Creation of a variant with datatype == null is not allowed'}; + } + this.itemIdentifiers = []; + this.scope = []; + this.parnt = parnt; + if (typeof value === 'object' && value instanceof Locator) { + this.datatype = this.getTopicMap().createLocator('http://www.w3.org/2001/XMLSchema#anyURI'); + } else { + this.datatype = + this.getTopicMap().createLocator(XSD.string); + } + this.datatype = datatype; + this.reifier = null; + this.value = value; + this.id = this.getTopicMap()._getConstructId(); + this.getTopicMap()._id2construct.put(this.id, this); + }; + + Variant.swiss(Reifiable, 'getReifier', 'setReifier'); + Variant.swiss(Scoped, 'addTheme', 'getScope', 'removeTheme'); + Variant.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + Variant.swiss(DatatypeAware, 'decimalValue', 'floatValue', 'getDatatype', + 'getValue', 'integerValue', 'locatorValue', 'longValue', 'setValue'); + + Variant.prototype.isVariant = function () { + return true; + }; + + Variant.prototype.getTopicMap = function () { + return this.getParent().getParent().getParent(); + }; + + Variant.prototype.remove = function () { + var i; + for (i = 0; i < this.scope.length; i += 1) { + this.getTopicMap().removeThemeEvent.fire(this, {theme: this.scope[i]}); + } + this.getParent()._removeVariant(this); + this.id = null; + return this.parnt; + }; + + + Role = function (parnt, type, player) { + this.itemIdentifiers = []; + this.parnt = parnt; + this.type = type; + this.player = player; + this.id = this.getTopicMap()._getConstructId(); + this.reifier = null; + this.getTopicMap()._id2construct.put(this.id, this); + }; + + Role.swiss(Typed, 'getType', 'setType'); + Role.swiss(Reifiable, 'getReifier', 'setReifier'); + Role.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Role.prototype.isRole = function () { + return true; + }; + + Role.prototype.getTopicMap = function () { + return this.getParent().getParent(); + }; + + Role.prototype.remove = function () { + var parnt = this.parnt; + this.parnt.parnt.removeRoleEvent.fire(this); + this.parnt._removeRole(this); + this.itemIdentifiers = null; + this.parnt = null; + this.type = null; + this.player = null; + this.reifier = null; + this.id = null; + return parnt; + }; + + Role.prototype.getPlayer = function () { + return this.player; + }; + + /** + * @throws {ModelConstraintException} If player is null. + * @returns {Role} The role itself (for chaining support) + */ + Role.prototype.setPlayer = function (player) { + if (!player) { + throw {name: 'ModelConstraintException', + message: 'player i Role.setPlayer cannot be null'}; + } + SameTopicMapHelper.assertBelongsTo(this.parnt.parnt, player); + if (this.player.equals(player)) { + return; + } + this.player.removeRolePlayed(this); + player.addRolePlayed(this); + this.player = player; + return this; + }; + + Association = function (par) { + this.itemIdentifiers = []; + this.parnt = par; + this.id = this.getTopicMap()._getConstructId(); + this.getTopicMap()._id2construct.put(this.id, this); + this.roles = []; + this.scope = []; + this.type = null; + this.reifier = null; + }; + + Association.swiss(Typed, 'getType', 'setType'); + Association.swiss(Reifiable, 'getReifier', 'setReifier'); + Association.swiss(Scoped, 'addTheme', 'getScope', 'removeTheme'); + Association.swiss(Construct, 'addItemIdentifier', 'equals', 'getId', + 'getItemIdentifiers', 'getParent', 'getTopicMap', 'hashCode', 'remove', + 'removeItemIdentifier', 'isTopic', 'isAssociation', 'isRole', + 'isOccurrence', 'isName', 'isVariant', 'isTopicMap'); + + Association.prototype.isAssociation = function () { + return true; + }; + + Association.prototype.getTopicMap = function () { + return this.parnt; + }; + + /** + * Creates a new Role representing a role in this association. + * @throws {ModelConstraintException} If type or player is null. + */ + Association.prototype.createRole = function (type, player) { + if (!type) { + throw {name: 'ModelConstraintException', + message: 'type i Role.createPlayer cannot be null'}; + } + if (!player) { + throw {name: 'ModelConstraintException', + message: 'player i Role.createRole cannot be null'}; + } + SameTopicMapHelper.assertBelongsTo(this.parnt, type); + SameTopicMapHelper.assertBelongsTo(this.parnt, player); + var role = new Role(this, type, player); + player.addRolePlayed(role); + this.roles.push(role); + this.parnt.addRoleEvent.fire(role, {type: type, player: player}); + return role; + }; + + Association.prototype._removeRole = function (role) { + for (var i = 0; i < this.roles.length; i += 1) { + if (role.id === this.roles[i].id) { + this.roles.splice(i, 1); + break; + } + } + role.getPlayer().removeRolePlayed(role); + this.getTopicMap()._removeRole(role); + }; + + Association.prototype.remove = function () { + var i; + for (i = 0; i < this.scope.length; i += 1) { + this.parnt.removeThemeEvent.fire(this, {theme: this.scope[i]}); + } + this.parnt.removeAssociationEvent.fire(this); + while (this.roles.length) { + this.roles[0].remove(); + } + this.id = null; + this.roles = null; + this.parnt._removeAssociation(this); + this.getTopicMap()._ii2construct.remove(this.id); + this.item_identifiers = null; + this.scope = null; + this.type = null; + this.reifier = null; + return this.parnt; + }; + + /** + * Returns the roles participating in this association, or, if type + * is given, all roles with the specified type. + * @throws {IllegalArgumentException} If type is null. + */ + Association.prototype.getRoles = function (type) { + if (type === null) { + throw {name: 'IllegalArgumentException', + message: 'Topic.getRoles cannot be called with type null'}; + } + if (!type) { + return this.roles; + } + var ret = [], i; + for (i = 0; i < this.roles.length; i += 1) { + if (this.roles[i].getType().equals(type)) { + ret.push(this.roles[i]); + } + } + return ret; + }; + + /** + * Returns the role types participating in this association. + */ + Association.prototype.getRoleTypes = function () { + // Create a hash with the object ids as keys to avoid duplicates + var types = {}, typearr = [], i, t; + for (i = 0; i < this.roles.length; i += 1) { + types[this.roles[i].getType().getId()] = + this.roles[i].getType(); + } + for (t in types) { + if (types.hasOwnProperty(t)) { + typearr.push(types[t]); + } + } + return typearr; + }; + + // ------ ---------------------------------------------------------------- + /** @class */ + Index = function () { + this.opened = false; + }; + + /** + * Close the index. + */ + Index.prototype.close = function () { + return; + }; + + /** + * Indicates whether the index is updated automatically. + * @returns {boolean} + */ + Index.prototype.isAutoUpdated = function () { + return true; + }; + + /** Indicates if the index is open. + * @returns {boolean} true if index is already opened, false otherwise. + */ + Index.prototype.isOpen = function () { + return this.opened; + }; + + /** + * Opens the index. This method must be invoked before using any other + * method (aside from isOpen()) exported by this interface or derived + * interfaces. + */ + Index.prototype.open = function () { + this.opened = true; + }; + + /** + * Synchronizes the index with data in the topic map. + */ + Index.prototype.reindex = function () { + return; + }; + + /** + * Creates a new instance of TypeInstanceIndex. + * @class Implementation of the TypeInstanceIndex interface. + */ + TypeInstanceIndex = function (tm) { + var eventHandler, that = this; + this.tm = tm; + // we use hash tables of hash tables for our index + this.type2topics = new Hash(); + this.type2associations = new Hash(); + this.type2roles = new Hash(); + this.type2occurrences = new Hash(); + this.type2names = new Hash(); + this.type2variants = new Hash(); + this.opened = false; + + eventHandler = function (eventtype, source, obj) { + var existing, untyped, types, type, i; + switch (eventtype) { + case EventType.ADD_ASSOCIATION: + break; + case EventType.ADD_NAME: + existing = that.type2names.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2names.put(obj.type.getId(), existing); + break; + case EventType.ADD_OCCURRENCE: + existing = that.type2occurrences.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2occurrences.put(obj.type.getId(), existing); + break; + case EventType.ADD_ROLE: + existing = that.type2roles.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2roles.put(obj.type.getId(), existing); + break; + case EventType.ADD_TOPIC: + existing = that.type2topics.get('null'); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2topics.put('null', existing); + break; + case EventType.ADD_TYPE: + // check if source exists with type null, remove it there + untyped = that.type2topics.get('null'); + if (untyped && untyped.get(source.getId())) { + untyped.remove(source.getId()); + that.type2topics.put('null', untyped); + } + + existing = that.type2topics.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2topics.put(obj.type.getId(), existing); + break; + case EventType.REMOVE_ASSOCIATION: + type = source.getType(); + if (!type) { + break; + } + existing = that.type2associations.get(type.getId()); + for (i = 0; i < existing.length; i += 1) { + if (existing[i].equals(source)) { + existing.splice(i, 1); + break; + } + } + if (existing.length > 0) { + that.type2associations.put(type.getId(), + existing); + } else { + that.type2associations.remove(type.getId()); + } + break; + case EventType.REMOVE_NAME: + type = source.getType(); + existing = that.type2names.get(type.getId()); + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2names.put(type.getId(), existing); + } else { + that.type2names.remove(type.getId()); + } + break; + case EventType.REMOVE_OCCURRENCE: + type = source.getType(); + existing = that.type2occurrences.get(type.getId()); + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2occurrences.put(type.getId(), existing); + } else { + that.type2occurrences.remove(type.getId()); + } + break; + case EventType.REMOVE_ROLE: + type = source.getType(); + existing = that.type2roles.get(type.getId()); + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2roles.put(type.getId(), existing); + } else { + that.type2roles.remove(type.getId()); + } + break; + case EventType.REMOVE_TOPIC: + // two cases: + // topic has types + types = source.getTypes(); + for (i = 0; i < types.length; i += 1) { + existing = that.type2topics.get(types[i].getId()); + existing.remove(source.getId()); + if (!existing.size()) { + that.type2topics.remove(types[i].getId()); + } + } + // topic used as type + that.type2topics.remove(source.getId()); + that.type2associations.remove(source.getId()); + that.type2roles.remove(source.getId()); + that.type2occurrences.remove(source.getId()); + that.type2variants.remove(source.getId()); + break; + case EventType.REMOVE_TYPE: + existing = that.type2topics.get(obj.type.getId()); + existing.remove(source.getId()); + if (!existing.size()) { + that.type2topics.remove(obj.type.getId()); + } + if (source.getTypes().length === 0) { + untyped = that.type2topics.get('null'); + if (typeof untyped === 'undefined') { + untyped = new Hash(); + } + untyped.put(source.getId(), source); + } + break; + case EventType.SET_TYPE: + if (source.isAssociation()) { + // remove source from type2associations(obj.old.getId()); + if (obj.old) { + existing = that.type2associations.get(obj.old.getId()); + for (i = 0; i < existing.length; i += 1) { + if (existing[i].equals(source)) { + existing.splice(i, 1); + break; + } + } + if (existing.length > 0) { + that.type2associations.put(obj.old.getId(), + existing); + } else { + that.type2associations.remove(obj.old.getId()); + } + } + existing = that.type2associations.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = []; + } + existing.push(source); + that.type2associations.put(obj.type.getId(), existing); + } else if (source.isName()) { + existing = that.type2names.get(obj.old.getId()); + if (existing) { + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2names.put(obj.old.getId(), existing); + } else { + that.type2names.remove(obj.old.getId()); + } + } + existing = that.type2names.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2names.put(obj.type.getId(), existing); + } else if (source.isOccurrence()) { + existing = that.type2occurrences.get(obj.old.getId()); + if (existing) { + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2occurrences.put(obj.old.getId(), existing); + } else { + that.type2occurrences.remove(obj.old.getId()); + } + } + existing = that.type2occurrences.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2occurrences.put(obj.type.getId(), existing); + } else if (source.isRole()) { + existing = that.type2roles.get(obj.old.getId()); + if (existing) { + existing.remove(source.getId()); + if (existing.length > 0) { + that.type2roles.put(obj.old.getId(), existing); + } else { + that.type2roles.remove(obj.old.getId()); + } + } + existing = that.type2roles.get(obj.type.getId()); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + that.type2roles.put(obj.type.getId(), existing); + } + break; + } + }; + tm.addAssociationEvent.registerHandler(eventHandler); + tm.addNameEvent.registerHandler(eventHandler); + tm.addOccurrenceEvent.registerHandler(eventHandler); + tm.addRoleEvent.registerHandler(eventHandler); + tm.addTopicEvent.registerHandler(eventHandler); + tm.addTypeEvent.registerHandler(eventHandler); + tm.removeAssociationEvent.registerHandler(eventHandler); + tm.removeNameEvent.registerHandler(eventHandler); + tm.removeOccurrenceEvent.registerHandler(eventHandler); + tm.removeRoleEvent.registerHandler(eventHandler); + tm.removeTopicEvent.registerHandler(eventHandler); + tm.removeTypeEvent.registerHandler(eventHandler); + tm.setTypeEvent.registerHandler(eventHandler); + }; + + TypeInstanceIndex.swiss(Index, 'close', 'isAutoUpdated', + 'isOpen', 'open', 'reindex'); + + /** + * Returns the associations in the topic map whose type property equals type. + * + * @param {Topic} type + * @returns {Array} A list of all associations in the topic map with the given type. + */ + TypeInstanceIndex.prototype.getAssociations = function (type) { + var ret = this.type2associations.get(type.getId()); + if (!ret) { + return []; + } + return ret; + }; + + /** + * Returns the topics in the topic map used in the type property of Associations. + * + * @returns {Array} A list of all topics that are used as an association type. + */ + TypeInstanceIndex.prototype.getAssociationTypes = function () { + var ret = [], keys = this.type2associations.keys(), i; + for (i = 0; i < keys.length; i += 1) { + ret.push(this.tm.getConstructById(keys[i])); + } + return ret; + }; + + /** + * Returns the topic names in the topic map whose type property equals type. + * + * @param {Topic} type + * @returns {Array} + */ + TypeInstanceIndex.prototype.getNames = function (type) { + var ret = this.type2names.get(type.getId()); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the topics in the topic map used in the type property of Names. + * + * @returns {Array} An array of topic types. Note that the array contains + * a reference to the actual topics, not copies of them. + */ + TypeInstanceIndex.prototype.getNameTypes = function () { + var ret = [], keys = this.type2names.keys(), i; + for (i = 0; i < keys.length; i += 1) { + ret.push(this.tm.getConstructById(keys[i])); + } + return ret; + }; + + /** + * Returns the occurrences in the topic map whose type property equals type. + * + * @returns {Array} + */ + TypeInstanceIndex.prototype.getOccurrences = function (type) { + var ret = this.type2occurrences.get(type.getId()); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the topics in the topic map used in the type property of + * Occurrences. + * + * @returns {Array} An array of topic types. Note that the array contains + * a reference to the actual topics, not copies of them. + */ + TypeInstanceIndex.prototype.getOccurrenceTypes = function () { + var ret = [], keys = this.type2occurrences.keys(), i; + for (i = 0; i < keys.length; i += 1) { + ret.push(this.tm.getConstructById(keys[i])); + } + return ret; + }; + + + /** + * Returns the roles in the topic map whose type property equals type. + * + * @returns {Array} + */ + TypeInstanceIndex.prototype.getRoles = function (type) { + var ret = this.type2roles.get(type.getId()); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the topics in the topic map used in the type property of Roles. + * + * @returns {Array} An array of topic types. Note that the array contains + * a reference to the actual topics, not copies of them. + */ + TypeInstanceIndex.prototype.getRoleTypes = function () { + var ret = [], keys = this.type2roles.keys(), i; + for (i = 0; i < keys.length; i += 1) { + ret.push(this.tm.getConstructById(keys[i])); + } + return ret; + }; + + /** + * Returns the topics which are an instance of the specified type. + */ + TypeInstanceIndex.prototype.getTopics = function (type) { + var ret = this.type2topics.get((type ? type.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the topics which are an instance of the specified types. + * If matchall is true only topics that have all of the listed types + * are returned. + * @returns {Array} A list of Topic objects + */ + TypeInstanceIndex.prototype.getTopicsByTypes = function (types, matchall) { + var instances, i, j; + instances = IndexHelper.getForKeys(this.type2topics, types); + if (!matchall) { + return instances; + } + // If matchall is true, we check all values for all types in {types} + // It's a hack, but will do for now + for (i = 0; i < instances.length; i += 1) { + for (j = 0; j < types.length; j += 1) { + if (!ArrayHelper.contains(instances[i].getTypes(), types[j])) { + instances.splice(i, 1); + i -= 1; + break; + } + } + } + return instances; + }; + + /** + * Returns the topics in topic map which are used as type in an + * "type-instance"-relationship. + */ + TypeInstanceIndex.prototype.getTopicTypes = function () { + var ret = [], keys = this.type2topics.keys(), i; + for (i = 0; i < keys.length; i += 1) { + if (keys[i] !== 'null') { + ret.push(this.tm.getConstructById(keys[i])); + } + } + return ret; + }; + + TypeInstanceIndex.prototype.close = function () { + return; + }; + + + /** + * Index for Scoped statements and their scope. This index provides access + * to Associations, Occurrences, Names, and Variants by their scope + * property and to Topics which are used as theme in a scope. + */ + ScopedIndex = function (tm) { + var that = this, eventHandler; + this.tm = tm; + this.theme2associations = new Hash(); + this.theme2names = new Hash(); + this.theme2occurrences = new Hash(); + this.theme2variants = new Hash(); + eventHandler = function (eventtype, source, obj) { + var existing, key, unscoped, remove_from_index, add_to_index; + add_to_index = function (hash, source, obj) { + key = (obj.theme ? obj.theme.getId() : 'null'); + + // check if source exists with theme null, remove it there + // this is the case iff source now has one scoping topic + if (source.getScope().length === 1) { + unscoped = hash.get('null'); + if (unscoped && unscoped.get(source.getId())) { + unscoped.remove(source.getId()); + hash.put('null', unscoped); + } + } + existing = hash.get(key); + if (typeof existing === 'undefined') { + existing = new Hash(); + } + existing.put(source.getId(), source); + hash.put(key, existing); + }; + remove_from_index = function (hash, source, obj) { + key = obj.theme.getId(); + existing = hash.get(key); + if (typeof existing !== 'undefined') { + existing.remove(source.getId()); + if (!existing.size()) { + hash.remove(key); + } + } + }; + switch (eventtype) { + case EventType.ADD_THEME: + if (source.isAssociation()) { + add_to_index(that.theme2associations, source, obj); + } else if (source.isName()) { + add_to_index(that.theme2names, source, obj); + } else if (source.isOccurrence()) { + add_to_index(that.theme2occurrences, source, obj); + } else if (source.isVariant()) { + add_to_index(that.theme2variants, source, obj); + } + break; + case EventType.REMOVE_THEME: + if (source.isAssociation()) { + remove_from_index(that.theme2associations, source, obj); + } else if (source.isName()) { + remove_from_index(that.theme2names, source, obj); + } else if (source.isOccurrence()) { + remove_from_index(that.theme2occurrences, source, obj); + } else if (source.isVariant()) { + remove_from_index(that.theme2variants, source, obj); + } + break; + } + }; + tm.addThemeEvent.registerHandler(eventHandler); + tm.removeThemeEvent.registerHandler(eventHandler); + }; + + ScopedIndex.swiss(Index, 'close', 'isAutoUpdated', + 'isOpen', 'open', 'reindex'); + + ScopedIndex.prototype.close = function () { + return; + }; + + /** + * Returns the Associations in the topic map whose scope property contains + * the specified theme. The return value may be empty but must never be null. + * @param theme can be array or {Topic} + * @param [matchall] boolean + */ + ScopedIndex.prototype.getAssociations = function (theme) { + var ret = this.theme2associations.get((theme ? theme.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the Associations in the topic map whose scope property contains + * the specified theme. The return value may be empty but must never be null. + * @param theme can be array or {Topic} + * @param [matchall] boolean + * @throws {IllegalArgumentException} If themes is null. + */ + ScopedIndex.prototype.getAssociationsByThemes = function (themes, matchall) { + if (themes === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getAssociationsByThemes cannot be called without themes'}; + } + return IndexHelper.getConstructsByThemes(this.theme2associations, + themes, matchall); + }; + + /** + * Returns the topics in the topic map used in the scope property of + * Associations. + */ + ScopedIndex.prototype.getAssociationThemes = function () { + return IndexHelper.getConstructThemes(this.tm, this.theme2associations); + }; + + /** + * Returns the Names in the topic map whose scope property contains the + * specified theme. + */ + ScopedIndex.prototype.getNames = function (theme) { + var ret = this.theme2names.get((theme ? theme.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the Names in the topic map whose scope property equals one of + * those themes at least. + * @throws {IllegalArgumentException} If themes is null. + */ + ScopedIndex.prototype.getNamesByThemes = function (themes, matchall) { + if (themes === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getNamesByThemes cannot be called without themes'}; + } + return IndexHelper.getConstructsByThemes(this.theme2names, + themes, matchall); + }; + + /** + * Returns the topics in the topic map used in the scope property of Names. + */ + ScopedIndex.prototype.getNameThemes = function () { + return IndexHelper.getConstructThemes(this.tm, this.theme2names); + }; + + /** + * Returns the Occurrences in the topic map whose scope property contains the + * specified theme. + */ + ScopedIndex.prototype.getOccurrences = function (theme) { + var ret = this.theme2occurrences.get((theme ? theme.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the Occurrences in the topic map whose scope property equals one + * of those themes at least. + * @throws {IllegalArgumentException} If themes is null. + */ + ScopedIndex.prototype.getOccurrencesByThemes = function (themes, matchall) { + if (themes === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getOccurrencesByThemes cannot be called without themes'}; + } + return IndexHelper.getConstructsByThemes(this.theme2occurrences, + themes, matchall); + }; + + /** + * Returns the topics in the topic map used in the scope property of + * Occurrences. + */ + ScopedIndex.prototype.getOccurrenceThemes = function () { + return IndexHelper.getConstructThemes(this.tm, this.theme2occurrences); + }; + + /** + * Returns the Variants in the topic map whose scope property contains the + * specified theme. The return value may be empty but must never be null. + * @param {Topic} The Topic which must be part of the scope. This must not be + * null. + * @returns {Array} An array of Variants. + * @throws {IllegalArgumentException} If theme is null. + */ + ScopedIndex.prototype.getVariants = function (theme) { + if (theme === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getVariants cannot be called without themes'}; + } + var ret = this.theme2variants.get((theme ? theme.getId() : 'null')); + if (!ret) { + return []; + } + return ret.values(); + }; + + /** + * Returns the Variants in the topic map whose scope property equals one of + * those themes at least. + * @param {Array} themes Scope of the Variants to be returned. + * @param {boolean} If true the scope property of a variant must match all + * themes, if false one theme must be matched at least. + * @returns {Array} An array of variants + * @throws {IllegalArgumentException} If themes is null. + */ + ScopedIndex.prototype.getVariantsByThemes = function (themes, matchall) { + if (themes === null) { + throw {name: 'IllegalArgumentException', + message: 'ScopedIndex.getVariantsByThemes cannot be called without themes'}; + } + return IndexHelper.getConstructsByThemes(this.theme2variants, + themes, matchall); + }; + + /** + * Returns the topics in the topic map used in the scope property of Variants. + * The return value may be empty but must never be null. + * @returns {Array} An array of Topics. + */ + ScopedIndex.prototype.getVariantThemes = function () { + return IndexHelper.getConstructThemes(this.tm, this.theme2variants); + }; + + + + + /** + * @class Helper class that is used to check if constructs belong to + * a given topic map. + */ + SameTopicMapHelper = { + /** + * Checks if topic belongs to the topicmap 'topicmap'. + * topic can be instance of Topic or an Array with topics. + * topic map be null. + * @static + * @throws ModelConstraintException if the topic(s) don't + * belong to the same topic map. + * @returns false if the topic was null or true otherwise. + */ + assertBelongsTo: function (topicmap, topic) { + var i; + if (!topic) { + return false; + } + if (topic && topic instanceof Topic && + !topicmap.equals(topic.getTopicMap())) { + throw {name: 'ModelConstraintException', + message: 'scope topic belongs to different topic map'}; + } + if (topic && topic instanceof Array) { + for (i = 0; i < topic.length; i += 1) { + if (!topicmap.equals(topic[i].getTopicMap())) { + throw {name: 'ModelConstraintException', + message: 'scope topic belong to different topic maps'}; + } + } + } + return true; + } + }; + + /** + * Helper functions for hashes of hashes + * @ignore + */ + IndexHelper = { + getForKeys: function (hash, keys) { + var i, j, tmp = new Hash(), value_hash, value_keys; + for (i = 0; i < keys.length; i += 1) { + value_hash = hash.get(keys[i].getId()); + if (value_hash) { + value_keys = value_hash.keys(); + // we use a hash to store instances to avoid duplicates + for (j = 0; j < value_keys.length; j += 1) { + tmp.put(value_hash.get(value_keys[j]).getId(), + value_hash.get(value_keys[j])); + } + } + } + return tmp.values(); + }, + + getConstructThemes: function (tm, hash) { + var ret = [], keys = hash.keys(), i; + for (i = 0; i < keys.length; i += 1) { + if (keys[i] !== 'null') { + ret.push(tm.getConstructById(keys[i])); + } + } + return ret; + }, + + getConstructsByThemes: function (hash, themes, matchall) { + var constructs, i, j; + constructs = IndexHelper.getForKeys(hash, themes); + if (!matchall) { + return constructs; + } + // If matchall is true, we check all values for all types in {types} + // It's a hack, but will do for now + for (i = 0; i < constructs.length; i += 1) { + for (j = 0; j < themes.length; j += 1) { + if (!ArrayHelper.contains(constructs[i].getScope(), themes[j])) { + constructs.splice(i, 1); + i -= 1; + break; + } + } + } + return constructs; + } + }; + + /** + * Helper functions for arrays. We don't modify the global array + * object to avoid conflicts with other libraries. + * @ignore + */ + ArrayHelper = { + /** Checks if arr contains elem */ + contains: function (arr, elem) { + for (var key in arr) { + if (arr.hasOwnProperty(key)) { + if (arr[key].equals(elem)) { + return true; + } + } + } + return false; + } + }; + + /** + * Internal function to add scope. scope may be Array, Topic or null. + * @ignore + * FIXME: Move to a class + */ + addScope = function (construct, scope) { + var i; + if (scope && typeof scope === 'object') { + if (scope instanceof Array) { + for (i = 0; i < scope.length; i += 1) { + construct.addTheme(scope[i]); + } + } else if (scope instanceof Topic) { + construct.addTheme(scope); + } + } else { + construct.getTopicMap().addThemeEvent.fire(construct, {theme: null}); + } + }; + + /** + * Helper class for generating signatures of Topic Maps constructs. + */ + SignatureGenerator = { + makeNameValueSignature: function (name) { + return name.getValue(); + }, + + makeNameSignature: function (name) { + return SignatureGenerator.makeNameValueSignature(name) + + '#' + SignatureGenerator.makeTypeSignature(name) + + '#' + SignatureGenerator.makeScopeSignature(name); + }, + + makeOccurrenceSignature: function (occ) { + return SignatureGenerator.makeOccurrenceValueSignature(occ) + + '#' + SignatureGenerator.makeTypeSignature(occ) + + '#' + SignatureGenerator.makeScopeSignature(occ); + }, + + makeOccurrenceValueSignature: function (occ) { + return '#' + occ.getValue() + '#' + + (occ.getDatatype() ? occ.getDatatype().getReference() : 'null'); + }, + + makeTypeSignature: function (obj) { + var type = obj.getType(); + if (type) { + return type.getId(); + } else { + return ''; + } + }, + + makeScopeSignature: function (scope) { + var i, arr = []; + for (i = 0; i < scope.length; i += 1) { + arr.push(scope[i].getId()); + } + arr.sort(); + return arr.join('#'); + }, + + makeAssociationSignature: function (ass) { + var roles, i, tmp = []; + roles = ass.getRoles(); + for (i = 0; i < roles.length; i += 1) { + tmp.push(SignatureGenerator.makeRoleSignature(roles[i])); + } + tmp.sort(); + + return '#' + SignatureGenerator.makeTypeSignature(ass) + '#' + tmp.join('#') + + SignatureGenerator.makeScopeSignature(ass); + }, + + makeRoleSignature: function (role) { + return SignatureGenerator.makeTypeSignature(role) + '#' + + role.getPlayer().getId(); + }, + + makeVariantValueSignature: function (variant) { + return '#' + variant.getValue() + '#' + variant.getDatatype().getReference(); + }, + + makeVariantSignature: function (variant) { + return SignatureGenerator.makeVariantValueSignature(variant) + + '#' + SignatureGenerator.makeScopeSignature(variant); + } + }; + + /** + * Utility class that removes duplicates according to the TMDM. + */ + DuplicateRemover = { + removeTopicMapDuplicates: function (tm) { + var i, topics, associations, sig2ass = new Hash(), sig, existing; + topics = tm.getTopics(); + for (i = 0; i < topics.length; i += 1) { + DuplicateRemover.removeOccurrencesDuplicates(topics[i].getOccurrences()); + DuplicateRemover.removeNamesDuplicates(topics[i].getNames()); + } + associations = tm.getAssociations(); + for (i = 0; i < associations.length; i += 1) { + DuplicateRemover.removeAssociationDuplicates(associations[i]); + sig = SignatureGenerator.makeAssociationSignature(associations[i]); + if ((existing = sig2ass.get(sig))) { + MergeHelper.moveConstructCharacteristics(associations[i], existing); + MergeHelper.moveRoleCharacteristics(associations[i], existing); + associations[i].remove(); + } else { + sig2ass.put(sig, associations[i]); + } + } + sig2ass.empty(); + }, + + removeOccurrencesDuplicates: function (occurrences) { + var i, sig2occ = new Hash(), occ, sig, existing; + for (i = 0; i < occurrences.length; i += 1) { + occ = occurrences[i]; + sig = SignatureGenerator.makeOccurrenceSignature(occ); + if ((existing = sig2occ.get(sig))) { + MergeHelper.moveConstructCharacteristics(occ, existing); + occ.remove(); + } else { + sig2occ.put(sig, occ); + } + } + sig2occ.empty(); + }, + + removeNamesDuplicates: function (names) { + var i, sig2names = new Hash(), name, sig, existing; + for (i = 0; i < names.length; i += 1) { + name = names[i]; + DuplicateRemover.removeVariantsDuplicates(name.getVariants()); + sig = SignatureGenerator.makeNameSignature(name); + if ((existing = sig2names.get(sig))) { + MergeHelper.moveConstructCharacteristics(name, existing); + MergeHelper.moveVariants(name, existing); + name.remove(); + } else { + sig2names.put(sig, name); + } + } + sig2names.empty(); + }, + + removeVariantsDuplicates: function (variants) { + var i, sig2variants = new Hash(), variant, sig, existing; + for (i = 0; i < variants.length; i += 1) { + variant = variants[i]; + sig = SignatureGenerator.makeVariantSignature(variant); + if ((existing = sig2variants.get(sig))) { + MergeHelper.moveConstructCharacteristics(variant, existing); + variant.remove(); + } else { + sig2variants.put(sig, variant); + } + } + sig2variants.empty(); + }, + + removeAssociationDuplicates: function (assoc) { + var i, roles = assoc.getRoles(), sig2role = new Hash(), sig, existing; + for (i = 0; i < roles.length; i += 1) { + sig = SignatureGenerator.makeRoleSignature(roles[i]); + if ((existing = sig2role.get(sig))) { + MergeHelper.moveConstructCharacteristics(roles[i], existing); + roles[i].remove(); + } else { + sig2role.put(sig, roles[i]); + } + } + } + }; + + MergeHelper = { + moveTypes: function (arr, target) { + var i; + for (i = 0; i < arr.length; i += 1) { + arr[i].setType(target); + } + }, + + moveThemes: function (arr, source, target) { + for (var i = 0; i < arr.length; i += 1) { + arr[i].removeTheme(source); + arr[i].addTheme(target); + } + }, + + moveItemIdentifiers: function (source, target) { + var iis, ii; + iis = source.getItemIdentifiers(); + while (iis.length) { + ii = iis[iis.length - 1]; + source.removeItemIdentifier(ii); + target.addItemIdentifier(ii); + } + }, + + /** + * Moves variants from the name source to the name target + */ + moveVariants: function (source, target) { + var arr, i, tmp, tmp2, signatures; + arr = target.getVariants(); + signatures = {}; + for (i = 0; i < arr.length; i += 1) { + signatures[SignatureGenerator.makeVariantSignature(arr[i])] = arr[i]; + } + arr = source.getVariants(); + for (i = 0; i < arr.length; i += 1) { + tmp = arr[i]; + if ((tmp2 = signatures[SignatureGenerator.makeVariantSignature(arr[i])])) { + MergeHelper.moveItemIdentifiers(tmp, tmp2); + MergeHelper.moveReifier(tmp, tmp2); + tmp.remove(); + } else { + target.createVariant(tmp.getValue(), tmp.getDatatype(), tmp.getScope()); + } + } + }, + + moveReifier: function (source, target) { + var r1, r2; + if (source.getReifier() === null) { + return; + } else if (target.getReifier() === null) { + target.setReifier(source.getReifier()); + } else { + r1 = source.getReifier(); + r2 = target.getReifier(); + source.setReifier(null); + r1.mergeIn(r2); + } + }, + + moveRoleCharacteristics: function (source, target) { + var i, roles, sigs = new Hash(); + roles = target.getRoles(); + for (i = 0; i < roles.length; i += 1) { + sigs.put(roles[i], SignatureGenerator.makeRoleSignature(roles[i])); + } + roles = source.getRoles(); + for (i = 0; i < roles.length; i += 1) { + MergeHelper.moveItemIdentifiers(roles[i], + sigs.get(SignatureGenerator.makeRoleSignature(roles[i]))); + roles[i].remove(); + } + }, + + moveConstructCharacteristics: function (source, target) { + MergeHelper.moveReifier(source, target); + MergeHelper.moveItemIdentifiers(source, target); + } + }; + + CopyHelper = { + copyAssociations: function (source, target, mergeMap) { + }, + copyItemIdentifiers: function (source, target) { + }, + copyReifier: function (source, target, mergeMap) { + }, + copyScope: function (source, target, mergeMap) { + }, + copyTopicMap: function (source, target) { + }, + copyTopic: function (sourcetm, targettm, mergeMap) { + }, + copyType: function (source, target, mergeMap) { + } + }; + + TypeInstanceHelper = { + convertAssociationsToType: function (tm) { + var typeInstance, type, instance, associations, index, i, ass, roles; + typeInstance = tm.getTopicBySubjectIdentifier( + tm.createLocator(TMDM.TYPE_INSTANCE)); + type = tm.getTopicBySubjectIdentifier( + tm.createLocator(TMDM.TYPE)); + instance = tm.getTopicBySubjectIdentifier( + tm.createLocator(TMDM.INSTANCE)); + if (!typeInstance || !type || !instance) { + return; + } + index = tm.getIndex('TypeInstanceIndex'); + if (!index) { + return; + } + if (!index.isAutoUpdated()) { + index.reindex(); + } + associations = index.getAssociations(typeInstance); + for (i = 0; i < associations.length; i += 1) { + ass = associations[i]; + if (ass.getScope().length > 0 || + ass.getReifier() !== null || + ass.getItemIdentifiers().length > 0) { + continue; + } + roles = ass.getRoles(); + if (roles.length !== 2) { + continue; + } + if (roles[0].getType().equals(type) && roles[1].getType().equals(instance)) { + roles[1].getPlayer().addType(roles[0].getPlayer()); + } else + if (roles[1].getType().equals(type) && roles[0].getType().equals(instance)) { + roles[0].getPlayer().addType(roles[1].getPlayer()); + } else { + continue; + } + ass.remove(); + } + } + }; + + // Export objects into the TM namespace + return { + TopicMapSystemFactory: TopicMapSystemFactory, + XSD: XSD, + TMDM: TMDM, + Hash: Hash, // needed by CXTM export + Version: Version + }; +}()); + +// Pollute the global namespace +TopicMapSystemFactory = TM.TopicMapSystemFactory; + +// Check if we are in a CommonJS environment (e.g. node.js) +if (typeof exports === 'object' && exports !== null) { + exports.TopicMapSystemFactory = TopicMapSystemFactory; + exports.TM = TM; +} + +/*jslint browser: true, devel: true, onevar: true, undef: true, nomen: false, eqeqeq: true, plusplus: true, bitwise: true, + regexp: true, newcap: true, immed: true, indent: 4 */ +/*global TM, window, DOMParser, ActiveXObject*/ + +TM.JTM = (function () { + var ReaderImpl, WriterImpl; + + ReaderImpl = function (tm) { + var that = this; + this.tm = tm; + this.version = null; // Keep the JTM version number + this.prefixes = {}; + this.defaultDatatype = this.tm.createLocator(TM.XSD.string); + + this.curieToLocator = function (loc) { + var curie, prefix, pos; + if (that.version === '1.1' && + loc.substr(0, 1) === '[') { + if (loc.substr(loc.length - 1, 1) !== ']') { + throw {name: 'InvalidFormat', + message: 'Invaild CURIE: missing tailing bracket'}; + } + curie = loc.substr(1, loc.length - 2); + pos = curie.indexOf(':'); + if (pos !== -1) { + // Lookup prefix and replace with URL + prefix = curie.substr(0, pos); + if (that.prefixes[prefix]) { + loc = that.prefixes[prefix] + + curie.substr(pos + 1, curie.length - 1); + return loc; + } else { + throw {name: 'InvalidFormat', + message: 'Missing prefix declaration: ' + prefix}; + } + } else { + throw {name: 'InvalidFormat', + message: 'Invaild CURIE: missing colon'}; + } + } + return loc; + }; + + /** + * Internal function that takes a JTM-identifier string as a parameter + * and returns a topic object - either an existing topic or a new topic + * if the requested topic did not exist + * @param {String} locator JTM-identifier + * @throws {InvalidFormat} If the locator could not be parsed. + */ + this.getTopicByReference = function (locator) { + if (typeof locator === 'undefined' || locator === null) { + return null; + } + switch (locator.substr(0, 3)) { + case 'si:' : + return this.tm.createTopicBySubjectIdentifier( + this.tm.createLocator(this.curieToLocator(locator.substr(3)))); + case 'sl:' : + return this.tm.createTopicBySubjectLocator( + this.tm.createLocator(this.curieToLocator(locator.substr(3)))); + case 'ii:' : + return this.tm.createTopicByItemIdentifier( + this.tm.createLocator(this.curieToLocator(locator.substr(3)))); + } + throw {name: 'InvalidFormat', + message: 'Invaild topic reference \'' + locator + '\''}; + }; + }; + + /** + * Imports a JTM topic map or JTM fragment from a JSON-string. + * name, variant, occurrence and role fragments need the optional parent + * construct as a parameter. + * TODO: Decide if this should be part of tmjs. Add functions for decoding/ + * encoding JSON if so. + * + * @param {String} str JSON encoded JTM + * @param {Construct} [parent] Parent construct if the JTM fragment contains + * a name, variant, occurrence or role. + */ + ReaderImpl.prototype.fromString = function (str, parent) { + var obj = JSON.parse(str); + return this.fromObject(obj); + }; + + /** + * Imports a JTM topic map or JTM fragment. + * name, variant, occurrence and role fragments need the parent construct + * as a parameter. + * + * @param {object} obj with JTM properties + * @param {Construct} [parent] Parent construct if the JTM fragment contains + * a name, variant, occurrence or role. + */ + ReaderImpl.prototype.fromObject = function (obj, parent) { + var ret; + parent = parent || null; + if (obj.version !== '1.0' && obj.version !== '1.1') { + throw {name: 'InvalidFormat', + message: 'Unknown version of JTM: ' + obj.version}; + } + this.version = obj.version; + if (obj.version === '1.1' && obj.prefixes) { + this.prefixes = obj.prefixes; + // Check if xsd is defined and if it is valid: + if (obj.prefixes && obj.prefixes.xsd && + obj.prefixes.xsd !== 'http://www.w3.org/2001/XMLSchema#') { + throw {name: 'InvalidFormat', + message: 'The XSD prefix MUST have the value "http://www.w3.org/2001/XMLSchema#"'}; + } + } else if (obj.prefixes) { + throw {name: 'InvalidFormat', + message: 'Prefixes are invalid in JTM 1.0: ' + obj.version}; + } + if (!this.prefixes.xsd) { + this.prefixes.xsd = 'http://www.w3.org/2001/XMLSchema#'; + } + if (!obj.item_type) { + throw {name: 'InvalidFormat', + message: 'Missing item_type'}; + } + switch (obj.item_type.toLowerCase()) { + case "topicmap": + ret = this.parseTopicMap(obj); + break; + case "topic": + ret = this.parseTopic(obj); + break; + case "name": + ret = this.parseName(parent, obj); + break; + case "variant": + ret = this.parseVariant(parent, obj); + break; + case "occurrence": + ret = this.parseOccurrence(parent, obj); + break; + case "association": + ret = this.parseAssociation(obj); + break; + case "role": + ret = this.parseRole(parent, obj); + break; + default: + throw {name: 'InvalidFormat', + message: 'Unknown item_type property'}; + } + return ret; + }; + + /** + * FIXME: Work in progress. We have to specify *how* the information + * item can be created. + * + * Internal function that parses a parent field. From the JTM spec: + * "The value of the parent member is an array of item identifiers, + * each prefixed by "ii:". For occurrences and names the parent array + * may as well contain subject identifiers prefixed by "si:" and + * subject locators prefixed by "sl:". + */ + ReaderImpl.prototype.parseParentAsTopic = function (obj, allowTopic) { + var parent = null, tmp, i; + if (!obj.parent) { + parent = this.tm.createTopic(); + } else if (!(obj.parent instanceof Array) || obj.parent.length === 0) { + throw {name: 'InvalidFormat', + message: 'Missing parent topic reference in occurrence'}; + } + if (obj.parent) { + for (i = 0; i < obj.parent.length; i += 1) { + tmp = this.getTopicByReference(obj.parent[i]); + if (!parent) { + parent = tmp; + } else { + parent.mergeIn(tmp); + } + } + } + return parent; + }; + + ReaderImpl.prototype.parseTopicMap = function (obj) { + var i, len, arr; + this.parseItemIdentifiers(this.tm, obj.item_identifiers); + this.parseReifier(this.tm, obj.reifier); + if (obj.topics && typeof obj.topics === 'object' && obj.topics instanceof Array) { + arr = obj.topics; + len = arr.length; + for (i = 0; i < len; i += 1) { + this.parseTopic(arr[i]); + } + arr = null; + } + if (obj.associations && typeof obj.associations === 'object' && + obj.associations instanceof Array) { + arr = obj.associations; + len = arr.length; + for (i = 0; i < len; i += 1) { + this.parseAssociation(arr[i]); + } + arr = null; + } + this.tm.sanitize(); // remove duplicates and convert type-instance associations to types + return true; + }; + + ReaderImpl.prototype.parseTopic = function (obj) { + var that = this, topic = null, parseIdentifier, arr, i, identifier, type; + parseIdentifier = function (tm, topic, arr, getFunc, createFunc, addFunc) { + var i, len, tmp; + if (arr && typeof arr === 'object' && arr instanceof Array) { + len = arr.length; + for (i = 0; i < len; i += 1) { + identifier = decodeURI(that.curieToLocator(arr[i])); + if (!topic) { + topic = createFunc.apply(tm, [tm.createLocator(identifier)]); + } else { + tmp = getFunc.apply(tm, [tm.createLocator(identifier)]); + if (tmp && tmp.isTopic() && !topic.equals(tmp)) { + topic.mergeIn(tmp); + } else if (!(tmp && tmp.isTopic() && topic.equals(tmp))) { + topic[addFunc](tm.createLocator(identifier)); + } + } + } + } + return topic; + }; + topic = parseIdentifier(this.tm, topic, obj.subject_identifiers, + this.tm.getTopicBySubjectIdentifier, + this.tm.createTopicBySubjectIdentifier, 'addSubjectIdentifier'); + topic = parseIdentifier(this.tm, topic, obj.subject_locators, + this.tm.getTopicBySubjectLocator, + this.tm.createTopicBySubjectLocator, 'addSubjectLocator'); + topic = parseIdentifier(this.tm, topic, obj.item_identifiers, + this.tm.getConstructByItemIdentifier, + this.tm.createTopicByItemIdentifier, 'addItemIdentifier'); + + if ((arr = obj.instance_of) && this.version === '1.1') { + for (i = 0; i < arr.length; i += 1) { + type = this.getTopicByReference(arr[i]); + topic.addType(type); + } + } else if (obj.instance_of && this.version === '1.0') { + throw {name: 'InvalidFormat', + message: 'instance_of is invalid in JTM 1.0'}; + } + + arr = obj.names; + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + this.parseName(topic, arr[i]); + } + } + arr = obj.occurrences; + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + this.parseOccurrence(topic, arr[i]); + } + } + }; + + ReaderImpl.prototype.parseName = function (parent, obj) { + var name, type, scope, arr, i; + if (!parent) { + parent = this.parseParentAsTopic(obj); + } + scope = this.parseScope(obj.scope); + type = this.getTopicByReference(obj.type); + name = parent.createName(obj.value, type, scope); + arr = obj.variants; + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + this.parseVariant(name, arr[i]); + } + } + this.parseItemIdentifiers(name, obj.item_identifiers); + this.parseReifier(name, obj.reifier); + }; + + ReaderImpl.prototype.parseVariant = function (parent, obj) { + var variant, scope; + scope = this.parseScope(obj.scope); + variant = parent.createVariant(obj.value, + obj.datatype ? + this.tm.createLocator(this.curieToLocator(obj.datatype)) : + this.defaultDatatype, scope); + this.parseItemIdentifiers(variant, obj.item_identifiers); + this.parseReifier(variant, obj.reifier); + }; + + ReaderImpl.prototype.parseOccurrence = function (parent, obj) { + var occurrence, type, scope; + if (!parent) { + parent = this.parseParentAsTopic(obj); + } + scope = this.parseScope(obj.scope); + type = this.getTopicByReference(obj.type); + occurrence = parent.createOccurrence(type, obj.value, + obj.datatype ? + this.tm.createLocator(this.curieToLocator(obj.datatype)) : + this.defaultDatatype, scope); + this.parseItemIdentifiers(occurrence, obj.item_identifiers); + this.parseReifier(occurrence, obj.reifier); + }; + + ReaderImpl.prototype.parseAssociation = function (obj) { + var association, type, scope, arr, i; + scope = this.parseScope(obj.scope); + type = this.getTopicByReference(obj.type); + association = this.tm.createAssociation(type, scope); + arr = obj.roles; + if (arr && typeof arr === 'object' && arr instanceof Array) { + if (arr.length === 0) { + throw {name: 'InvalidFormat', + message: 'Association needs roles'}; + } + for (i = 0; i < arr.length; i += 1) { + this.parseRole(association, arr[i]); + } + } else { + throw {name: 'InvalidFormat', + message: 'Association needs roles'}; + } + this.parseItemIdentifiers(association, obj.item_identifiers); + this.parseReifier(association, obj.reifier); + }; + + ReaderImpl.prototype.parseRole = function (parent, obj) { + var role, type, player; + type = this.getTopicByReference(obj.type); + player = this.getTopicByReference(obj.player); + role = parent.createRole(type, player); + this.parseItemIdentifiers(role, obj.item_identifiers); + this.parseReifier(role, obj.reifier); + }; + + ReaderImpl.prototype.parseScope = function (arr) { + var i, scope = []; + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + scope.push(this.getTopicByReference(arr[i])); + } + } + return scope; + }; + + + ReaderImpl.prototype.parseItemIdentifiers = function (construct, arr) { + var i, tm, identifier; + tm = construct.getTopicMap(); + if (arr && typeof arr === 'object' && arr instanceof Array) { + for (i = 0; i < arr.length; i += 1) { + identifier = this.curieToLocator(arr[i]); + if (!tm.getConstructByItemIdentifier(tm.createLocator(identifier))) { + construct.addItemIdentifier(tm.createLocator(identifier)); + } + } + } + }; + + ReaderImpl.prototype.parseReifier = function (construct, reifier) { + var reifierTopic = this.getTopicByReference(reifier); + if (reifierTopic && reifierTopic.getReified() === null || !reifierTopic) { + construct.setReifier(reifierTopic); + } // else: Ignore the case that reifierTopic reifies another item + }; + + /** + * @class Exports topic maps constructs as JTM 1.0 JavaScript objects. + * See http://www.cerny-online.com/jtm/1.0/ for the JSON Topic Maps specification. + * JSON 1.1 is described at http://www.cerny-online.com/jtm/1.1/ + * @param {String} version Version number of the JTM export. Valid values are '1.0' + * and '1.1'. Version 1.1 produces more compact files. The default + * value is '1.0', but this may change in the future. + */ + WriterImpl = function (version) { + var that = this, referenceToCURIEorURI; + this.defaultDatatype = TM.XSD.string; + this.prefixes = new TM.Hash(); + this.version = version || '1.0'; + + referenceToCURIEorURI = function (reference) { + var key, keys, i, value; + if (that.version === '1.0') { + return reference; + } + // TODO Sort keys after descending value length - longest first + // to find the best prefix + keys = that.prefixes.keys(); + for (i = 0; i < keys.length; i += 1) { + key = keys[i]; + value = that.prefixes.get(key); + if (reference.substring(0, value.length) === value) { + return '[' + key + ':' + + reference.substr(value.length) + ']'; + } + } + return reference; + }; + + /** + * Sets prefixes for JTM 1.1 export. prefixes is an object with the + * prefix as key and its corresponding reference as value. + */ + this.setPrefixes = function (prefixes) { + var key; + for (key in prefixes) { + if (prefixes.hasOwnProperty(key)) { + this.prefixes.put(key, prefixes[key]); + } + } + }; + + /** + * Generates a JTM reference based on the topics subject identifier, + * subject locator or item identifier (whatever is set, tested in this + * order). + * @returns {string} Representing the topic t, e.g. + * "si:http://psi.topicmaps.org/iso13250/model/type + */ + this.getTopicReference = function (t) { + var arr; + arr = t.getSubjectIdentifiers(); + if (arr.length > 0) { + return 'si:' + referenceToCURIEorURI(arr[0].getReference()); + } + arr = t.getSubjectLocators(); + if (arr.length > 0) { + return 'sl:' + referenceToCURIEorURI(arr[0].getReference()); + } + arr = t.getItemIdentifiers(); + if (arr.length > 0) { + return 'ii:' + referenceToCURIEorURI(arr[0].getReference()); + } + // ModelConstraintExeption: TMDM says that t MUST have on of these + }; + + this.exportIdentifiers = function (obj, arr, attr) { + var i, len = arr.length; + if (len > 0) { + obj[attr] = []; + for (i = 0; i < len; i += 1) { + obj[attr].push(referenceToCURIEorURI(arr[i].getReference())); + } + } + + }; + + this.exportScope = function (obj, construct) { + var i, arr = construct.getScope(); + if (arr.length > 0) { + obj.scope = []; + for (i = 0; i < arr.length; i += 1) { + obj.scope.push(that.getTopicReference(arr[i])); + } + } + }; + + this.exportParent = function (obj, construct) { + var parent = construct.getParent(); + that.exportIdentifiers(obj, parent.getItemIdentifiers(), 'parent'); + }; + + this.exportTopicMap = function (m) { + var arr, i, len, obj; + obj = { + topics: [], + associations: [] + }; + arr = m.getTopics(); + len = arr.length; + for (i = 0; i < len; i += 1) { + obj.topics.push(that.exportTopic(arr[i])); + } + arr = m.getAssociations(); + len = arr.length; + for (i = 0; i < len; i += 1) { + obj.associations.push(that.exportAssociation(arr[i])); + } + return obj; + }; + + this.exportTopic = function (t) { + var arr, i, len, obj; + obj = {}; + that.exportIdentifiers(obj, t.getSubjectIdentifiers(), 'subject_identifiers'); + that.exportIdentifiers(obj, t.getSubjectLocators(), 'subject_locators'); + that.exportIdentifiers(obj, t.getItemIdentifiers(), 'item_identifiers'); + arr = t.getNames(); + len = arr.length; + if (len > 0) { + obj.names = []; + for (i = 0; i < len; i += 1) { + obj.names.push(that.exportName(arr[i])); + } + } + arr = t.getOccurrences(); + len = arr.length; + if (len > 0) { + obj.occurrences = []; + for (i = 0; i < len; i += 1) { + obj.occurrences.push(that.exportOccurrence(arr[i])); + } + } + arr = t.getTypes(); + len = arr.length; + if (len > 0) { + obj.instance_of = []; + for (i = 0; i < len; i += 1) { + obj.instance_of.push(that.getTopicReference(arr[i])); + } + } + return obj; + }; + + this.exportName = function (name) { + var arr, i, len, obj, tmp; + obj = { + 'value': name.getValue() + }; + tmp = name.getType(); + if (tmp) { + obj.type = that.getTopicReference(tmp); + } + tmp = name.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + + that.exportIdentifiers(obj, name.getItemIdentifiers(), 'item_identifiers'); + that.exportScope(obj, name); + arr = name.getVariants(); + len = arr.length; + if (len > 0) { + obj.variants = []; + for (i = 0; i < len; i += 1) { + obj.variants.push(that.exportVariant(arr[i])); + } + } + return obj; + }; + + this.exportVariant = function (variant) { + var obj, tmp; + obj = { + 'value': variant.getValue() + }; + tmp = variant.getDatatype(); + if (tmp && tmp !== variant.getTopicMap().createLocator(that.defaultDatatype)) { + obj.datatype = referenceToCURIEorURI(tmp.getReference()); + } + tmp = variant.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + + that.exportIdentifiers(obj, variant.getItemIdentifiers(), 'item_identifiers'); + that.exportScope(obj, variant); + }; + + this.exportOccurrence = function (occ) { + var obj, tmp; + obj = { + value: occ.getValue(), + type: that.getTopicReference(occ.getType()) + }; + tmp = occ.getDatatype(); + if (tmp && tmp !== occ.getTopicMap().createLocator(that.defaultDatatype)) { + obj.datatype = referenceToCURIEorURI(tmp.getReference()); + } + tmp = occ.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + + that.exportIdentifiers(obj, occ.getItemIdentifiers(), 'item_identifiers'); + that.exportScope(obj, occ); + return obj; + }; + + this.exportAssociation = function (association) { + var arr, i, obj, tmp; + obj = { + type: that.getTopicReference(association.getType()), + roles: [] + }; + tmp = association.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + that.exportIdentifiers(obj, association.getItemIdentifiers(), 'item_identifiers'); + that.exportScope(obj, association); + arr = association.getRoles(); + for (i = 0; i < arr.length; i += 1) { + obj.roles.push(that.exportRole(arr[i])); + } + return obj; + }; + + this.exportRole = function (role) { + var obj, tmp; + obj = { + player: that.getTopicReference(role.getPlayer()), + type: that.getTopicReference(role.getType()) + }; + tmp = role.getReifier(); + if (tmp) { + obj.reifier = that.getTopicReference(tmp); + } + that.exportIdentifiers(obj, role.getItemIdentifiers(), 'item_identifiers'); + return obj; + }; + }; + + /** + * Returns a JTM JavaScript object representation of construct. + * @param {Construct} construct The topic map construct to be exported. Can be + * TopicMap, Topic, Occurrence, Name, Variant, Association or Role. + * @param {boolean} [includeParent] If true the optional JTM element 'parent' is + * included. Refers to the parent via its item identifier. If undefined or false, + * the parent element is dropped. + */ + WriterImpl.prototype.toObject = function (construct, includeParent) { + var obj, tm, keys, i; + includeParent = includeParent || false; + tm = construct.getTopicMap(); + + if (construct.isTopicMap()) { + obj = this.exportTopicMap(construct); + obj.item_type = 'topicmap'; + } else if (construct.isRole()) { + obj = this.exportRole(construct); + obj.item_type = 'role'; + } else if (construct.isTopic()) { + obj = this.exportTopic(construct); + obj.item_type = 'topic'; + } else if (construct.isAssociation()) { + obj = this.exportAssociation(construct); + obj.item_type = 'association'; + } else if (construct.isOccurrence()) { + obj = this.exportOccurrence(construct); + obj.item_type = 'occurrence'; + } else if (construct.isName()) { + obj = this.exportName(construct); + obj.item_type = 'name'; + } else if (construct.isVariant()) { + obj = this.exportVariant(construct); + obj.item_type = 'variant'; + } + obj.version = this.version; + if (this.version === '1.1' && this.prefixes) { + if (this.prefixes.size()) { + keys = this.prefixes.keys(); + obj.prefixes = {}; + for (i = 0; i < keys.length; i += 1) { + obj.prefixes[keys[i]] = this.prefixes.get(keys[i]); + } + } + } + if (!construct.isTopic() && construct.getReifier()) { + obj.reifier = this.getTopicReference(construct.getReifier()); + } + if (includeParent && !construct.isTopicMap()) { + this.exportParent(obj, construct); + } + return obj; + }; + + return { + Reader: ReaderImpl, + Writer: WriterImpl + }; +}()); From lgiessmann at common-lisp.net Mon Sep 26 09:12:05 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 02:12:05 -0700 Subject: [isidorus-cvs] r973 - in branches/gdl-frontend/src: anaToMia xml/xtm Message-ID: Author: lgiessmann Date: Mon Sep 26 02:12:04 2011 New Revision: 973 Log: xtm-exporter: fixed a bug when exporting associations with less or more than two roles; gdl-frontend: fixed the schema files for the gdl-frontend Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm branches/gdl-frontend/src/xml/xtm/exporter.lisp Modified: branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm ============================================================================== --- branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Mon Sep 26 01:33:09 2011 (r972) +++ branches/gdl-frontend/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Mon Sep 26 02:12:04 2011 (r973) @@ -12,19 +12,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -36,7 +60,7 @@ - + @@ -54,13 +78,37 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -72,13 +120,13 @@ - + - + @@ -90,13 +138,13 @@ - + - + @@ -108,13 +156,37 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -126,13 +198,13 @@ - + - + @@ -144,13 +216,13 @@ - + - + @@ -162,7 +234,7 @@ - + @@ -186,7 +258,31 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -198,13 +294,13 @@ - + - + @@ -216,7 +312,7 @@ - + @@ -234,13 +330,37 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -252,13 +372,13 @@ - + - + @@ -270,13 +390,13 @@ - + - + @@ -288,13 +408,37 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -306,13 +450,13 @@ - + - + @@ -324,13 +468,13 @@ - + - + @@ -342,7 +486,7 @@ - + @@ -366,7 +510,7 @@ - + @@ -408,19 +552,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -432,13 +624,13 @@ - + - + @@ -450,7 +642,7 @@ - + @@ -468,13 +660,37 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -486,13 +702,13 @@ - + - + @@ -504,13 +720,13 @@ - + - + @@ -522,13 +738,37 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -540,13 +780,13 @@ - + - + @@ -558,7 +798,7 @@ - + @@ -576,13 +816,37 @@ - + + + + + + + + + + + + + - + + + + + + + + + + + + + @@ -594,13 +858,13 @@ - + - + @@ -612,13 +876,13 @@ - + - + @@ -630,13 +894,37 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -648,13 +936,13 @@ - + - + @@ -666,7 +954,7 @@ - + @@ -684,7 +972,7 @@ - + @@ -702,13 +990,37 @@ - + + + + + + + + + + + + + - + + + + + + + + + + + + + @@ -720,13 +1032,13 @@ - + - + @@ -738,7 +1050,7 @@ - + @@ -756,7 +1068,7 @@ - + @@ -774,7 +1086,7 @@ - + @@ -792,7 +1104,7 @@ - + @@ -804,19 +1116,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -828,13 +1164,13 @@ - + - + @@ -846,13 +1182,37 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -864,13 +1224,13 @@ - + - + @@ -882,13 +1242,13 @@ - + - + @@ -900,7 +1260,7 @@ - + @@ -924,7 +1284,7 @@ - + @@ -942,7 +1302,7 @@ - + @@ -960,7 +1320,7 @@ - + @@ -978,7 +1338,31 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1038,6 +1422,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -1092,6 +1500,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -1146,6 +1578,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -1200,6 +1656,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -1254,6 +1734,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -1344,6 +1848,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -1488,6 +2016,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -1542,6 +2094,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -3499,6 +4075,7 @@ + @@ -3644,7 +4221,6 @@ - @@ -3720,7 +4296,6 @@ - @@ -3797,6 +4372,7 @@ + @@ -4601,29 +5177,29 @@ - + - + - + - + - + - + @@ -4657,14 +5233,14 @@ - + - + @@ -4707,7 +5283,7 @@ - + @@ -4732,14 +5308,14 @@ - + - + @@ -4752,10 +5328,10 @@ - + - + @@ -4777,7 +5353,7 @@ - + @@ -4802,7 +5378,7 @@ - + @@ -4833,7 +5409,7 @@ - + default @@ -4851,7 +5427,7 @@ - + @@ -4876,14 +5452,14 @@ - + - + @@ -4926,7 +5502,7 @@ - + @@ -4951,14 +5527,14 @@ - + - + @@ -4971,7 +5547,7 @@ - + @@ -5008,7 +5584,7 @@ - + default @@ -5020,7 +5596,7 @@ - + @@ -5045,14 +5621,14 @@ - + - + @@ -5095,7 +5671,7 @@ - + @@ -5120,14 +5696,14 @@ - + - + @@ -5140,7 +5716,7 @@ - + @@ -5165,7 +5741,7 @@ - + text @@ -5183,7 +5759,7 @@ - + @@ -5208,17 +5784,17 @@ - + - + - + @@ -5246,7 +5822,7 @@ - + @@ -5271,7 +5847,7 @@ - + @@ -5302,7 +5878,7 @@ - + @@ -5327,7 +5903,7 @@ - + @@ -5364,14 +5940,14 @@ - + - + @@ -5414,7 +5990,7 @@ - + @@ -5439,14 +6015,14 @@ - + - + @@ -5459,7 +6035,7 @@ - + @@ -5484,7 +6060,7 @@ - + text @@ -5496,7 +6072,7 @@ - + @@ -5521,14 +6097,14 @@ - + - + @@ -5559,7 +6135,7 @@ - + @@ -5584,10 +6160,10 @@ - + - + @@ -5621,14 +6197,14 @@ - + - + @@ -5671,7 +6247,7 @@ - + @@ -5696,14 +6272,14 @@ - + - + @@ -5716,7 +6292,7 @@ - + @@ -5741,7 +6317,7 @@ - + default @@ -5765,7 +6341,7 @@ - + @@ -5790,17 +6366,17 @@ - + - + - + @@ -5828,7 +6404,7 @@ - + Modified: branches/gdl-frontend/src/xml/xtm/exporter.lisp ============================================================================== --- branches/gdl-frontend/src/xml/xtm/exporter.lisp Mon Sep 26 01:33:09 2011 (r972) +++ branches/gdl-frontend/src/xml/xtm/exporter.lisp Mon Sep 26 02:12:04 2011 (r973) @@ -20,23 +20,29 @@ (identified-construct (elephant:get-instance-by-value 'PersistentIdC 'uri *type-psi*)))) (loop for item in (d:get-all-associations revision) - when (and (= (length (roles item :revision revision)) 2) - (not (and (or (eq instance-topic - (instance-of (first (roles item - :revision revision)) - :revision revision)) - (eq instance-topic - (instance-of (second (roles item - :revision revision)) - :revision revision))) - (or (eq type-topic - (instance-of (first (roles item - :revision revision)) - :revision revision)) - (eq type-topic - (instance-of (second (roles item - :revision revision)) - :revision revision)))))) + when (let ((assoc-roles (length (roles item :revision revision)))) + (or (/= assoc-roles 2) + (and (= assoc-roles 2) + (not (and (or (eq instance-topic + (instance-of + (first (roles item + :revision revision)) + :revision revision)) + (eq instance-topic + (instance-of + (second (roles item + :revision revision)) + :revision revision))) + (or (eq type-topic + (instance-of + (first (roles item + :revision revision)) + :revision revision)) + (eq type-topic + (instance-of + (second (roles item + :revision revision)) + :revision revision)))))))) collect item))) From lgiessmann at common-lisp.net Mon Sep 26 09:39:42 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 02:39:42 -0700 Subject: [isidorus-cvs] r974 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base text Message-ID: Author: lgiessmann Date: Mon Sep 26 02:39:41 2011 New Revision: 974 Log: gdl-frontend: Widgets: the options of a GdlListBox are sorted now Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java Mon Sep 26 02:12:04 2011 (r973) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/Utils.java Mon Sep 26 02:39:41 2011 (r974) @@ -1,6 +1,8 @@ package us.isidor.gdl.anaToMia.Widgets.base; import java.util.ArrayList; +import java.util.Arrays; + import com.google.gwt.core.client.JavaScriptObject; import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Association; @@ -12,6 +14,21 @@ public class Utils { + // sorts a passed ArrayList + @SuppressWarnings("unchecked") + public static ArrayList sort(ArrayList arrayList){ + if(arrayList == null) return new ArrayList(); + + Object[] array = arrayList.toArray(); + Arrays.sort(array); + + ArrayList result = new ArrayList(); + for (Object item : array) result.add((T)item); + + return result; + } + + // returns an array with two string objects. // * the first element is the uri prefix until the last "/" or "#" character // * the second element is the sufix Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java ============================================================================== --- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java Mon Sep 26 02:12:04 2011 (r973) +++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java Mon Sep 26 02:39:41 2011 (r974) @@ -12,6 +12,7 @@ import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject; import us.isidor.gdl.anaToMia.Widgets.base.PSIs; import us.isidor.gdl.anaToMia.Widgets.base.TmHelper; +import us.isidor.gdl.anaToMia.Widgets.base.Utils; import us.isidor.gdl.anaToMia.Widgets.environment.ActiveStyleHandler; import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException; import us.isidor.gdl.anaToMia.Widgets.environment.FocusStyleHandler; @@ -70,6 +71,7 @@ } ListBox lb = this.createNewListBox(); + options = Utils.sort(options); for(String item : options) lb.addItem(item); for(int i = 0; i != lb.getItemCount(); ++i){ From lgiessmann at common-lisp.net Mon Sep 26 09:43:49 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 02:43:49 -0700 Subject: [isidorus-cvs] r975 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Mon Sep 26 02:43:49 2011 New Revision: 975 Log: gdl-frontend: updatingall javascript files for the gdl-frontend Deleted: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/2C5635514A330ECC9280DFF7CB1F5DBC.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/794025F1DCE6E98D6CC7642FDCBE3F09.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/8DAD90B7D3461FC35A7531034F266D4A.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/8FBF5C85659F486CCC700B2CA3F2EA78.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/9A0BAD98DB119038F84C421B8F696F02.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/F37C8A5030E690FCA40137B5BD50498A.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Mon Sep 26 09:48:59 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 02:48:59 -0700 Subject: [isidorus-cvs] r976 - in branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets: . gwt gwt/clean gwt/clean/images Message-ID: Author: lgiessmann Date: Mon Sep 26 02:48:59 2011 New Revision: 976 Log: gdl-frontend: updated all hosted javascript files for the gdl-frontend Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/14CD8B5AEEBA08A9924DB4F2D259444E.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1FBCFA2B16E083419DC22ADFC6EE3C47.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/3BFF09C076E218EF68C7F6FF75CC5B8A.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/467C3B49DDE1EC44F81C93AA87425C1C.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/49CB40FF34B545B611623F33CE0C73BB.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D67155A4B4320649EC6CC5E58057DE2F.cache.html branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/hosted.html Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/14CD8B5AEEBA08A9924DB4F2D259444E.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/14CD8B5AEEBA08A9924DB4F2D259444E.cache.html Mon Sep 26 02:48:59 2011 (r976) @@ -0,0 +1,1762 @@ + + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1FBCFA2B16E083419DC22ADFC6EE3C47.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/1FBCFA2B16E083419DC22ADFC6EE3C47.cache.html Mon Sep 26 02:48:59 2011 (r976) @@ -0,0 +1,1738 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/3BFF09C076E218EF68C7F6FF75CC5B8A.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/3BFF09C076E218EF68C7F6FF75CC5B8A.cache.html Mon Sep 26 02:48:59 2011 (r976) @@ -0,0 +1,1776 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/467C3B49DDE1EC44F81C93AA87425C1C.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/467C3B49DDE1EC44F81C93AA87425C1C.cache.html Mon Sep 26 02:48:59 2011 (r976) @@ -0,0 +1,1794 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/49CB40FF34B545B611623F33CE0C73BB.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/49CB40FF34B545B611623F33CE0C73BB.cache.html Mon Sep 26 02:48:59 2011 (r976) @@ -0,0 +1,1749 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D67155A4B4320649EC6CC5E58057DE2F.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/D67155A4B4320649EC6CC5E58057DE2F.cache.html Mon Sep 26 02:48:59 2011 (r976) @@ -0,0 +1,1747 @@ + + + + + + + + + + + \ No newline at end of file Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/gdl-frontend/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Mon Sep 26 02:48:59 2011 (r976) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='14CD8B5AEEBA08A9924DB4F2D259444E',Pb='1FBCFA2B16E083419DC22ADFC6EE3C47',Qb='3BFF09C076E218EF68C7F6FF75CC5B8A',Rb='467C3B49DDE1EC44F81C93AA87425C1C',Sb='49CB40FF34B545B611623F33CE0C73BB',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + From lgiessmann at common-lisp.net Mon Sep 26 11:56:27 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 04:56:27 -0700 Subject: [isidorus-cvs] r977 - in trunk: playground/GWT-Examples src src/TM-SPARQL src/anaToMia src/json/JTM src/model src/rest_interface src/xml/xtm Message-ID: Author: lgiessmann Date: Mon Sep 26 04:56:25 2011 New Revision: 977 Log: trunk: merged branches/gdl-frontend with trunk; fixed all conflicts Added: trunk/playground/GWT-Examples/ - copied from r976, branches/gdl-frontend/playground/GWT-Examples/ trunk/src/anaToMia/ - copied from r976, branches/gdl-frontend/src/anaToMia/ trunk/src/json/JTM/jtm_delete_interface.lisp - copied unchanged from r976, branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp trunk/src/rest_interface/set-up-gdl-interface.lisp - copied unchanged from r976, branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp Modified: trunk/src/TM-SPARQL/sparql_parser.lisp trunk/src/isidorus.asd trunk/src/json/JTM/jtm_aliases.lisp trunk/src/json/JTM/jtm_importer.lisp trunk/src/json/JTM/jtm_tools.lisp trunk/src/model/changes.lisp trunk/src/rest_interface/rest-interface.lisp trunk/src/rest_interface/set-up-json-interface.lisp trunk/src/xml/xtm/exporter.lisp Modified: trunk/src/TM-SPARQL/sparql_parser.lisp ============================================================================== --- trunk/src/TM-SPARQL/sparql_parser.lisp Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/TM-SPARQL/sparql_parser.lisp Mon Sep 26 04:56:25 2011 (r977) @@ -427,7 +427,7 @@ (progn (add-variable construct "*") (parse-variables construct (string-after trimmed-str "*"))) (let ((result (parse-variable-name construct trimmed-str))) - (add-variable construct (getf result :value)) + (add-variable construct (trim-whitespace-right (getf result :value))) (parse-variables construct (getf result :next-query)))))))) Modified: trunk/src/isidorus.asd ============================================================================== --- trunk/src/isidorus.asd Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/isidorus.asd Mon Sep 26 04:56:25 2011 (r977) @@ -113,6 +113,9 @@ :depends-on ("rest-interface")) (:file "admin-interface" :depends-on ("rest-interface")) + (:file "set-up-gdl-interface" + :depends-on ("rest-interface" + "set-up-json-interface")) (:file "read" :depends-on ("rest-interface"))) :depends-on ("model" "atom" "xml" "TM-SPARQL" @@ -210,6 +213,8 @@ :depends-on ("jtm_tools")) (:file "jtm_exporter" :depends-on ("jtm_tools")) + (:file "jtm_delete_interface" + :depends-on ("jtm_tools" "jtm_importer")) (:file "jtm_aliases" :depends-on ("jtm_tools" "jtm_importer" "jtm_exporter"))))) :depends-on ("base-tools" "model" "xml" "TM-SPARQL")) Modified: trunk/src/json/JTM/jtm_aliases.lisp ============================================================================== --- trunk/src/json/JTM/jtm_aliases.lisp Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/json/JTM/jtm_aliases.lisp Mon Sep 26 04:56:25 2011 (r977) @@ -27,10 +27,17 @@ :constants :exceptions :jtm) (:export :import-from-jtm :import-construct-from-jtm-string + :import-construct-from-jtm-decoded-list :item_type-topicmap :item_type-topic :item_type-name :item_type-variant :item_type-occurrence :item_type-association - :item_type-role)) \ No newline at end of file + :item_type-role)) + + +(defpackage :jtm-delete-interface + (:use :cl :json :datamodel :base-tools :isidorus-threading + :constants :exceptions :jtm) + (:export :mark-as-deleted-from-jtm)) \ No newline at end of file Copied: trunk/src/json/JTM/jtm_delete_interface.lisp (from r976, branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/json/JTM/jtm_delete_interface.lisp Mon Sep 26 04:56:25 2011 (r977, copy of r976, branches/gdl-frontend/src/json/JTM/jtm_delete_interface.lisp) @@ -0,0 +1,393 @@ +;;+----------------------------------------------------------------------------- +;;+ Isidorus +;;+ (c) 2008-2010 Marc Kuester, Christoph Ludwig, Lukas Georgieff +;;+ +;;+ Isidorus is freely distributable under the LLGPL license. +;;+ You can find a detailed description in trunk/docs/LLGPL-LICENSE.txt and +;;+ trunk/docs/LGPL-LICENSE.txt. +;;+----------------------------------------------------------------------------- + +(defpackage :jtm-delete-interface + (:use :cl :datamodel :jtm) + (:export :mark-as-deleted-from-jtm)) + +(in-package :jtm-delete-interface) + +(defun mark-as-deleted-from-jtm (jtm-data &key (revision *TM-REVISION*)) + "Marks an object that is specified by the given JSON data as deleted." + (declare (string jtm-data) (integer revision)) + (let ((json-list (json:decode-json-from-string jtm-data))) + (let ((type nil) + (parent nil) + (parent-of-parent nil) + (delete nil)) + (loop for json-entry in json-list + do (let ((st (car json-entry)) + (nd (cdr json-entry))) + (cond ((eql st :type) + (setf type nd)) + ((eql st :delete) + (setf delete nd)) + ((eql st :parent) + (setf parent nd)) + ((eql st :parent-of-parent) + (setf parent-of-parent nd))))) + (cond ((string= type "Topic") + (delete-topic-from-jtm delete :revision revision)) + ((string= type "PSI") + (delete-identifier-from-jtm delete 'd:PersistentIdC + #'d:delete-psi :revision revision)) + ((string= type "ItemIdentity") + (delete-identifier-from-jtm delete 'd:ItemIdentifierC + #'d:delete-item-identifier + :revision revision)) + ((string= type "SubjectLocator") + (delete-identifier-from-jtm delete 'd:SubjectLocatorC + #'d:delete-locator :revision revision)) + ((string= type "Name") + (delete-name-from-jtm delete :revision revision)) + ((string= type "Variant") + (delete-variant-from-jtm delete :revision revision)) + ((string= type "Occurrence") + (delete-occurrence-from-jtm delete :revision revision)) + ((string= type "Association") + (delete-association-from-jtm delete :revision revision)) + ((string= type "Role") + (delete-role-from-jtm delete :revision revision)) + (t + (error "Type \"~a\" is not defined" type)))))) + + +(defun delete-role-from-jtm (jtm-decoded-list + &key (revision *TM-REVISION*)) + "Deletes the passed role object and returns t otherwise this + function returns nil." + (declare (list jtm-decoded-list) (integer revision)) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (type + (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs)))) + (parent + (let* ((curies (jtm::get-item :PARENT jtm-decoded-list)) + (parents (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (when parents + (first parents)))) + (player-top + (let ((curie (jtm::get-item :PLAYER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs))))) + (let ((role-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (parent + (let ((found-roles + (tools:remove-null + (map 'list (lambda(role) + (when (d::equivalent-construct + role :start-revision revision + :player player-top + :instance-of type) + role)) + (roles parent :revision revision))))) + (when found-roles + (first found-roles)))) + (t + (error "when deleting a role, there must be an item-identifier, reifier or parent set!"))))) + (when role-to-delete + (delete-role (parent role-to-delete :revision revision) + role-to-delete :revision revision) + role-to-delete)))) + + + + +(defun delete-association-from-jtm (jtm-decoded-list &key + (revision *TM-REVISION*)) + "Deletes the passed association object and returns t otherwise this + function returns nil." + (declare (list jtm-decoded-list) (integer revision)) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (scope + (let ((curies (jtm::get-item :SCOPE jtm-decoded-list))) + (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (type + (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs)))) + (roles + (map 'list (lambda(jtm-role) + (jtm::make-plist-of-jtm-role + jtm-role :revision revision :prefixes prefs)) + (jtm::get-item :ROLES jtm-decoded-list)))) + (let ((assoc-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (t + (let ((found-assocs + (tools:remove-null + (map 'list (lambda(assoc) + (d::equivalent-construct + assoc :start-revision revision + :roles roles :instance-of type + :themes scope)) + (get-all-associations revision))))) + (when found-assocs + (first found-assocs))))))) + (when assoc-to-delete + (mark-as-deleted assoc-to-delete :revision revision) + assoc-to-delete)))) + + +(defun delete-variant-from-jtm (jtm-decoded-list + &key (revision *TM-REVISION*)) + "Deletes the passed variant from the given name and returns t if the + operation succeeded." + (declare (list jtm-decoded-list) (integer revision)) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (value (jtm::get-item :VALUE jtm-decoded-list)) + (datatype (jtm::get-item :DATATYPE jtm-decoded-list)) + (scope + (let ((curies (jtm::get-item :SCOPE jtm-decoded-list))) + (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (parent + (let* ((curies (jtm::get-item :PARENT jtm-decoded-list)) + (parents (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (when parents + (first parents)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs))))) + (let ((var-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (parent + (let ((found-vars + (tools:remove-null + (map 'list (lambda(var) + (when (d::equivalent-construct + var :start-revision revision + :charvalue value :themes scope + :datatype datatype) + var)) + (variants parent :revision revision))))) + (when found-vars + (first found-vars)))) + (t + (error "when deleting a variant, there must be an item-identifier, reifier or parent set!"))))) + (when var-to-delete + (delete-variant (parent var-to-delete :revision revision) + var-to-delete :revision revision) + var-to-delete)))) + + +(defun delete-occurrence-from-jtm (jtm-decoded-list + &key (revision *TM-REVISION*)) + "Deletes the passed occurrence from the given topic and returns t if the + operation succeeded." + (declare (list jtm-decoded-list) (integer revision)) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (value (jtm::get-item :VALUE jtm-decoded-list)) + (datatype + (let ((curie (jtm::get-item :DATATYPE jtm-decoded-list))) + (cond ((null curie) + constants:*xml-string*) + ((and (tools:string-starts-with curie "[") + (tools:string-ends-with curie "]")) + (jtm::compute-uri-from-jtm-identifier curie prefs)) + (t + curie)))) + (type + (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs)))) + (scope + (let ((curies (jtm::get-item :SCOPE jtm-decoded-list))) + (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (parent + (let* ((curies (jtm::get-item :PARENT jtm-decoded-list)) + (parents (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (when parents + (first parents)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs))))) + (let ((occ-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (parent + (let ((found-occs + (tools:remove-null + (map 'list (lambda(occ) + (when (d::equivalent-construct + occ :start-revision revision + :charvalue value :themes scope + :instance-of type :datatype datatype) + occ)) + (occurrences parent :revision revision))))) + (when found-occs + (first found-occs)))) + (t + (error "when deleting an occurrence, there must be an item-identifier, reifier or parent set!"))))) + (when occ-to-delete + (delete-occurrence (parent occ-to-delete :revision revision) + occ-to-delete :revision revision) + occ-to-delete)))) + + +(defun delete-name-from-jtm (jtm-decoded-list + &key (revision *TM-REVISION*)) + (declare (list jtm-decoded-list) (integer revision)) + (let* ((prefs (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ii + (let ((curies (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list))) + (when curies + (jtm::compute-uri-from-jtm-identifier (first curies) prefs)))) + (value (jtm::get-item :VALUE jtm-decoded-list)) + (type + (let ((curie (jtm::get-item :TYPE jtm-decoded-list))) + (if curie + (jtm::get-item-from-jtm-reference curie :revision revision + :prefixes prefs) + (get-item-by-psi constants:*topic-name-psi* + :revision revision :error-if-nil t)))) + (scope + (let ((curies (jtm::get-item :SCOPE jtm-decoded-list))) + (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (parent + (let* ((curies (jtm::get-item :PARENT jtm-decoded-list)) + (parents (jtm::get-items-from-jtm-references + curies :revision revision :prefixes prefs))) + (when parents + (first parents)))) + (reifier + (let ((curie (jtm::get-item :REIFIER jtm-decoded-list))) + (when curie + (jtm::get-item-from-jtm-reference + curie :revision revision :prefixes prefs))))) + (let ((name-to-delete + (cond (ii + (identified-construct ii :revision revision)) + (reifier + (reified-construct reifier :revision revision)) + (parent + (let ((found-names + (tools:remove-null + (map 'list (lambda(name) + (when (d::equivalent-construct + name :start-revision revision + :charvalue value :themes scope + :instance-of type) + name)) + (names parent :revision revision))))) + (when found-names + (first found-names)))) + (t + (error "when deleting a name, there must be an item-identifier, reifier or parent set!"))))) + (when name-to-delete + (delete-name (parent name-to-delete :revision revision) + name-to-delete :revision revision) + name-to-delete)))) + + +(defun delete-identifier-from-json (uri class delete-function + &key (revision *TM-REVISION*)) + "Deleted the passed identifier of the construct it is associated with. + Returns t if there was deleted an item otherweise it returns nil." + (declare (string uri) (integer revision) (symbol class)) + (let ((id (elephant:get-instance-by-value + class 'd:uri uri))) + (if (and id (typep id class)) + (progn + (apply delete-function + (list (d:identified-construct id :revision revision) + id :revision revision)) + id) + nil))) + + +(defun delete-topic-from-jtm (jtm-decoded-list &key (revision *TM-REVISION*)) + "Searches for a topic corresponding to the given identifiers. + Returns t if there was deleted an item otherweise it returns nil." + (declare (list jtm-decoded-list) (integer revision)) + (let* ((prefs + (jtm::make-prefix-list-from-jtm-list + (jtm::get-item :PREFIXES jtm-decoded-list))) + (ids (append + (jtm::get-item :SUBJECT--IDENTIFIERS jtm-decoded-list) + (jtm::get-item :ITEM--IDENTIFIERS jtm-decoded-list) + (jtm::get-item :SUBJECT--LOCATORS jtm-decoded-list))) + (uri (if (null ids) + (error (make-condition 'exceptions::JTM-error :message (format nil "From merge-topic-from-jtm-list(): the passed topic has to own at least one identifier: ~a" jtm-decoded-list))) + (jtm::compute-uri-from-jtm-identifier (first ids) prefs)))) + (let ((top-to-delete (get-item-by-any-id uri :revision revision))) + (when top-to-delete + (mark-as-deleted top-to-delete :source-locator uri :revision revision) + top-to-delete)))) + + +(defun delete-identifier-from-jtm (uri class delete-function + &key (revision *TM-REVISION*)) + "Deleted the passed identifier of the construct it is associated with. + Returns t if there was deleted an item otherweise it returns nil." + (declare (string uri) (integer revision) (symbol class)) + (let ((id (elephant:get-instance-by-value + class 'd:uri uri))) + (when (and id (typep id class)) + (apply delete-function + (list (d:identified-construct id :revision revision) + id :revision revision))))) \ No newline at end of file Modified: trunk/src/json/JTM/jtm_importer.lisp ============================================================================== --- trunk/src/json/JTM/jtm_importer.lisp Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/json/JTM/jtm_importer.lisp Mon Sep 26 04:56:25 2011 (r977) @@ -29,7 +29,8 @@ (defun import-construct-from-jtm-string (jtm-string &key (revision *TM-REVISION*) - (jtm-format :1.1) tm-id) + (jtm-format :1.1) tm-id + (create-fragments nil)) "Imports the passed jtm-string. Note tm-id needs not to be declared, but if the imported construct is a topicmap and it has no item-identifiers defined, a JTM-error @@ -37,32 +38,52 @@ (declare (String jtm-string) (type (or Null String) tm-id) (Integer revision) - (Keyword jtm-format)) - (let* ((jtm-list (json:decode-json-from-string jtm-string)) - (version (get-item :VERSION jtm-list)) + (Keyword jtm-format) + (Boolean create-fragments)) + (let* ((jtm-list (json:decode-json-from-string jtm-string))) + (import-construct-from-jtm-decoded-list + jtm-list :revision revision :jtm-format jtm-format + :tm-id tm-id :create-fragments create-fragments))) + + +(defun import-construct-from-jtm-decoded-list (jtm-list &key + (revision *TM-REVISION*) + (jtm-format :1.1) tm-id + (create-fragments nil)) + "Imports the passed jtm-decoded-list. + Note tm-id needs not to be declared, but if the imported construct + is a topicmap and it has no item-identifiers defined, a JTM-error + is thrown." + (declare (List jtm-list) + (Integer revision) + (Keyword jtm-format) + (type (or Null String) tm-id) + (Boolean create-fragments)) + (let* ((version (get-item :VERSION jtm-list)) (item_type (get-item :ITEM--TYPE jtm-list)) (prefixes (make-prefix-list-from-jtm-list (get-item :PREFIXES jtm-list))) (format-1.1-p (eql jtm-format :1.1))) (cond ((eql jtm-format :1.0) (unless (string= version "1.0") - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): the member version must be set to \"1.0\" in JTM version 1.0, but is ~a" version)))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): the member version must be set to \"1.0\" in JTM version 1.0, but is ~a" version)))) (when prefixes - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): the member prefixes must not be set when using JTM version 1.0, but found: ~a" prefixes))))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): the member prefixes must not be set when using JTM version 1.0, but found: ~a" prefixes))))) ((eql jtm-format :1.1) (unless (string= version "1.1") - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): the member version must be set to \"1.1\" in JTM version 1.1, but is ~a" version))))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): the member version must be set to \"1.1\" in JTM version 1.1, but is ~a" version))))) (t - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): only JTM format \"1.0\" and \"1.1\" is supported, but found: \"~a\"" jtm-format))))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): only JTM format \"1.0\" and \"1.1\" is supported, but found: \"~a\"" jtm-format))))) (cond ((or (not item_type) (string= item_type item_type-topicmap)) (import-topic-map-from-jtm-list jtm-list tm-id :revision revision :prefixes prefixes - :instance-of-p format-1.1-p)) + :instance-of-p format-1.1-p :create-fragments create-fragments)) ((string= item_type item_type-topic) (import-topic-stub-from-jtm-list jtm-list nil :revision revision :prefixes prefixes) - (merge-topic-from-jtm-list jtm-list nil :instance-of-p format-1.1-p - :revision revision :prefixes prefixes)) + (merge-topic-from-jtm-list jtm-list :instance-of-p format-1.1-p + :revision revision :prefixes prefixes + :create-fragment create-fragments)) ((string= item_type item_type-name) (import-name-from-jtm-list jtm-list nil :revision revision :prefixes prefixes)) @@ -79,7 +100,7 @@ (import-association-from-jtm-list jtm-list nil :revision revision :prefixes prefixes)) (t - (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-string(): the member \"item_type\" must be set to one of ~a or nil, but found \"~a\". If \"item_type\" is not specified or nil the JTM-data is treated as a topicmap." item_type (list item_type-topicmap item_type-topic item_type-name item_type-variant item_type-occurrence item_type-role item_type-association)))))))) + (error (make-condition 'exceptions:JTM-error :message (format nil "From import-construct-from-jtm-decoded-list(): the member \"item_type\" must be set to one of ~a or nil, but found \"~a\". If \"item_type\" is not specified or nil the JTM-data is treated as a topicmap." item_type (list item_type-topicmap item_type-topic item_type-name item_type-variant item_type-occurrence item_type-role item_type-association)))))))) (defun import-from-jtm (jtm-path repository-path &key (tm-id (error "you must provide a stable identifier (PSI-style) for this TM")) (revision *TM-REVISION*) (jtm-format :1.1)) @@ -96,13 +117,14 @@ (defun import-topic-map-from-jtm-list (jtm-list tm-id &key (revision *TM-REVISION*) - prefixes (instance-of-p t)) + prefixes (instance-of-p t) + (create-fragments nil)) "Creates and returns a topic map corresponding to the tm-id or a given item-identifier in the jtm-list and returns the tm construct after all topics and associations contained in the jtm-list has been created." (declare (List jtm-list prefixes) (Integer revision) - (Boolean instance-of-p)) + (Boolean instance-of-p create-fragments)) (let* ((iis (let ((value (append (import-identifiers-from-jtm-strings (get-item :ITEM--IDENTIFIERS jtm-list) :prefixes prefixes) @@ -119,8 +141,9 @@ :item-identifiers iis))) (import-topic-stubs-from-jtm-lists j-tops (list tm) :revision revision :prefixes prefixes) - (merge-topics-from-jtm-lists j-tops (list tm) :instance-of-p instance-of-p - :revision revision :prefixes prefixes) + (merge-topics-from-jtm-lists j-tops :instance-of-p instance-of-p + :revision revision :prefixes prefixes + :create-fragments create-fragments) (import-associations-from-jtm-lists j-assocs (list tm) :revision revision :prefixes prefixes) tm)) @@ -324,30 +347,34 @@ assoc))) -(defun merge-topics-from-jtm-lists (jtm-lists parents &key (instance-of-p t) - (revision *TM-REVISION*) prefixes) +(defun merge-topics-from-jtm-lists (jtm-lists &key (instance-of-p t) + (revision *TM-REVISION*) prefixes + (create-fragments nil)) "Creates and returns a list of topics." - (declare (List jtm-lists parents prefixes) - (Boolean instance-of-p) + (declare (List jtm-lists prefixes) + (Boolean instance-of-p create-fragments) (Integer revision)) (map 'list #'(lambda(jtm-list) (merge-topic-from-jtm-list - jtm-list parents :revision revision :prefixes prefixes - :instance-of-p instance-of-p)) + jtm-list :revision revision :prefixes prefixes + :instance-of-p instance-of-p + :create-fragment create-fragments)) jtm-lists)) -(defun merge-topic-from-jtm-list(jtm-list parents &key (instance-of-p t) - (revision *TM-REVISION*) prefixes) +(defun merge-topic-from-jtm-list(jtm-list &key (instance-of-p t) + (revision *TM-REVISION*) prefixes + (create-fragment nil)) "Creates and returns a topic object from the passed jtm list generated by json:decode-json-from-string. Note that the merged topics are not added explicitly to the parent topic maps, it is only needed for the instance-of-associations - topics are added in the function import-topic-stubs-from-jtm-lists to their topic map elements." - (declare (List jtm-list prefixes parents) + (declare (List jtm-list prefixes) (Boolean instance-of-p) - (Integer revision)) + (Integer revision) + (Boolean create-fragment)) (let* ((ids (append (get-item :ITEM--IDENTIFIERS jtm-list) (get-item :SUBJECT--IDENTIFIERS jtm-list) (get-item :SUBJECT--LOCATORS jtm-list))) @@ -373,11 +400,29 @@ (when (and (not instance-of-p) instanceof) (error (make-condition 'JTM-error :message (format nil "From merge-topic-from-jtm-list(): the JTM-topic has an instance_of member set, but JTM version 1.0 does not allow an intance_of member within a topic object: ~a" jtm-list)))) (dolist (type-top instanceof) - (make-instance-of-association top type-top parents :revision revision)) + (make-instance-of-association + top type-top (in-topicmaps top :revision revision) + :revision revision)) (dolist (name top-names) (add-name top name :revision revision)) (dolist (occ top-occs) (add-occurrence top occ :revision revision)) + (when create-fragment + (let ((all-assocs + (remove-null (map 'list (lambda(role) + (parent role :revision revision)) + (player-in-roles top :revision revision))))) + (let ((all-tops + (remove-null + (loop for assoc in all-assocs + append (map 'list (lambda(role) + (d:player role :revision revision)) + (roles assoc :revision revision)))))) + (map nil (lambda(top) + (map nil #'elephant:drop-instance + (elephant:get-instances-by-value 'FragmentC 'topic top)) + (create-latest-fragment-of-topic top)) + (append all-tops (list top)))))) (format t "t") top)) @@ -438,7 +483,15 @@ (let* ((iis (import-identifiers-from-jtm-strings (get-item :ITEM--IDENTIFIERS jtm-list) :prefixes prefixes)) - (datatype (get-item :DATATYPE jtm-list)) + (datatype + (let ((curie (jtm::get-item :DATATYPE jtm-list))) + (cond ((null curie) + constants:*xml-string*) + ((and (tools:string-starts-with curie "[") + (tools:string-ends-with curie "]")) + (jtm::compute-uri-from-jtm-identifier curie prefixes)) + (t + curie)))) (scope (get-item :SCOPE jtm-list)) (type (get-item :TYPE jtm-list)) (value (get-item :VALUE jtm-list)) @@ -456,7 +509,7 @@ (error (make-condition 'JTM-error :message (format nil "From import-occurrence-from-jtm-list(): the JTM occurrence ~a must have a type set in its members." jtm-list)))) (make-construct 'OccurrenceC :start-revision revision :item-identifiers iis - :datatype (if datatype datatype *xml-string*) + :datatype datatype :charvalue value :themes (get-items-from-jtm-references scope :revision revision :prefixes prefixes) @@ -491,7 +544,15 @@ (let* ((iis (import-identifiers-from-jtm-strings (get-item :ITEM--IDENTIFIERS jtm-list) :prefixes prefixes)) - (datatype (get-item :DATATYPE jtm-list)) + (datatype + (let ((curie (jtm::get-item :DATATYPE jtm-list))) + (cond ((null curie) + constants:*xml-string*) + ((and (tools:string-starts-with curie "[") + (tools:string-ends-with curie "]")) + (jtm::compute-uri-from-jtm-identifier curie prefixes)) + (t + curie)))) (value (get-item :VALUE jtm-list)) (reifier (get-item :REIFIER jtm-list)) (parent-references (get-item :PARENT jtm-list)) Modified: trunk/src/json/JTM/jtm_tools.lisp ============================================================================== --- trunk/src/json/JTM/jtm_tools.lisp Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/json/JTM/jtm_tools.lisp Mon Sep 26 04:56:25 2011 (r977) @@ -11,6 +11,7 @@ (:use :cl :json :datamodel :base-tools :isidorus-threading :constants :exceptions) (:export :import-from-jtm + :import-construct-from-jtm-decoded-list :import-construct-from-jtm-string :export-as-jtm :export-as-jtm-string Modified: trunk/src/model/changes.lisp ============================================================================== --- trunk/src/model/changes.lisp Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/model/changes.lisp Mon Sep 26 04:56:25 2011 (r977) @@ -422,7 +422,7 @@ (defun create-latest-fragment-of-topic (topic-or-psi) "Returns the latest fragment of the passed topic-psi" - (declare (type (or TopicC String) topic-or-psi)) + (declare (type (or String TopicC) topic-or-psi)) (let ((topic (if (stringp topic-or-psi) (get-latest-topic-by-psi topic-or-psi) topic-or-psi))) Modified: trunk/src/rest_interface/rest-interface.lisp ============================================================================== --- trunk/src/rest_interface/rest-interface.lisp Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/rest_interface/rest-interface.lisp Mon Sep 26 04:56:25 2011 (r977) @@ -32,6 +32,7 @@ :start-json-engine :start-atom-engine :start-admin-server + :start-gdl-engine :shutdown-json-engine :shutdown-atom-engine :*admin-local-backup* @@ -43,6 +44,8 @@ :*remote-backup-remote-address* :*local-backup-remote-address* :*shutdown-remote-address* + :set-up-json-interface + :set-up-gdl-interface :*json-get-prefix* :*get-rdf-prefix* :*json-commit-url* @@ -61,9 +64,19 @@ :*xtm-commit-prefix* :*ready-to-die* :die-when-finished - :*sparql-url* :*use-http-authentication* - :*users*)) + :*users* + :*sparql-url* + :*gdl-get-fragment* + :*gdl-get-schema* + :*gdl-commit-fragment* + :*gdl-delete-fragment* + :*gdl-host-address-hash-object* + :*gdl-host-address-environment* + :*gdl-base-path* + :*gdl-host-file* + :*gdl-tm-id* + :*gdl-sparql*)) (in-package :rest-interface) @@ -84,6 +97,7 @@ (defvar *json-server-acceptor* nil) +(defvar *gdl-server-acceptor* nil) (defvar *atom-server-acceptor* nil) (defvar *admin-server-acceptor* nil) (defvar *admin-host-name* "127.0.0.1") @@ -115,6 +129,25 @@ (setf *admin-server-acceptor* nil)) +(defun start-gdl-engine (repository-path &key + (host-name "localhost") (port 8018)) + "Starts the Topic Maps engine with a given port and address, + so the engine can serve and consume gdl-fragments for the + gdl-frontend anaToMia." + (when *gdl-server-acceptor* + (error "The gdl-server is already running")) + (setf hunchentoot:*show-lisp-errors-p* t) ;for now + (setf hunchentoot:*hunchentoot-default-external-format* + (flex:make-external-format :utf-8 :eol-style :lf)) + (open-tm-store repository-path) + (set-up-gdl-interface) + (setf *gdl-server-acceptor* + (make-instance 'hunchentoot:acceptor :address host-name :port port)) + (setf hunchentoot:*lisp-errors-log-level* :info) + (setf hunchentoot:*message-log-pathname* "./gdl-hunchentoot-errors.log") + (hunchentoot:start *gdl-server-acceptor*)) + + (defun start-json-engine (repository-path &key (host-name "localhost") (port 8000)) "Start the Topic Maps Engine on a given port, assuming a given Copied: trunk/src/rest_interface/set-up-gdl-interface.lisp (from r976, branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/rest_interface/set-up-gdl-interface.lisp Mon Sep 26 04:56:25 2011 (r977, copy of r976, branches/gdl-frontend/src/rest_interface/set-up-gdl-interface.lisp) @@ -0,0 +1,250 @@ +;;+----------------------------------------------------------------------------- +;;+ Isidorus +;;+ (c) 2008-2010 Marc Kuester, Christoph Ludwig, Lukas Georgieff +;;+ +;;+ Isidorus is freely distributable under the LLGPL license. +;;+ You can find a detailed description in trunk/docs/LLGPL-LICENSE.txt and +;;+ trunk/docs/LGPL-LICENSE.txt. +;;+----------------------------------------------------------------------------- + +(in-package :rest-interface) + +(defparameter *gdl-get-fragment* "/gdl/fragment/(.+)$") +(defparameter *gdl-get-schema* "/gdl/schema/?$") +(defparameter *gdl-commit-fragment* "/gdl/commit/?") +(defparameter *gdl-delete-fragment* "/gdl/delete/?") +(defparameter *gdl-host-address-hash-object* "/hash-object") +(defparameter *gdl-host-address-environment* "/environment") +(defparameter *gdl-base-path* "anaToMia/hosted_files/") +(defparameter *gdl-host-file* (concat *gdl-base-path* "GDL_Widgets.html")) +(defparameter *gdl-tm-id* "http://textgrid.org/serviceregistry/gdl-frontend/gdl-tm") +(defparameter *gdl-sparql* "/gdl/tm-sparql/?$") + + +(defun set-up-gdl-interface (&key (get-fragment *gdl-get-fragment*) + (get-schema *gdl-get-schema*) + (commit-fragment *gdl-commit-fragment*) + (delete-fragment *gdl-delete-fragment*) + (gdl-sparql *gdl-sparql*) + (base-path *gdl-base-path*) + (host-address-hash-object *gdl-host-address-hash-object*) + (host-address-environment *gdl-host-address-environment*) + (host-file *gdl-host-file*)) + (declare (String get-fragment get-schema commit-fragment + delete-fragment host-address-hash-object + host-address-environment host-file)) + + ;(init-cache nil) + ;(format t "~%") + (init-fragments nil) + + ;; registers the http-code 500 for an internal server error to the standard + ;; return codes. so there won't be attached a hunchentoot default message, + ;; this is necessary to be able to send error messages in an individual way/syntax + ;; e.g. a json error-message. + (push hunchentoot:+http-internal-server-error+ hunchentoot:*approved-return-codes*) + + (init-hosted-files :host-address-hash-object host-address-hash-object + :host-address-environment host-address-environment + :host-file host-file :base-path base-path) + + (push + (create-regex-dispatcher get-fragment #'return-json-fragment-handler) + hunchentoot:*dispatch-table*) + + (push + (create-regex-dispatcher get-schema #'return-gdl-schema-handler) + hunchentoot:*dispatch-table*) + + (push + (create-regex-dispatcher commit-fragment #'commit-fragment-handler) + hunchentoot:*dispatch-table*) + + (push + (create-regex-dispatcher delete-fragment #'delete-handler) + hunchentoot:*dispatch-table*) + + (push + (create-regex-dispatcher gdl-sparql #'gdl-sparql-handler) + hunchentoot:*dispatch-table*)) + + +(defun init-hosted-files (&key (host-address-hash-object *gdl-host-address-hash-object*) + (host-address-environment *gdl-host-address-environment*) + (host-file *gdl-host-file*) + (base-path *gdl-base-path*)) + "Adds handlers for the css, html and js files needed by the frontend." + (declare (String host-address-hash-object host-address-environment + host-file base-path)) + ;; add the actual html file + (let ((full-host-path + (concat (namestring + (asdf:component-pathname constants:*isidorus-system*)) + host-file)) + (absolute-base-path + (concat + (namestring + (asdf:component-pathname constants:*isidorus-system*)) + base-path))) + (push + (create-static-file-dispatcher-and-handler + host-address-hash-object full-host-path "text/html") + hunchentoot:*dispatch-table*) + (push + (create-static-file-dispatcher-and-handler + host-address-environment full-host-path "text/html") + hunchentoot:*dispatch-table*) + ; add all additional files + (let ((absolute-base-path-len (length absolute-base-path))) + (com.gigamonkeys.pathnames:walk-directory + "anaToMia/hosted_files" + (lambda(item) + (unless (or (search "/.svn/" (namestring item) :test #'string=) + (string= full-host-path (namestring item))) + (let* ((rel-addr (subseq (namestring item) absolute-base-path-len)) + (content-type (generate-content-type (file-namestring item))) + (rel-uri (concat "/" rel-addr))) + (push + (create-static-file-dispatcher-and-handler + rel-uri item content-type) + hunchentoot:*dispatch-table*)))))))) + + +(defun generate-content-type(file-name) + "Returns a mime-type that corresponds to the passed + file-ending, note currently onle a fey types are supported!" + (declare (String file-name)) + (cond ((string-ends-with file-name "png" :ignore-case t) + "image/png") + ((string-ends-with file-name "html" :ignore-case t) + "text/html") + ((string-ends-with file-name "js" :ignore-case t) + "application/json") + ((string-ends-with file-name "css" :ignore-case t) + "text/css") + ((string-ends-with file-name "gif" :ignore-case t) + "image/gif") + (t + "text/plain"))) + + +(defun delete-handler() + "marks the corresponding construct(s) as deleted" + (let ((http-method (hunchentoot:request-method*))) + (if (or (eq http-method :DELETE) + (eq http-method :POST)) + (let ((external-format + (flexi-streams:make-external-format :UTF-8 :eol-style :LF))) + (let ((json-data + (hunchentoot:raw-post-data :external-format external-format + :force-text t))) + (with-writer-lock + (let* ((rev (d:get-revision)) + (result (jtm-delete-interface:mark-as-deleted-from-jtm + json-data :revision rev))) + (let ((tops + (remove-null + (cond ((or (typep result 'OccurrenceC) + (typep result 'NameC)) + (let ((top (parent result :revision (1- rev)))) + (when top (list top)))) + ((typep result 'VariantC) + (let ((name (parent result :revision (1- rev)))) + (when name + (let ((top (parent name :revision (1- rev)))) + (when top (list top)))))) + ((typep result 'AssociationC) + (map 'list (lambda(role) + (player role :revision (1- rev))) + (roles result :revision (1- rev)))) + ((typep result 'TopicC) + (let ((assocs + (remove-null + (map 'list (lambda(role) + (parent role :revision (1- rev))) + (player-in-roles result :revision (1- rev))))) + (frags + (elephant:get-instances-by-value + 'd:FragmentC 'd:topic result))) + (map nil #'elephant:drop-instance frags) + (loop for assoc in assocs + append (map 'list (lambda(role) + (player role :revision (1- rev))) + (roles assoc :revision (1- rev)))))))))) + (map nil (lambda(top) + (let ((frags + (elephant:get-instances-by-value 'd:FragmentC 'd:topic top))) + (map nil #'elephant:drop-instance frags)) + (create-latest-fragment-of-topic top)) + (if (typep result 'd:TopicC) + (delete result tops) + tops))) + (unless result + (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) + (format nil "object not found")))))) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) + + +(defun commit-fragment-handler () + "handles commits in the JTM 1.1 format." + (let ((http-method (hunchentoot:request-method*))) + (if (or (eq http-method :PUT) + (eq http-method :POST)) + (let ((external-format + (flexi-streams:make-external-format :UTF-8 :eol-style :LF))) + (let ((json-data + (hunchentoot:raw-post-data :external-format external-format + :force-text t))) + (with-writer-lock + (jtm-importer:import-construct-from-jtm-string + json-data :revision (get-revision) :tm-id *gdl-tm-id* + :create-fragments t)))) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) + + +(defun return-gdl-schema-handler() + "Currently the entore topic map is returned. + To emerge the efficiency it will be necessary + to structure the data as GDL-Fragments, so each view or schema + can be served separately." + (let ((http-method (hunchentoot:request-method*))) + (if (eq http-method :GET) + (progn (setf (hunchentoot:content-type*) "application/json") + (jtm-exporter:export-as-jtm-string :revision 0)) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) + + +(defun return-json-fragment-handler(&optional psi) + "returns the json-fragmen belonging to the psi passed by the parameter psi" + (assert psi) + (let ((http-method (hunchentoot:request-method*))) + (if (eq http-method :GET) + (let ((identifier (hunchentoot:url-decode psi))) + (setf (hunchentoot:content-type*) "application/json") ;RFC 4627 + (let ((fragment + (with-reader-lock + (get-latest-fragment-of-topic identifier)))) + (if fragment + (with-reader-lock + (jtm-exporter:export-construct-as-jtm-string + fragment :revision 0)) + (progn + (setf (hunchentoot:return-code*) hunchentoot:+http-not-found+) + (setf (hunchentoot:content-type*) "text") + (format nil "Topic \"~a\" not found" psi))))) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) + + +(defun gdl-sparql-handler(&optional param) + "Returns a JSON object representing a SPARQL response." + (declare (Ignorable param)) + (if (eql (hunchentoot:request-method*) :POST) + (let ((external-format (flexi-streams:make-external-format + :UTF-8 :eol-style :LF))) + (let ((sparql-request (hunchentoot:raw-post-data + :external-format external-format + :force-text t))) + (export-construct-as-isidorus-json-string + (make-instance 'SPARQL-Query :query sparql-request + :revision 0)))) + (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+))) \ No newline at end of file Modified: trunk/src/rest_interface/set-up-json-interface.lisp ============================================================================== --- trunk/src/rest_interface/set-up-json-interface.lisp Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/rest_interface/set-up-json-interface.lisp Mon Sep 26 04:56:25 2011 (r977) @@ -35,6 +35,12 @@ is required.") +(defparameter *cache-initialised* nil "determines wheter the cache has been + already set or not") + +(defparameter *fragments-initialised* nil "determines wheter the fragments has + been already initialised or not.") + ;the prefix to get a fragment by the psi -> localhost:8000/json/get/ (defparameter *json-get-prefix* "/json/get/(.+)$") ;the prefix to get a fragment by the psi -> localhost:8000/json/rdf/get/ @@ -108,9 +114,9 @@ and also registers a file-hanlder to the html-user-interface" ;initializes cache and fragments - (init-cache) + (init-cache nil) (format t "~%") - (init-fragments) + (init-fragments nil) ;; registers the http-code 500 for an internal server error to the standard ;; return codes. so there won't be attached a hunchentoot default message, @@ -148,8 +154,7 @@ (script-url (getf (elt files-and-urls idx) :url))) (push (create-static-file-dispatcher-and-handler script-url script-path) - hunchentoot:*dispatch-table*)))) - + hunchentoot:*dispatch-table*)))) ;; === rest interface ======================================================== (push @@ -700,7 +705,6 @@ (setf (hunchentoot:return-code*) hunchentoot:+http-bad-request+)))) - (defun update-fragments-after-delete(deleted-topic delete-revision) "Updates all fragments of topics that directly and indireclty related to the delete-topic." @@ -844,7 +848,7 @@ files-and-urls))) -(defun init-cache() +(defun init-cache(force-init) "Initializes the type and instance cache-tables with all valid types/instances" (with-writer-lock (setf *type-table* nil) @@ -880,15 +884,15 @@ (handler-case (progn (json-tmcl::topictype-p topic-instance topictype topictype-constraint nil 0) - (push (elephant::oid topic-instance) *type-table*)) + (pushnew (elephant::oid topic-instance) *type-table*)) (condition () nil))) (handler-case (progn (json-tmcl::valid-instance-p topic-instance nil nil 0) - (push (elephant::oid topic-instance) *instance-table*)) + (pushnew (elephant::oid topic-instance) *instance-table*)) (condition () nil))) -(defun init-fragments () +(defun init-fragments (force-init) "Creates fragments of all topics that have a PSI." (format t "creating fragments: ") (map Modified: trunk/src/xml/xtm/exporter.lisp ============================================================================== --- trunk/src/xml/xtm/exporter.lisp Mon Sep 26 02:48:59 2011 (r976) +++ trunk/src/xml/xtm/exporter.lisp Mon Sep 26 04:56:25 2011 (r977) @@ -16,41 +16,33 @@ (let ((instance-topic (get-item-by-psi *instance-psi* :revision 0)) (type-topic - (get-item-by-psi *type-psi* :revision 0))) - (cond ((and (not (and instance-topic type-topic)) - (elephant:get-instances-by-class 'TopicMapC)) - (error (make-condition - 'missing-reference-error - :message - (format nil "Could not resolvethe topics: ~a and ~a~%" - *instance-psi* *type-psi*)))) - ((not (and instance-topic type-topic)) - nil) - (t - (loop for item in (d:get-all-associations revision) - when (or (/= (length (roles item :revision revision)) 2) - (and - (= (length (roles item :revision revision)) 2) - (not - (and - (or - (eq instance-topic - (instance-of (first (roles item - :revision revision)) - :revision revision)) - (eq instance-topic - (instance-of (second (roles item - :revision revision)) - :revision revision))) - (or (eq type-topic - (instance-of (first (roles item - :revision revision)) - :revision revision)) - (eq type-topic - (instance-of (second (roles item - :revision revision)) - :revision revision))))))) - collect item))))) + (identified-construct + (elephant:get-instance-by-value 'PersistentIdC 'uri *type-psi*)))) + (loop for item in (d:get-all-associations revision) + when (let ((assoc-roles (length (roles item :revision revision)))) + (or (/= assoc-roles 2) + (and (= assoc-roles 2) + (not (and (or (eq instance-topic + (instance-of + (first (roles item + :revision revision)) + :revision revision)) + (eq instance-topic + (instance-of + (second (roles item + :revision revision)) + :revision revision))) + (or (eq type-topic + (instance-of + (first (roles item + :revision revision)) + :revision revision)) + (eq type-topic + (instance-of + (second (roles item + :revision revision)) + :revision revision)))))))) + collect item))) (defmacro with-xtm2.0 ((tm revision) &body body) @@ -91,10 +83,11 @@ (if ,tm (union (filter-type-instance-topics (d:topics ,tm) tm :revision revision) - (d:associations ,tm)) + (list-extern-associations :revision revision)) (union (elephant:get-instances-by-class 'd:TopicC) - (list-extern-associations :revision revision))))))) + (d:associations ,tm))))))) + (defun export-as-xtm (xtm-path &key From lgiessmann at common-lisp.net Mon Sep 26 12:22:17 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 05:22:17 -0700 Subject: [isidorus-cvs] r978 - trunk/src/rest_interface Message-ID: Author: lgiessmann Date: Mon Sep 26 05:22:13 2011 New Revision: 978 Log: trunk: fixed a bug that emerged after the merging of the gdl-frontend-branch and the trunk Modified: trunk/src/rest_interface/set-up-json-interface.lisp Modified: trunk/src/rest_interface/set-up-json-interface.lisp ============================================================================== --- trunk/src/rest_interface/set-up-json-interface.lisp Mon Sep 26 04:56:25 2011 (r977) +++ trunk/src/rest_interface/set-up-json-interface.lisp Mon Sep 26 05:22:13 2011 (r978) @@ -850,27 +850,20 @@ (defun init-cache(force-init) "Initializes the type and instance cache-tables with all valid types/instances" - (with-writer-lock - (setf *type-table* nil) - (setf *instance-table* nil) - (setf *overview-table* nil) - (let ((topictype (get-item-by-psi json-tmcl-constants::*topictype-psi* - :revision 0)) - (topictype-constraint (json-tmcl::is-type-constrained :revision 0))) - (format t "~%initializing cache: ") - (map 'list #'(lambda(top) - (format t ".") - (push-to-cache top topictype topictype-constraint)) - (elephant:get-instances-by-class 'TopicC))) - (when *use-overview-cache* - (setf *overview-table* - (remove-null - (map 'list (lambda(top) - (when (find-item-by-revision top 0) - (list :topic (elephant::oid top) - :psis (map 'list #'elephant::oid - (psis top :revision 0))))) - (elephant:get-instances-by-class 'TopicC))))))) + (declare (Boolean force-init)) + (when (or force-init (not *cache-initialised*)) + (with-writer-lock + (setf *type-table* nil) + (setf *instance-table* nil) + (let ((topictype (get-item-by-psi json-tmcl-constants::*topictype-psi* + :revision 0)) + (topictype-constraint (json-tmcl::is-type-constrained :revision 0))) + (format t "~%initializing cache: ") + (map 'list #'(lambda(top) + (format t ".") + (push-to-cache top topictype topictype-constraint)) + (elephant:get-instances-by-class 'TopicC)))) + (setf *cache-initialised* t))) (defun push-to-cache (topic-instance &optional @@ -894,19 +887,16 @@ (defun init-fragments (force-init) "Creates fragments of all topics that have a PSI." - (format t "creating fragments: ") - (map - nil - (lambda(top) - (let ((psis-of-top (psis top))) - (when psis-of-top - (format t ".") - (let ((fragment - (create-latest-fragment-of-topic - (uri (first psis-of-top))))) - (d:serialize-fragment fragment (fragment-serializer)) - fragment)))) - (elephant:get-instances-by-class 'd:TopicC))) + (declare (Boolean force-init)) + (when (or force-init (not *fragments-initialised*)) + (format t "creating fragments: ") + (map 'list #'(lambda(top) + (let ((psis-of-top (psis top))) + (when psis-of-top + (format t ".") + (create-latest-fragment-of-topic (uri (first psis-of-top)))))) + (elephant:get-instances-by-class 'd:TopicC)) + (setf *fragments-initialised* t))) (defun fragment-serializer () From lgiessmann at common-lisp.net Mon Sep 26 12:44:45 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 05:44:45 -0700 Subject: [isidorus-cvs] r979 - trunk/src Message-ID: Author: lgiessmann Date: Mon Sep 26 05:44:43 2011 New Revision: 979 Log: trunk: added all hosted files for the gdl-frontend to the isidorus.asd file Modified: trunk/src/isidorus.asd Modified: trunk/src/isidorus.asd ============================================================================== --- trunk/src/isidorus.asd Mon Sep 26 05:22:13 2011 (r978) +++ trunk/src/isidorus.asd Mon Sep 26 05:44:43 2011 (r979) @@ -242,6 +242,46 @@ :components ((:static-file "home.css") (:static-file "navi.css") (:static-file "main.css"))))) + (:module "anaToMia" + :components ((:static-file "TextGrid_ServiceRegistry_data.xtm") + (:static-file "TextGrid_ServiceRegistry_required_schema.xtm") + (:static-file "TextGrid_ServiceRegistry_required_TMCL.xtm") + (:module "hosted_files" + :components ((:static-file "GDL_Widgets.css") + (:static-file "GDL_Widgets.html") + (:module "gdl_widgets" + :components ((:static-file "0A9476898799A150D840F0B1C3672921.cache.png") + (:static-file "14CD8B5AEEBA08A9924DB4F2D259444E.cache.html") + (:static-file "1FBCFA2B16E083419DC22ADFC6EE3C47.cache.html") + (:static-file "396F806CD63ABD414BFBB9D57429F05B.cache.png") + (:static-file "3BFF09C076E218EF68C7F6FF75CC5B8A.cache.html") + (:static-file "467C3B49DDE1EC44F81C93AA87425C1C.cache.html") + (:static-file "49CB40FF34B545B611623F33CE0C73BB.cache.html") + (:static-file "clear.cache.gif") + (:static-file "D67155A4B4320649EC6CC5E58057DE2F.cache.html") + (:static-file "DF7764EEC1903CD03C9545B354D8D8E4.cache.png") + (:static-file "E44767377485D18D6B6864F65BA8EF73.cache.png") + (:static-file "EDC7827FEEA59EE44AD790B1C6430C45.cache.png") + (:static-file "gdl_widgets.nocache.js") + (:static-file "hosted.html") + (:static-file "textgrid_small.png") + (:module "lib" + :components ((:static-file "tm.min.js"))) + (:module "gwt" + :components ((:module "clean" + :components ((:static-file "clean.css") + (:static-file "clean_rtl.css") + (:module "images" + :components ((:static-file "circles_ie6.png") + (:static-file "circles.png") + (:static-file "corner_ie6.png") + (:static-file "corner.png") + (:static-file "hborder_ie6.png") + (:static-file "hborder.png") + (:static-file "thumb_horz.png") + (:static-file "thumb_vertical.png") + (:static-file "vborder_ie6.png") + (:static-file "vborder.png"))))))))))))) (:module "threading" :components ((:file "reader-writer")))) :depends-on (:cxml From lgiessmann at common-lisp.net Mon Sep 26 13:58:41 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 06:58:41 -0700 Subject: [isidorus-cvs] r980 - trunk/src/anaToMia Message-ID: Author: lgiessmann Date: Mon Sep 26 06:58:39 2011 New Revision: 980 Log: gdl-frontend: fixed a transformation bug in the TextGrid-ServiceRegistry data Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm ============================================================================== --- trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Mon Sep 26 05:44:43 2011 (r979) +++ trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Mon Sep 26 06:58:39 2011 (r980) @@ -134,1827 +134,1755 @@ - - + + - + confserver - + DefaultMetadataTransformStylesheetTextGridURI - - + - + textgrid:2f7r - - + + - + confserver - + tgsearch-public - - + - + http://textgrid-ws3.sub.uni-goettingen.de/tgsearch-public - - + + - + confserver - + StreamingEditor - - + - + http://134.76.20.86:9090/sedit.xslt/StreamingEditor?wsdl - - + + - + confserver - + last-api-change - - + - + 2011-02-15 - - + + - + confserver - + CopyWorkflowTextGridURI - - + - + textgrid:h4kg - - + + - + confserver - + CopyWorkflowTextGridURI - - + - + textgrid:f8f5 - - + + - + confserver - + PasswordReset - - + - + https://textgrid-ws3.sub.uni-goettingen.de/cgi-bin/pwReset.pl - - + + - + confserver - + tgpublish - - + - + http://textgrid-ws3.sub.uni-goettingen.de/tgpublish - - + + - + confserver - + ApprovedServicesTextGridURI - - + - + textgrid:2f7s - - + + - + confserver - + logservice - - + - + http://textgridlab.org/1.0/tglog/service - - + + - + confserver - + StreamingEditor - - + - + https://textgridlab.org/1.0/sedit.xslt/StreamingEditor?wsdl - - + + - + confserver - + tgsearch-public - - + - + https://textgridlab.org/1.0/tgsearch-public - - + + - + confserver - + tgsearch - - + - + https://textgridlab.org/1.0/tgsearch - - + + + - + confserver - + authz - - + - + https://textgridlab.org/1.0/WebAuthN/WebAuthN2.php?authZinstance=textgrid-ws3.sub.uni-goettingen.de - - + + - + confserver - + userdata - - + - + https://textgridlab.org/1.0/WebAuthN/TextGrid-WebAuth.php?authZinstance=textgrid-ws3.sub.uni-goettingen.de - - + + - + confserver - + pwchange - - + - + https://textgridlab.org/1.0/PWchange/index.php - - + + - + confserver - + workflow - - + - + https://textgridlab.org/1.0/workflow/GWESproxy.wsdl - - + + - + confserver - + tgauth - - + - + https://textgridlab.org/1.0/tgauth/tgextra.php - - + + - + confserver - + PasswordReset - - + - + https://textgridlab.org/1.0/pwReset.pl - - + + - + confserver - + tgcrud - - + - + https://textgridlab.org/1.0/tgcrud/TGCrudService - - + + - + confserver - + tgpublish - - + - + https://textgridlab.org/1.0/tgpublish - - + + - + confserver - + pwchange - - + - + https://textgridlab.org/PWchange/index.php - - + + - + confserver - + pwchange - - + - + http://textgrid-ws3.sub.uni-goettingen.de/PWchange/index.php - - + + - + confserver - + webpublish - - + - + http://textgrid-ws2.gwdg.de/teiPublisher/1/publish - - + + - + confserver - + last-api-change - - + - + 2009-01-21 - - + + - + confserver - + rdf-repository - - + - + http://ingrid.sub.uni-goettingen.de:8082/openrdf-sesame/repositories/textgrid - - - + + + - + confserver - + exist - - + - + http://ingrid.sub.uni-goettingen.de:8082/exist/services/Query - - + + - + confserver - + logservice - - + - + http://ingrid.sub.uni-goettingen.de:8082/axis2/services/textlog - - + + - + confserver - + tgcrud - - + - + http://ingrid.sub.uni-goettingen.de:8082/axis2/services/TGCrudService - - + + - + confserver - + tgsearch - - + - + http://ingrid.sub.uni-goettingen.de:8082/axis2/services/Metadata - - + + - + confserver - + tgauth - - + - + http://ingrid.sub.uni-goettingen.de/rbac-8082/tgextra.php - - + + - + confserver - + authz - - + - + https://textgridlab.org/WebAuthN/WebAuthN.php?authZinstance=ingrid-8082 - - + + - + confserver - + workflow - - + - + http://ingrid.sub.uni-goettingen.de:8083/gwes/services/GWES - - + + - + confserver - + ns - - + - + http://textgrid.info/namespaces/metadata/core/2008-07-24 - - + + - + confserver - + schema - - + - + www.textgrid.info/schemas/textgrid-metadata_2008-07-24.xsd - - + + - + confserver - + webpublish - - + - + http://textgrid-ws2.gwdg.de/teiPublisher/0/publish - - + + - + confserver - + last-api-change - - + - + 2009-01-21 - - + + - + confserver - + rdf-repository - - + - + http://ingrid.sub.uni-goettingen.de:8081/openrdf-sesame/repositories/textgrid - - + + - + confserver - + exist - - + - + http://ingrid.sub.uni-goettingen.de:8081/exist/services/Query - - + + - + confserver - + logservice - - + - + http://ingrid.sub.uni-goettingen.de:8081/logservice/textlog - - + + - + confserver - + tgcrud - - + - + http://ingrid.sub.uni-goettingen.de:8081/axis2/services/TGCrudService + - - + + - + confserver - + tgsearch - - + - + http://ingrid.sub.uni-goettingen.de:8081/tgsearch/meta/ - - + + - + confserver - + tgauth - - + - + http://ingrid.sub.uni-goettingen.de/rbac-8081/tgextra.php - - - + + - + confserver - + authz - - + - + https://textgridlab.org/WebAuthN/WebAuthN.php?authZinstance=ingrid-8081 - - + + - + confserver - + workflow - - + - + http://ingrid.sub.uni-goettingen.de:8083/gwes/services/GWES - - + + - + confserver - + ns - - + - + http://textgrid.info/namespaces/metadata/core/2008-07-24 - - + + - + confserver - + schema - - + - + www.textgrid.info/schemas/textgrid-metadata_2008-07-24.xsd - - + + - + confserver - + webpublish - - + - + http://textgrid-ws2.gwdg.de/teiPublisher/2/publish - - + + - + confserver - + last-api-change - - + - + 2009-01-21 - - + + - + confserver - + rdf-repository - - + - + https://textgridlab.org/openrdf-sesame/repositories/textgrid - - + + - + confserver - + exist - - + - + https://textgridlab.org/exist/services/Query - - + + - + confserver - + logservice - - + - + https://textgridlab.org/tglog/service - - + + - + confserver - + tgcrud - - + - + https://textgridlab.org/axis2/services/TGCrudService - - + + - + confserver - + tgsearch - - + - + https://textgridlab.org/tgsearch/meta/ - - + + - + confserver - + tgauth - - + - + https://textgridlab.org/tgauth/rbacSoap/tgextra.php - - + + - + confserver - + authz - - + - + https://textgridlab.org/WebAuthN/WebAuthN.php?authZinstance=textgridlab.org - - + + - + confserver - + workflow - - + - + http://ingrid.sub.uni-goettingen.de/gwes/services/GWES - - + + - + confserver - + ns - - + - + http://textgrid.info/namespaces/metadata/core/2008-07-24 - - + + - + confserver - + schema - - + - + www.textgrid.info/schemas/textgrid-metadata_2008-07-24.xsd - - + + - + confserver - + exist - - + - + http://textgrid-ws3.sub.uni-goettingen.de/exist/services/Query - - + + - + confserver - + tgcrud - - + - + http://textgrid-ws3.sub.uni-goettingen.de/tgcrud/TGCrudService - - + + - + confserver - + authz - - + - + http://textgrid-ws3.sub.uni-goettingen.de/WebAuthN/WebAuthN2.php?authZinstance=textgrid-ws3.sub.uni-goettingen.de - - + + - + confserver - + logservice - - + - + http://textgrid-ws3.sub.uni-goettingen.de/tglog/service - - + + - + confserver - + last-api-change - - + - + 2011-02-15 - - + + - + confserver - + tgsearch - - + - + http://textgrid-ws3.sub.uni-goettingen.de/tgsearch - - + + - + confserver - + userdata - - + - + http://textgrid-ws3.sub.uni-goettingen.de/WebAuthN/TextGrid-WebAuth.php?authZinstance=textgrid-ws3.sub.uni-goettingen.de - - + + - + confserver - + pwchange - - + - + https://textgridlab.org/PWchange/index.php - - + + - + confserver - + schema - - + - + http://www.textgrid.de/schemas/textgrid-metadata_2010.xsd - - + + - + confserver - + workflow - - + - + http://textgrid-ws3.sub.uni-goettingen.de/workflow/GWESproxy.wsdl - - + + - + confserver - + tgauth - - + - + https://textgrid-ws3.sub.uni-goettingen.de/tgauth/tgextra.php - - + + - + confserver - + webpublish - - + - + http://textgrid-ws2.gwdg.de/teiPublisher/3/publish - - + + - + confserver - + ns - - + - + http://textgrid.info/namespaces/metadata/core/2010 - - + + - + confserver - + rdf-repository - - + - + http://textgrid-ws3.sub.uni-goettingen.de/openrdf-sesame/repositories/textgrid @@ -2033,15 +1961,15 @@ - + - + - + @@ -2051,15 +1979,15 @@ - + - + - + @@ -2069,15 +1997,15 @@ - + - + - + @@ -2087,15 +2015,15 @@ - + - + - + @@ -2105,15 +2033,15 @@ - + - + - + @@ -2123,15 +2051,15 @@ - + - + - + @@ -2141,15 +2069,15 @@ - + - + - + @@ -2159,15 +2087,15 @@ - + - + - + @@ -2177,15 +2105,15 @@ - + - + - + @@ -2195,15 +2123,15 @@ - + - + - + @@ -2213,15 +2141,15 @@ - + - + - + @@ -2231,15 +2159,15 @@ - + - + - + @@ -2249,15 +2177,15 @@ - + - + - + @@ -2267,15 +2195,15 @@ - + - + - + @@ -2285,15 +2213,15 @@ - + - + - + @@ -2303,15 +2231,15 @@ - + - + - + @@ -2321,15 +2249,15 @@ - + - + - + @@ -2339,15 +2267,15 @@ - + - + - + @@ -2357,15 +2285,15 @@ - + - + - + @@ -2375,15 +2303,15 @@ - + - + - + @@ -2393,15 +2321,15 @@ - + - + - + @@ -2411,15 +2339,15 @@ - + - + - + @@ -2429,15 +2357,15 @@ - + - + - + @@ -2447,15 +2375,15 @@ - + - + - + @@ -2465,15 +2393,15 @@ - + - + - + @@ -2483,15 +2411,15 @@ - + - + - + @@ -2501,15 +2429,15 @@ - + - + - + @@ -2519,15 +2447,15 @@ - + - + - + @@ -2537,15 +2465,15 @@ - + - + - + @@ -2555,15 +2483,15 @@ - + - + - + @@ -2573,15 +2501,15 @@ - + - + - + @@ -2591,15 +2519,15 @@ - + - + - + @@ -2609,15 +2537,15 @@ - + - + - + @@ -2627,15 +2555,15 @@ - + - + - + @@ -2645,15 +2573,15 @@ - + - + - + @@ -2663,15 +2591,15 @@ - + - + - + @@ -2681,15 +2609,15 @@ - + - + - + @@ -2699,15 +2627,15 @@ - + - + - + @@ -2717,15 +2645,15 @@ - + - + - + @@ -2735,15 +2663,15 @@ - + - + - + @@ -2753,15 +2681,15 @@ - + - + - + @@ -2771,15 +2699,15 @@ - + - + - + @@ -2789,15 +2717,15 @@ - + - + - + @@ -2807,15 +2735,15 @@ - + - + - + @@ -2825,15 +2753,15 @@ - + - + - + @@ -2843,15 +2771,15 @@ - + - + - + @@ -2861,15 +2789,15 @@ - + - + - + @@ -2879,15 +2807,15 @@ - + - + - + @@ -2897,15 +2825,15 @@ - + - + - + @@ -2915,15 +2843,15 @@ - + - + - + @@ -2933,15 +2861,15 @@ - + - + - + @@ -2951,15 +2879,15 @@ - + - + - + @@ -2969,15 +2897,15 @@ - + - + - + @@ -2987,15 +2915,15 @@ - + - + - + @@ -3005,15 +2933,15 @@ - + - + - + @@ -3023,15 +2951,15 @@ - + - + - + @@ -3041,15 +2969,15 @@ - + - + - + @@ -3059,15 +2987,15 @@ - + - + - + @@ -3077,15 +3005,15 @@ - + - + - + @@ -3095,15 +3023,15 @@ - + - + - + @@ -3113,15 +3041,15 @@ - + - + - + @@ -3131,15 +3059,15 @@ - + - + - + @@ -3149,15 +3077,15 @@ - + - + - + @@ -3167,15 +3095,15 @@ - + - + - + @@ -3185,15 +3113,15 @@ - + - + - + @@ -3203,15 +3131,15 @@ - + - + - + @@ -3221,15 +3149,15 @@ - + - + - + @@ -3239,15 +3167,15 @@ - + - + - + @@ -3257,15 +3185,15 @@ - + - + - + @@ -3275,15 +3203,15 @@ - + - + - + @@ -3293,15 +3221,15 @@ - + - + - + @@ -3311,15 +3239,15 @@ - + - + - + @@ -3329,15 +3257,15 @@ - + - + - + From lgiessmann at common-lisp.net Mon Sep 26 14:20:26 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 07:20:26 -0700 Subject: [isidorus-cvs] r981 - trunk/src/anaToMia Message-ID: Author: lgiessmann Date: Mon Sep 26 07:20:26 2011 New Revision: 981 Log: gdl-frontend: changed the width of the GUI-fragment that is produced by the GDL-definition Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm ============================================================================== --- trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Mon Sep 26 06:58:39 2011 (r980) +++ trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Mon Sep 26 07:20:26 2011 (r981) @@ -4460,7 +4460,7 @@ - 362px + 592px @@ -4524,7 +4524,7 @@ - 230px + 460px @@ -4676,7 +4676,7 @@ - 232px + 462px @@ -4828,7 +4828,7 @@ - 230px + 460px @@ -4991,7 +4991,7 @@ - 230px + 460px @@ -5217,7 +5217,7 @@ - 362px + 592px @@ -5349,7 +5349,7 @@ - 230px + 460px @@ -5399,7 +5399,7 @@ - 230px + 460px @@ -5568,7 +5568,7 @@ - 230px + 460px @@ -5737,7 +5737,7 @@ - 230px + 460px @@ -5924,7 +5924,7 @@ - 322px + 552px @@ -6056,7 +6056,7 @@ - 240px + 470px @@ -6181,7 +6181,7 @@ - 322px + 552px @@ -6313,7 +6313,7 @@ - 240px + 470px From lgiessmann at common-lisp.net Mon Sep 26 14:26:33 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 07:26:33 -0700 Subject: [isidorus-cvs] r982 - in trunk/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/isidorus war/gdl_widgets Message-ID: Author: lgiessmann Date: Mon Sep 26 07:26:33 2011 New Revision: 982 Log: gdl-frontend: Widgets: adapted the UI to tha latest chagnes of the schema (width) Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_Environment.jtm trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Mon Sep 26 07:20:26 2011 (r981) +++ trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Mon Sep 26 07:26:33 2011 (r982) @@ -68,7 +68,7 @@ RootPanel.get("GWT_Content").add(this.mainPanel); this.mainPanel.add(this.navigationPanel); this.mainPanel.add(this.contentPanel); - this.mainPanel.setPixelSize(1024, 700); + this.mainPanel.setPixelSize(1254, 700); this.navigationPanel.add(this.createNewButton); try{ this.requestPsis(); @@ -165,7 +165,7 @@ try{ ArrayList> topicsToCreate = new ArrayList>(); topicsToCreate.add(new Pair(GdlWebPage.this.topicTypePsi, TopicIdentifierTypes.SubjectIdentifier)); - GdlPanel gdlPanel = new GdlPanel(null, topicsToCreate, 362, 160); + GdlPanel gdlPanel = new GdlPanel(null, topicsToCreate, 592, 160); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); gdlPanel.setCommitCallback(new CommitCallback(GdlWebPage.this)); @@ -189,7 +189,7 @@ if(obj instanceof Label){ Label source = (Label)obj; try{ - GdlPanel gdlPanel = new GdlPanel(new Pair(source.getText(), TopicIdentifierTypes.SubjectIdentifier), null, 362, 160); + GdlPanel gdlPanel = new GdlPanel(new Pair(source.getText(), TopicIdentifierTypes.SubjectIdentifier), null, 592, 160); gdlPanel.setTmEngine(new JtmsTmEngine()); gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback(GdlWebPage.this)); gdlPanel.setCommitCallback(new CommitCallback(GdlWebPage.this)); Modified: trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_Environment.jtm ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_Environment.jtm Mon Sep 26 07:20:26 2011 (r981) +++ trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_Environment.jtm Mon Sep 26 07:26:33 2011 (r982) @@ -84,7 +84,7 @@ {"subject_identifiers":["[gdlt:Commit-Button]"]}, {"subject_identifiers":["[tgg:textgrid-ui-schema]"], "instance_of":["si:[gdlt:Schema]"], "names":[{"type":"si:[gdl:schema-name]", "value":"GDL Schema for the TextGrid-ServiceRegistry-UI"}]}, - {"subject_identifiers":["[tgg:environment-default-creator-topic-view]"], "instance_of":["si:[gdlt:Default-Creator-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_default_creator_topic_view_id"}, {"type":"si:[gdl:width]", "value":"322px"}, {"type":"si:[gdl:height]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"#023467"}]}, + {"subject_identifiers":["[tgg:environment-default-creator-topic-view]"], "instance_of":["si:[gdlt:Default-Creator-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_default_creator_topic_view_id"}, {"type":"si:[gdl:width]", "value":"552px"}, {"type":"si:[gdl:height]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"#023467"}]}, {"subject_identifiers":["[tgg:environment-creator-view-binding]"], "instance_of":["si:[gdlt:TM-Single-Type-Value]"]}, {"subject_identifiers":["[tgg:environment-creator-text-label]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_text_label_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"60px"},{"type":"si:[gdl:background-color]", "value":"#023467"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:color]", "value":"#fff"}]}, @@ -92,7 +92,7 @@ {"subject_identifiers":["[tgg:environment-creator-text-label-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:environment-creator-text-label-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"name:"}]}, - {"subject_identifiers":["[tgg:environment-creator-name-text]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_name_text_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"240px"},{"type":"si:[gdl:cursor]", "value":"text"},{"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:environment-creator-name-text]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_name_text_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"470px"},{"type":"si:[gdl:cursor]", "value":"text"},{"type":"si:[gdl:padding-left]", "value":"2px"}]}, {"subject_identifiers":["[tgg:environment-creator-name-text-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"70px"}]}, {"subject_identifiers":["[tgg:environment-creator-name-text-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, Modified: trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Mon Sep 26 07:20:26 2011 (r981) +++ trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Mon Sep 26 07:26:33 2011 (r982) @@ -103,13 +103,13 @@ {"subject_identifiers":["[gdlt:Commit-Button]"]}, {"subject_identifiers":["[tgg:textgrid-ui-schema]"], "instance_of":["si:[gdlt:Schema]"], "names":[{"type":"si:[gdl:schema-name]", "value":"GDL Schema for the TextGrid-ServiceRegistry-UI"}]}, - {"subject_identifiers":["[tgg:hash-object-default-creator-topic-view]"], "instance_of":["si:[gdlt:Default-Creator-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object"}], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_default_creator_topic_view_id"}, {"type":"si:[gdl:width]", "value":"362px"}, {"type":"si:[gdl:height]", "value":"160px"},{"type":"si:[gdl:background-color]", "value":"#023467"}]}, + {"subject_identifiers":["[tgg:hash-object-default-creator-topic-view]"], "instance_of":["si:[gdlt:Default-Creator-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object"}], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_default_creator_topic_view_id"}, {"type":"si:[gdl:width]", "value":"592px"}, {"type":"si:[gdl:height]", "value":"160px"},{"type":"si:[gdl:background-color]", "value":"#023467"}]}, {"subject_identifiers":["[tgg:hash-object-creator-view-binding]"], "instance_of":["si:[gdlt:TM-Single-Type-Value]"]}, {"subject_identifiers":["[tgg:hash-hash-type-hidden-value]"], "instance_of":["si:[gdlt:Hidden-Value]"]}, {"subject_identifiers":["[tgg:hash-hash-type-default-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"confserver"}]}, - {"subject_identifiers":["[tgg:has-environment-creator-association-view]"], "instance_of":["si:[gdlt:Creator-Association-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"has_environment_createor_association_view_id"}, {"type":"si:[gdl:width]", "value":"230px"}]}, + {"subject_identifiers":["[tgg:has-environment-creator-association-view]"], "instance_of":["si:[gdlt:Creator-Association-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"has_environment_createor_association_view_id"}, {"type":"si:[gdl:width]", "value":"460px"}]}, {"subject_identifiers":["[tgg:hash-object-has-environement-creator-association-view-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:has-environment-hash-role-hidden-value]"], "instance_of":["si:[gdlt:Hidden-Value]"]}, @@ -120,7 +120,7 @@ {"subject_identifiers":["[tgg:hash-object-creator-text-label-env-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-creator-text-label-env-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"environment:"}]}, - {"subject_identifiers":["[tgg:hash-object-creator-text-list-box-env]"], "instance_of":["si:[gdlt:List-Box]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_list_box_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"232px"}]}, + {"subject_identifiers":["[tgg:hash-object-creator-text-list-box-env]"], "instance_of":["si:[gdlt:List-Box]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_list_box_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"462px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-list-box-env-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"0px"}, {"type":"si:[gdl:left]", "value":"0px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-list-box-env-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-has-environment-environment-role-player]"], "instance_of":["si:[gdlt:Role-Player]"]}, @@ -130,7 +130,7 @@ {"subject_identifiers":["[tgg:hash-object-creator-text-label-key-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-creator-text-label-key-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"key:"}]}, - {"subject_identifiers":["[tgg:hash-object-creator-text-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_key_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"230px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:hash-object-creator-text-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_key_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"460px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-key-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"40px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-key-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, @@ -139,7 +139,7 @@ {"subject_identifiers":["[tgg:hash-object-creator-text-label-value-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-creator-text-label-value-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"value:"}]}, - {"subject_identifiers":["[tgg:hash-object-creator-text-value]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_value_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"230px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:hash-object-creator-text-value]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_value_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"460px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-value-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"70px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-value-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, Modified: trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm Mon Sep 26 07:20:26 2011 (r981) +++ trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm Mon Sep 26 07:26:33 2011 (r982) @@ -83,7 +83,7 @@ {"subject_identifiers":["[gdlt:Delete-Button]"]}, {"subject_identifiers":["[tgg:textgrid-ui-schema]"], "instance_of":["si:[gdlt:Schema]"], "names":[{"type":"si:[gdl:schema-name]", "value":"GDL Schema for the TextGrid-ServiceRegistry-UI"}]}, - {"subject_identifiers":["[tgg:environment-default-editor-topic-view]"], "instance_of":["si:[gdlt:Default-Editor-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_default_editor_topic_view_id"}, {"type":"si:[gdl:width]", "value":"322px"}, {"type":"si:[gdl:height]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"#023467"}]}, + {"subject_identifiers":["[tgg:environment-default-editor-topic-view]"], "instance_of":["si:[gdlt:Default-Editor-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_default_editor_topic_view_id"}, {"type":"si:[gdl:width]", "value":"552px"}, {"type":"si:[gdl:height]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"#023467"}]}, {"subject_identifiers":["[tgg:environment-editor-view-binding]"], "instance_of":["si:[gdlt:TM-Single-Type-Value]"]}, {"subject_identifiers":["[tgg:environment-editor-text-label]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_text_label_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"60px"},{"type":"si:[gdl:background-color]", "value":"#023467"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:color]", "value":"#fff"}]}, @@ -91,7 +91,7 @@ {"subject_identifiers":["[tgg:environment-editor-text-label-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:environment-editor-text-label-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"name:"}]}, - {"subject_identifiers":["[tgg:environment-editor-name-text]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_name_text_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"240px"},{"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:background-color]", "value":"gray"}]}, + {"subject_identifiers":["[tgg:environment-editor-name-text]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"environment_name_text_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"470px"},{"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:background-color]", "value":"gray"}]}, {"subject_identifiers":["[tgg:environment-editor-name-text-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"70px"}]}, {"subject_identifiers":["[tgg:environment-editor-name-text-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, Modified: trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Mon Sep 26 07:20:26 2011 (r981) +++ trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Mon Sep 26 07:26:33 2011 (r982) @@ -99,7 +99,7 @@ {"subject_identifiers":["[gdlt:Commit-Button]"]}, {"subject_identifiers":["[tgg:textgrid-ui-schema]"], "instance_of":["si:[gdlt:Schema]"], "names":[{"type":"si:[gdl:schema-name]", "value":"GDL Schema for the TextGrid-ServiceRegistry-UI"}]}, - {"subject_identifiers":["[tgg:hash-object-default-editor-topic-view]"], "instance_of":["si:[gdlt:Default-Editor-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object"}], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_default_editor_topic_view_id"}, {"type":"si:[gdl:width]", "value":"362px"}, {"type":"si:[gdl:height]", "value":"160px"},{"type":"si:[gdl:background-color]", "value":"#023467"}]}, + {"subject_identifiers":["[tgg:hash-object-default-editor-topic-view]"], "instance_of":["si:[gdlt:Default-Editor-Topic-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object"}], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_default_editor_topic_view_id"}, {"type":"si:[gdl:width]", "value":"592px"}, {"type":"si:[gdl:height]", "value":"160px"},{"type":"si:[gdl:background-color]", "value":"#023467"}]}, {"subject_identifiers":["[tgg:hash-object-editor-view-binding]"], "instance_of":["si:[gdlt:TM-Single-Type-Value]"]}, {"subject_identifiers":["[tgg:hash-object-editor-text-label-env]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_label_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"#023467"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:color]", "value":"#fff"}]}, @@ -107,10 +107,10 @@ {"subject_identifiers":["[tgg:hash-object-editor-text-label-env-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-editor-text-label-env-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"environment:"}]}, - {"subject_identifiers":["[tgg:has-environment-editor-association-view]"], "instance_of":["si:[gdlt:Editor-Association-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"has_environment_editor_association_view_id"}, {"type":"si:[gdl:width]", "value":"230px"}]}, + {"subject_identifiers":["[tgg:has-environment-editor-association-view]"], "instance_of":["si:[gdlt:Editor-Association-View]"], "names":[{"type":"si:[gdl:view-name]", "value":"A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment"}], "occurrences":[{"type":"si:[gdl:id]", "value":"has_environment_editor_association_view_id"}, {"type":"si:[gdl:width]", "value":"460px"}]}, {"subject_identifiers":["[tgg:hash-object-has-environment-editor-association-view-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"10px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, - {"subject_identifiers":["[tgg:hash-object-editor-text-env]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"230px"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:background-color]", "value":"gray"}, {"type":"si:[gdl:border-style]", "value":"none"}]}, + {"subject_identifiers":["[tgg:hash-object-editor-text-env]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_env_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"460px"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:background-color]", "value":"gray"}, {"type":"si:[gdl:border-style]", "value":"none"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-env-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"0px"}, {"type":"si:[gdl:left]", "value":"0px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-env-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-has-environment-environment-role-player]"], "instance_of":["si:[gdlt:Role-Player]"]}, @@ -120,7 +120,7 @@ {"subject_identifiers":["[tgg:hash-object-editor-text-label-key-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-editor-text-label-key-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"key:"}]}, - {"subject_identifiers":["[tgg:hash-object-editor-text-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_key_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"230px"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:background-color]", "value":"gray"}]}, + {"subject_identifiers":["[tgg:hash-object-editor-text-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_key_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"460px"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}, {"type":"si:[gdl:cursor]", "value":"default"}, {"type":"si:[gdl:background-color]", "value":"gray"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-key-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"40px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-key-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, @@ -129,7 +129,7 @@ {"subject_identifiers":["[tgg:hash-object-editor-text-label-value-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-editor-text-label-value-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"value:"}]}, - {"subject_identifiers":["[tgg:hash-object-editor-text-value]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_value_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"230px"},{"type":"si:[gdl:cursor]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:hash-object-editor-text-value]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_value_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"460px"},{"type":"si:[gdl:cursor]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-value-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"70px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:hash-object-editor-text-value-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, From lgiessmann at common-lisp.net Mon Sep 26 14:28:26 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Mon, 26 Sep 2011 07:28:26 -0700 Subject: [isidorus-cvs] r983 - in trunk/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Mon Sep 26 07:28:25 2011 New Revision: 983 Log: gdl-frontend: updating the hosted javascript-files for the gdl-frontend Deleted: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/14CD8B5AEEBA08A9924DB4F2D259444E.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/1FBCFA2B16E083419DC22ADFC6EE3C47.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/3BFF09C076E218EF68C7F6FF75CC5B8A.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/467C3B49DDE1EC44F81C93AA87425C1C.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/49CB40FF34B545B611623F33CE0C73BB.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/D67155A4B4320649EC6CC5E58057DE2F.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/ trunk/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Tue Sep 27 07:07:08 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 00:07:08 -0700 Subject: [isidorus-cvs] r984 - trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 27 00:07:07 2011 New Revision: 984 Log: gdl-frontend: Widgets: if the load-screen is shown, the web browser's scrollbars are disabled now Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Mon Sep 26 07:28:25 2011 (r983) +++ trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 27 00:07:07 2011 (r984) @@ -115,11 +115,13 @@ public void removeLoadScreenPanel(){ + Window.enableScrolling(true); if(this.loadScreenPanel != null) this.loadScreenPanel.removeFromParent(); } public void createLoadScreenPanel(String title, String message){ + Window.enableScrolling(false); this.removeLoadScreenPanel(); this.loadScreenPanel = new LoadScreenPanel(title, message); RootPanel.get().add(this.loadScreenPanel); From lgiessmann at common-lisp.net Tue Sep 27 07:08:46 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 00:08:46 -0700 Subject: [isidorus-cvs] r985 - in trunk/src/anaToMia/hosted_files/gdl_widgets: . gwt gwt/clean gwt/clean/images Message-ID: Author: lgiessmann Date: Tue Sep 27 00:08:46 2011 New Revision: 985 Log: gdl-frontend: updating the hosted javascript files Added: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/33B0C6C5A775BCE32EE1EAA7EF11C0D4.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/36004DA5ADE487724BE5B76808AAC0D5.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/89663141F0990B1A0FEF7C33FB798929.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/90B8CD7818E8571DB7F2CF2FF90154E6.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/B4F2F204DB044F0507022ECBA101646E.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/DFE6D47D99E891BF773EC8F841437979.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/hosted.html Added: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/33B0C6C5A775BCE32EE1EAA7EF11C0D4.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/33B0C6C5A775BCE32EE1EAA7EF11C0D4.cache.html Tue Sep 27 00:08:46 2011 (r985) @@ -0,0 +1,1776 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/36004DA5ADE487724BE5B76808AAC0D5.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/36004DA5ADE487724BE5B76808AAC0D5.cache.html Tue Sep 27 00:08:46 2011 (r985) @@ -0,0 +1,1762 @@ + + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/89663141F0990B1A0FEF7C33FB798929.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/89663141F0990B1A0FEF7C33FB798929.cache.html Tue Sep 27 00:08:46 2011 (r985) @@ -0,0 +1,1738 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/90B8CD7818E8571DB7F2CF2FF90154E6.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/90B8CD7818E8571DB7F2CF2FF90154E6.cache.html Tue Sep 27 00:08:46 2011 (r985) @@ -0,0 +1,1747 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/B4F2F204DB044F0507022ECBA101646E.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/B4F2F204DB044F0507022ECBA101646E.cache.html Tue Sep 27 00:08:46 2011 (r985) @@ -0,0 +1,1749 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/DFE6D47D99E891BF773EC8F841437979.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/DFE6D47D99E891BF773EC8F841437979.cache.html Tue Sep 27 00:08:46 2011 (r985) @@ -0,0 +1,1794 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Tue Sep 27 00:08:46 2011 (r985) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='33B0C6C5A775BCE32EE1EAA7EF11C0D4',Pb='36004DA5ADE487724BE5B76808AAC0D5',Qb='89663141F0990B1A0FEF7C33FB798929',Rb='90B8CD7818E8571DB7F2CF2FF90154E6',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + From lgiessmann at common-lisp.net Tue Sep 27 07:12:43 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 00:12:43 -0700 Subject: [isidorus-cvs] r986 - in trunk/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Tue Sep 27 00:12:42 2011 New Revision: 986 Log: gdl-frontend: updating the hosted javascript files Deleted: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/33B0C6C5A775BCE32EE1EAA7EF11C0D4.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/36004DA5ADE487724BE5B76808AAC0D5.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/89663141F0990B1A0FEF7C33FB798929.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/90B8CD7818E8571DB7F2CF2FF90154E6.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/B4F2F204DB044F0507022ECBA101646E.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/DFE6D47D99E891BF773EC8F841437979.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/ trunk/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Tue Sep 27 07:20:11 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 00:20:11 -0700 Subject: [isidorus-cvs] r987 - in trunk/src: . anaToMia anaToMia/hosted_files/gdl_widgets anaToMia/hosted_files/gdl_widgets/gwt anaToMia/hosted_files/gdl_widgets/gwt/clean anaToMia/hosted_files/gdl_widgets/gwt/clean/images Message-ID: Author: lgiessmann Date: Tue Sep 27 00:20:10 2011 New Revision: 987 Log: gdl-frontend: updating the hosted javascript files Added: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/5303FCC953DDA29C0534FBA7C9CC87AD.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/5B17D1E106849F5B22950E2455583B4D.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/67CFBF9BFFD0A97F50547EF3B24ECD0C.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/CCE55B46752C01D52FE34579FED1A180.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/CF97C99AFEF35F7CDAF54958B2577D91.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/DFF85D668DEA474F42B70C1DB93C4B04.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/hosted.html Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm trunk/src/isidorus.asd Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm ============================================================================== --- trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Tue Sep 27 00:12:42 2011 (r986) +++ trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm Tue Sep 27 00:20:10 2011 (r987) @@ -135,7 +135,7 @@ - + @@ -159,7 +159,7 @@ - + @@ -183,7 +183,7 @@ - + @@ -207,7 +207,7 @@ - + @@ -231,7 +231,7 @@ - + @@ -255,7 +255,7 @@ - + @@ -279,7 +279,7 @@ - + @@ -303,7 +303,7 @@ - + @@ -327,7 +327,7 @@ - + @@ -351,7 +351,7 @@ - + @@ -375,7 +375,7 @@ - + @@ -399,7 +399,7 @@ - + @@ -423,7 +423,7 @@ - + @@ -447,7 +447,7 @@ - + @@ -472,7 +472,7 @@ - + @@ -496,7 +496,7 @@ - + @@ -520,7 +520,7 @@ - + @@ -544,7 +544,7 @@ - + @@ -568,7 +568,7 @@ - + @@ -592,7 +592,7 @@ - + @@ -616,7 +616,7 @@ - + @@ -640,7 +640,7 @@ - + @@ -664,7 +664,7 @@ - + @@ -688,7 +688,7 @@ - + @@ -712,7 +712,7 @@ - + @@ -736,7 +736,7 @@ - + @@ -760,7 +760,7 @@ - + @@ -784,7 +784,7 @@ - + @@ -808,7 +808,7 @@ - + @@ -832,7 +832,7 @@ - + @@ -856,7 +856,7 @@ - + @@ -880,7 +880,7 @@ - + @@ -904,7 +904,7 @@ - + @@ -928,7 +928,7 @@ - + @@ -952,7 +952,7 @@ - + @@ -976,7 +976,7 @@ - + @@ -1000,7 +1000,7 @@ - + @@ -1024,7 +1024,7 @@ - + @@ -1048,7 +1048,7 @@ - + @@ -1072,7 +1072,7 @@ - + @@ -1096,7 +1096,7 @@ - + @@ -1121,7 +1121,7 @@ - + @@ -1145,7 +1145,7 @@ - + @@ -1169,7 +1169,7 @@ - + @@ -1193,7 +1193,7 @@ - + @@ -1217,7 +1217,7 @@ - + @@ -1241,7 +1241,7 @@ - + @@ -1265,7 +1265,7 @@ - + @@ -1289,7 +1289,7 @@ - + @@ -1313,7 +1313,7 @@ - + @@ -1337,7 +1337,7 @@ - + @@ -1361,7 +1361,7 @@ - + @@ -1385,7 +1385,7 @@ - + @@ -1409,7 +1409,7 @@ - + @@ -1433,7 +1433,7 @@ - + @@ -1457,7 +1457,7 @@ - + @@ -1481,7 +1481,7 @@ - + @@ -1505,7 +1505,7 @@ - + @@ -1529,7 +1529,7 @@ - + @@ -1553,7 +1553,7 @@ - + @@ -1577,7 +1577,7 @@ - + @@ -1601,7 +1601,7 @@ - + @@ -1625,7 +1625,7 @@ - + @@ -1649,7 +1649,7 @@ - + @@ -1673,7 +1673,7 @@ - + @@ -1697,7 +1697,7 @@ - + @@ -1721,7 +1721,7 @@ - + @@ -1745,7 +1745,7 @@ - + @@ -1769,7 +1769,7 @@ - + @@ -1793,7 +1793,7 @@ - + @@ -1817,7 +1817,7 @@ - + @@ -1841,7 +1841,7 @@ - + @@ -1865,7 +1865,7 @@ - + Added: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/5303FCC953DDA29C0534FBA7C9CC87AD.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/5303FCC953DDA29C0534FBA7C9CC87AD.cache.html Tue Sep 27 00:20:10 2011 (r987) @@ -0,0 +1,1763 @@ + + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/5B17D1E106849F5B22950E2455583B4D.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/5B17D1E106849F5B22950E2455583B4D.cache.html Tue Sep 27 00:20:10 2011 (r987) @@ -0,0 +1,1739 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/67CFBF9BFFD0A97F50547EF3B24ECD0C.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/67CFBF9BFFD0A97F50547EF3B24ECD0C.cache.html Tue Sep 27 00:20:10 2011 (r987) @@ -0,0 +1,1748 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/CCE55B46752C01D52FE34579FED1A180.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/CCE55B46752C01D52FE34579FED1A180.cache.html Tue Sep 27 00:20:10 2011 (r987) @@ -0,0 +1,1750 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/CF97C99AFEF35F7CDAF54958B2577D91.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/CF97C99AFEF35F7CDAF54958B2577D91.cache.html Tue Sep 27 00:20:10 2011 (r987) @@ -0,0 +1,1777 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/DFF85D668DEA474F42B70C1DB93C4B04.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/DFF85D668DEA474F42B70C1DB93C4B04.cache.html Tue Sep 27 00:20:10 2011 (r987) @@ -0,0 +1,1795 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Tue Sep 27 00:20:10 2011 (r987) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='5303FCC953DDA29C0534FBA7C9CC87AD',Pb='5B17D1E106849F5B22950E2455583B4D',Qb='67CFBF9BFFD0A97F50547EF3B24ECD0C',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + Modified: trunk/src/isidorus.asd ============================================================================== --- trunk/src/isidorus.asd Tue Sep 27 00:12:42 2011 (r986) +++ trunk/src/isidorus.asd Tue Sep 27 00:20:10 2011 (r987) @@ -251,15 +251,15 @@ (:static-file "GDL_Widgets.html") (:module "gdl_widgets" :components ((:static-file "0A9476898799A150D840F0B1C3672921.cache.png") - (:static-file "14CD8B5AEEBA08A9924DB4F2D259444E.cache.html") - (:static-file "1FBCFA2B16E083419DC22ADFC6EE3C47.cache.html") (:static-file "396F806CD63ABD414BFBB9D57429F05B.cache.png") - (:static-file "3BFF09C076E218EF68C7F6FF75CC5B8A.cache.html") - (:static-file "467C3B49DDE1EC44F81C93AA87425C1C.cache.html") - (:static-file "49CB40FF34B545B611623F33CE0C73BB.cache.html") + (:static-file "5303FCC953DDA29C0534FBA7C9CC87AD.cache.html") + (:static-file "5B17D1E106849F5B22950E2455583B4D.cache.html") + (:static-file "67CFBF9BFFD0A97F50547EF3B24ECD0C.cache.html") + (:static-file "CCE55B46752C01D52FE34579FED1A180.cache.html") + (:static-file "CF97C99AFEF35F7CDAF54958B2577D91.cache.html") (:static-file "clear.cache.gif") - (:static-file "D67155A4B4320649EC6CC5E58057DE2F.cache.html") (:static-file "DF7764EEC1903CD03C9545B354D8D8E4.cache.png") + (:static-file "DFF85D668DEA474F42B70C1DB93C4B04.cache.html") (:static-file "E44767377485D18D6B6864F65BA8EF73.cache.png") (:static-file "EDC7827FEEA59EE44AD790B1C6430C45.cache.png") (:static-file "gdl_widgets.nocache.js") From lgiessmann at common-lisp.net Tue Sep 27 08:23:43 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 01:23:43 -0700 Subject: [isidorus-cvs] r988 - in trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base isidorus Message-ID: Author: lgiessmann Date: Tue Sep 27 01:23:43 2011 New Revision: 988 Log: gdl-frontend: Widgets: fixed a bug when creating a LoadScreenPanel and (un-)setting the browser's scrollbars Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 27 00:20:10 2011 (r987) +++ trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Tue Sep 27 01:23:43 2011 (r988) @@ -5,16 +5,16 @@ import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.Timer; -import com.google.gwt.user.client.ui.HorizontalPanel; +import com.google.gwt.user.client.Window; import com.google.gwt.user.client.ui.RootPanel; public class TestClass implements EntryPoint{ - HorizontalPanel mainPanel = new HorizontalPanel(); - GdlPanel gdlPanel = null; - @Override public void onModuleLoad() { + RootPanel.get().setHeight("1500px"); + RootPanel.get().setWidth("2500px"); + Window.enableScrolling(false); final LoadScreenPanel lsp = new LoadScreenPanel("Title", "message"); RootPanel.get().add(lsp); @@ -22,57 +22,12 @@ @Override public void run() { lsp.removeFromParent(); + Window.enableScrolling(true); } }; t.schedule(5000); - /* - try{ - RootPanel.get("GWT_Content").add(mainPanel); - mainPanel.setBorderWidth(1); - mainPanel.setPixelSize(1000, 600); - - ArrayList> requestedTopicsToCreate = new ArrayList>(); - requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Hash-Object", TopicIdentifierTypes.SubjectIdentifier)); - //requestedTopicsToCreate.add(new Pair("http://textgrid.org/serviceregistry/model/types/Environment", TopicIdentifierTypes.SubjectIdentifier)); - //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Poet", TopicIdentifierTypes.SubjectIdentifier)); - //requestedTopicsToCreate.add(new Pair("http://psi.test.org/gdl-test/Musician", TopicIdentifierTypes.SubjectIdentifier)); - - //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-env-1", TopicIdentifierTypes.SubjectIdentifier); - //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/test-hash-2", TopicIdentifierTypes.SubjectIdentifier); - //Pair requestedTopicToEdit = new Pair("http://textgrid.org/serviceregistry/hash-object/Test Environment 1/test1", TopicIdentifierTypes.SubjectIdentifier); - gdlPanel = new GdlPanel(null, requestedTopicsToCreate); - - gdlPanel.addClickHandler("hash_object_reset_button_id", new ClickHandler() { - @Override - public void onClick(ClickEvent event) { - Element elem = DOM.getElementById("hash_object_text_key_id__GDL_0"); - ((TextAreaElement)elem).setValue(""); - elem = DOM.getElementById("hash_object_text_value_id__GDL_0"); - ((TextAreaElement)elem).setValue(""); - } - }); - - mainPanel.add(gdlPanel); - gdlPanel.setTmEngine(new JtmsTmEngine()); - gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback()); - gdlPanel.setCommitCallback(new CommitCallback()); - gdlPanel.setDeleteCallback(new DeleteCallback()); - - Button requestButton = new Button("load schema"); - requestButton.addClickHandler(new ClickHandler() { - @Override - public void onClick(ClickEvent event) { - gdlPanel.loadSchema(); - } - }); - - mainPanel.add(requestButton); - }catch(Exception e){ - e.printStackTrace(); - Window.alert(">> e >> " + e.getClass() + " >> " + e.getMessage()); - } - */ + } } Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 27 00:20:10 2011 (r987) +++ trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 27 01:23:43 2011 (r988) @@ -121,8 +121,8 @@ public void createLoadScreenPanel(String title, String message){ - Window.enableScrolling(false); this.removeLoadScreenPanel(); + Window.enableScrolling(false); this.loadScreenPanel = new LoadScreenPanel(title, message); RootPanel.get().add(this.loadScreenPanel); } From lgiessmann at common-lisp.net Tue Sep 27 08:26:19 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 01:26:19 -0700 Subject: [isidorus-cvs] r989 - in trunk/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Tue Sep 27 01:26:18 2011 New Revision: 989 Log: gdl-frontend: updating the hosted javascript files Deleted: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/5303FCC953DDA29C0534FBA7C9CC87AD.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/5B17D1E106849F5B22950E2455583B4D.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/67CFBF9BFFD0A97F50547EF3B24ECD0C.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/CCE55B46752C01D52FE34579FED1A180.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/CF97C99AFEF35F7CDAF54958B2577D91.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/DFF85D668DEA474F42B70C1DB93C4B04.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/ trunk/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Tue Sep 27 08:30:12 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 01:30:12 -0700 Subject: [isidorus-cvs] r990 - in trunk/src: . anaToMia/hosted_files/gdl_widgets anaToMia/hosted_files/gdl_widgets/gwt anaToMia/hosted_files/gdl_widgets/gwt/clean anaToMia/hosted_files/gdl_widgets/gwt/clean/images Message-ID: Author: lgiessmann Date: Tue Sep 27 01:30:12 2011 New Revision: 990 Log: gdl-frontend: updating the hosted javascript files Added: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/2C0558ED1FAFFFED1D140C30B48C9AB2.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/42D3011AAE3B390A4165AE5B2021E5C2.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/71129231AFC3DED0804CA53174F61D6F.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/773306FBBFD22493E155D6A8C6FEB1ED.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/9269951F6415B46376381C9ACBE809AE.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/A870EA8FD2045FC70A003052F95F3612.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean.css trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/clean_rtl.css trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/ trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/circles_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/corner_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/hborder_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_horz.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/thumb_vertical.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/clean/images/vborder_ie6.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/hosted.html Modified: trunk/src/isidorus.asd Added: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/2C0558ED1FAFFFED1D140C30B48C9AB2.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/2C0558ED1FAFFFED1D140C30B48C9AB2.cache.html Tue Sep 27 01:30:12 2011 (r990) @@ -0,0 +1,1748 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/42D3011AAE3B390A4165AE5B2021E5C2.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/42D3011AAE3B390A4165AE5B2021E5C2.cache.html Tue Sep 27 01:30:12 2011 (r990) @@ -0,0 +1,1777 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/71129231AFC3DED0804CA53174F61D6F.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/71129231AFC3DED0804CA53174F61D6F.cache.html Tue Sep 27 01:30:12 2011 (r990) @@ -0,0 +1,1750 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/773306FBBFD22493E155D6A8C6FEB1ED.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/773306FBBFD22493E155D6A8C6FEB1ED.cache.html Tue Sep 27 01:30:12 2011 (r990) @@ -0,0 +1,1739 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/9269951F6415B46376381C9ACBE809AE.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/9269951F6415B46376381C9ACBE809AE.cache.html Tue Sep 27 01:30:12 2011 (r990) @@ -0,0 +1,1763 @@ + + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/A870EA8FD2045FC70A003052F95F3612.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/A870EA8FD2045FC70A003052F95F3612.cache.html Tue Sep 27 01:30:12 2011 (r990) @@ -0,0 +1,1795 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Tue Sep 27 01:30:12 2011 (r990) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='2C0558ED1FAFFFED1D140C30B48C9AB2',Pb='42D3011AAE3B390A4165AE5B2021E5C2',Qb='71129231AFC3DED0804CA53174F61D6F',Rb='773306FBBFD22493E155D6A8C6FEB1ED',Sb='9269951F6415B46376381C9ACBE809AE',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + Modified: trunk/src/isidorus.asd ============================================================================== --- trunk/src/isidorus.asd Tue Sep 27 01:26:18 2011 (r989) +++ trunk/src/isidorus.asd Tue Sep 27 01:30:12 2011 (r990) @@ -251,17 +251,17 @@ (:static-file "GDL_Widgets.html") (:module "gdl_widgets" :components ((:static-file "0A9476898799A150D840F0B1C3672921.cache.png") + (:static-file "2C0558ED1FAFFFED1D140C30B48C9AB2.cache.html") (:static-file "396F806CD63ABD414BFBB9D57429F05B.cache.png") - (:static-file "5303FCC953DDA29C0534FBA7C9CC87AD.cache.html") - (:static-file "5B17D1E106849F5B22950E2455583B4D.cache.html") - (:static-file "67CFBF9BFFD0A97F50547EF3B24ECD0C.cache.html") - (:static-file "CCE55B46752C01D52FE34579FED1A180.cache.html") - (:static-file "CF97C99AFEF35F7CDAF54958B2577D91.cache.html") + (:static-file "42D3011AAE3B390A4165AE5B2021E5C2.cache.html") + (:static-file "71129231AFC3DED0804CA53174F61D6F.cache.html") + (:static-file "773306FBBFD22493E155D6A8C6FEB1ED.cache.html") + (:static-file "9269951F6415B46376381C9ACBE809AE.cache.html") (:static-file "clear.cache.gif") + (:static-file "A870EA8FD2045FC70A003052F95F3612.cache.html") (:static-file "DF7764EEC1903CD03C9545B354D8D8E4.cache.png") - (:static-file "DFF85D668DEA474F42B70C1DB93C4B04.cache.html") (:static-file "E44767377485D18D6B6864F65BA8EF73.cache.png") - (:static-file "EDC7827FEEA59EE44AD790B1C6430C45.cache.png") + (:static-file "A870EA8FD2045FC70A003052F95F3612.cache.html") (:static-file "gdl_widgets.nocache.js") (:static-file "hosted.html") (:static-file "textgrid_small.png") From lgiessmann at common-lisp.net Tue Sep 27 08:34:03 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 01:34:03 -0700 Subject: [isidorus-cvs] r991 - trunk/src Message-ID: Author: lgiessmann Date: Tue Sep 27 01:34:02 2011 New Revision: 991 Log: trunk: fixed a bug in isidorus.asd Modified: trunk/src/isidorus.asd Modified: trunk/src/isidorus.asd ============================================================================== --- trunk/src/isidorus.asd Tue Sep 27 01:30:12 2011 (r990) +++ trunk/src/isidorus.asd Tue Sep 27 01:34:02 2011 (r991) @@ -257,11 +257,11 @@ (:static-file "71129231AFC3DED0804CA53174F61D6F.cache.html") (:static-file "773306FBBFD22493E155D6A8C6FEB1ED.cache.html") (:static-file "9269951F6415B46376381C9ACBE809AE.cache.html") - (:static-file "clear.cache.gif") (:static-file "A870EA8FD2045FC70A003052F95F3612.cache.html") + (:static-file "clear.cache.gif") (:static-file "DF7764EEC1903CD03C9545B354D8D8E4.cache.png") (:static-file "E44767377485D18D6B6864F65BA8EF73.cache.png") - (:static-file "A870EA8FD2045FC70A003052F95F3612.cache.html") + (:static-file "EDC7827FEEA59EE44AD790B1C6430C45.cache.png") (:static-file "gdl_widgets.nocache.js") (:static-file "hosted.html") (:static-file "textgrid_small.png") From lgiessmann at common-lisp.net Tue Sep 27 08:54:08 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 01:54:08 -0700 Subject: [isidorus-cvs] r992 - trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets Message-ID: Author: lgiessmann Date: Tue Sep 27 01:54:08 2011 New Revision: 992 Log: gdl-frontend: Widgets: fixed a bug with the cursor of some textfields Modified: trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Modified: trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Tue Sep 27 01:34:02 2011 (r991) +++ trunk/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Tue Sep 27 01:54:08 2011 (r992) @@ -66,7 +66,7 @@ {"subject_identifiers":["[gdl:width]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:padding-left]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:height]"], "instance_of":["si:[tmcl:occurrence-type]"]}, - {"subject_identifiers":["[gdl:pointer]"], "instance_of":["si:[tmcl:occurrence-type]"]}, + {"subject_identifiers":["[gdl:cursor]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:border-style]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:background-color]"], "instance_of":["si:[tmcl:occurrence-type]"]}, {"subject_identifiers":["[gdl:color]"], "instance_of":["si:[tmcl:occurrence-type]"]}, @@ -130,7 +130,7 @@ {"subject_identifiers":["[tgg:hash-object-creator-text-label-key-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-creator-text-label-key-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"key:"}]}, - {"subject_identifiers":["[tgg:hash-object-creator-text-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_key_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"460px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:hash-object-creator-text-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_key_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"460px"},{"type":"si:[gdl:cursor]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-key-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"40px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-key-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, @@ -139,7 +139,7 @@ {"subject_identifiers":["[tgg:hash-object-creator-text-label-value-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, {"subject_identifiers":["[tgg:hash-object-creator-text-label-value-value]"], "instance_of":["si:[gdlt:Default-Literal-Value]"], "occurrences":[{"type":"si:[gdl:literal-value]", "value":"value:"}]}, - {"subject_identifiers":["[tgg:hash-object-creator-text-value]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_value_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"460px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, + {"subject_identifiers":["[tgg:hash-object-creator-text-value]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_value_id"}, {"type":"si:[gdl:readonly]", "value":"false"}, {"type":"si:[gdl:width]", "value":"460px"},{"type":"si:[gdl:cursor]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}, {"type":"si:[gdl:padding-left]", "value":"2px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-value-position]"], "instance_of":["si:[gdlt:Position]"], "occurrences":[{"type":"si:[gdl:position-style]", "value":"absolute"}, {"type":"si:[gdl:top]", "value":"70px"}, {"type":"si:[gdl:left]", "value":"120px"}]}, {"subject_identifiers":["[tgg:hash-object-creator-text-value-value-group]"], "instance_of":["si:[gdlt:Value-Group]"]}, From lgiessmann at common-lisp.net Tue Sep 27 08:58:23 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 01:58:23 -0700 Subject: [isidorus-cvs] r993 - trunk/src/anaToMia Message-ID: Author: lgiessmann Date: Tue Sep 27 01:58:23 2011 New Revision: 993 Log: gdl-frontend: fixed the gdl-schema Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm ============================================================================== --- trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Tue Sep 27 01:54:08 2011 (r992) +++ trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Tue Sep 27 01:58:23 2011 (r993) @@ -4240,13 +4240,6 @@ - - - - - - - @@ -4832,7 +4825,7 @@ - + text @@ -4995,7 +4988,7 @@ - + text @@ -5271,7 +5264,7 @@ - + none From lgiessmann at common-lisp.net Tue Sep 27 11:01:42 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 04:01:42 -0700 Subject: [isidorus-cvs] r994 - trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus Message-ID: Author: lgiessmann Date: Tue Sep 27 04:01:41 2011 New Revision: 994 Log: gdl-frontend: Widgets: fixed a bug in the request that gets all psis Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Modified: trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java ============================================================================== --- trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 27 01:58:23 2011 (r993) +++ trunk/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/GdlWebPage.java Tue Sep 27 04:01:41 2011 (r994) @@ -133,16 +133,18 @@ String postData = null; if(IsidorusConstants.HASH_OBJECT_PSI.equals(GdlWebPage.this.topicTypePsi)){ url = URL.encode(IsidorusConstants.GET_HASH_OBJECT_PSIS_URL); - postData = "PREFIX pref:\n" + + postData = "PREFIX types:\n" + + "PREFIX model:\n" + "SELECT ?topics WHERE {\n" + - "?topics a pref:Hash-Object.\n" + + "?topics a types:Hash-Object.\n" + + "?topics model:hash-type \"confserver\".\n" + "}"; } else if(IsidorusConstants.ENVIRONMENT_PSI.equals(GdlWebPage.this.topicTypePsi)){ url = URL.encode(IsidorusConstants.GET_ENVIRONMENT_PSIS_URL); - postData = "PREFIX pref:\n" + + postData = "PREFIX types:\n" + "SELECT ?topics WHERE {\n" + - "?topics a pref:Environment.\n" + + "?topics a types:Environment.\n" + "}"; } else{ From lgiessmann at common-lisp.net Tue Sep 27 11:05:20 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 04:05:20 -0700 Subject: [isidorus-cvs] r995 - in trunk/src/anaToMia/hosted_files/gdl_widgets: . gwt Message-ID: Author: lgiessmann Date: Tue Sep 27 04:05:20 2011 New Revision: 995 Log: gdl-frontend: updating the hosted javascript files Deleted: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/2C0558ED1FAFFFED1D140C30B48C9AB2.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/42D3011AAE3B390A4165AE5B2021E5C2.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/71129231AFC3DED0804CA53174F61D6F.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/773306FBBFD22493E155D6A8C6FEB1ED.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/9269951F6415B46376381C9ACBE809AE.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/A870EA8FD2045FC70A003052F95F3612.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js trunk/src/anaToMia/hosted_files/gdl_widgets/gwt/ trunk/src/anaToMia/hosted_files/gdl_widgets/hosted.html From lgiessmann at common-lisp.net Tue Sep 27 11:19:13 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Tue, 27 Sep 2011 04:19:13 -0700 Subject: [isidorus-cvs] r996 - in trunk/src: . anaToMia anaToMia/hosted_files/gdl_widgets rest_interface Message-ID: Author: lgiessmann Date: Tue Sep 27 04:19:13 2011 New Revision: 996 Log: gdl-frontend: updating the hosted javascript files; fixed a bug iun the basic-authentication for the gdl-frontend Added: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/6B54E4800D1E392F1A7D2FB37E32F769.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/7EAC2FFF64239EBC41F827323670E77B.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/8E0B47EA1DDAF53E339B2CB012988DBA.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/C9093CBE7F6CE44681C72C5D88EFDDF7.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/E41B661129B3397EA76E2A217B664D6E.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/FF1136C3452C102C0DD5EDFEAFFE5FE4.cache.html trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif (contents, props changed) trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js trunk/src/anaToMia/hosted_files/gdl_widgets/hosted.html Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm trunk/src/isidorus.asd trunk/src/rest_interface/set-up-gdl-interface.lisp Modified: trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm ============================================================================== --- trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Tue Sep 27 04:05:20 2011 (r995) +++ trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm Tue Sep 27 04:19:13 2011 (r996) @@ -5264,7 +5264,7 @@ - + none Added: trunk/src/anaToMia/hosted_files/gdl_widgets/0A9476898799A150D840F0B1C3672921.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/396F806CD63ABD414BFBB9D57429F05B.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/6B54E4800D1E392F1A7D2FB37E32F769.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/6B54E4800D1E392F1A7D2FB37E32F769.cache.html Tue Sep 27 04:19:13 2011 (r996) @@ -0,0 +1,1795 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/7EAC2FFF64239EBC41F827323670E77B.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/7EAC2FFF64239EBC41F827323670E77B.cache.html Tue Sep 27 04:19:13 2011 (r996) @@ -0,0 +1,1748 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/8E0B47EA1DDAF53E339B2CB012988DBA.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/8E0B47EA1DDAF53E339B2CB012988DBA.cache.html Tue Sep 27 04:19:13 2011 (r996) @@ -0,0 +1,1739 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/C9093CBE7F6CE44681C72C5D88EFDDF7.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/C9093CBE7F6CE44681C72C5D88EFDDF7.cache.html Tue Sep 27 04:19:13 2011 (r996) @@ -0,0 +1,1777 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/DF7764EEC1903CD03C9545B354D8D8E4.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/E41B661129B3397EA76E2A217B664D6E.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/E41B661129B3397EA76E2A217B664D6E.cache.html Tue Sep 27 04:19:13 2011 (r996) @@ -0,0 +1,1750 @@ + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/E44767377485D18D6B6864F65BA8EF73.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/EDC7827FEEA59EE44AD790B1C6430C45.cache.png ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/FF1136C3452C102C0DD5EDFEAFFE5FE4.cache.html ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/FF1136C3452C102C0DD5EDFEAFFE5FE4.cache.html Tue Sep 27 04:19:13 2011 (r996) @@ -0,0 +1,1763 @@ + + + + + + + + + + + + \ No newline at end of file Added: trunk/src/anaToMia/hosted_files/gdl_widgets/clear.cache.gif ============================================================================== Binary file. No diff available. Added: trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/src/anaToMia/hosted_files/gdl_widgets/gdl_widgets.nocache.js Tue Sep 27 04:19:13 2011 (r996) @@ -0,0 +1,17 @@ +function gdl_widgets(){var O='',vb='" for "gwt:onLoadErrorFn"',tb='" for "gwt:onPropertyErrorFn"',hb='"><\/script>',Y='#',Vb='.cache.html',$='/',Ob='6B54E4800D1E392F1A7D2FB37E32F769',Pb='7EAC2FFF64239EBC41F827323670E77B',Qb='8E0B47EA1DDAF53E339B2CB012988DBA',Ub=':',nb='::',ec=' + +This html file is for Development Mode support. + Modified: trunk/src/isidorus.asd ============================================================================== --- trunk/src/isidorus.asd Tue Sep 27 04:05:20 2011 (r995) +++ trunk/src/isidorus.asd Tue Sep 27 04:19:13 2011 (r996) @@ -251,17 +251,17 @@ (:static-file "GDL_Widgets.html") (:module "gdl_widgets" :components ((:static-file "0A9476898799A150D840F0B1C3672921.cache.png") - (:static-file "2C0558ED1FAFFFED1D140C30B48C9AB2.cache.html") (:static-file "396F806CD63ABD414BFBB9D57429F05B.cache.png") - (:static-file "42D3011AAE3B390A4165AE5B2021E5C2.cache.html") - (:static-file "71129231AFC3DED0804CA53174F61D6F.cache.html") - (:static-file "773306FBBFD22493E155D6A8C6FEB1ED.cache.html") - (:static-file "9269951F6415B46376381C9ACBE809AE.cache.html") - (:static-file "A870EA8FD2045FC70A003052F95F3612.cache.html") - (:static-file "clear.cache.gif") + (:static-file "6B54E4800D1E392F1A7D2FB37E32F769.cache.html") + (:static-file "7EAC2FFF64239EBC41F827323670E77B.cache.html") + (:static-file "8E0B47EA1DDAF53E339B2CB012988DBA.cache.html") + (:static-file "C9093CBE7F6CE44681C72C5D88EFDDF7.cache.html") (:static-file "DF7764EEC1903CD03C9545B354D8D8E4.cache.png") + (:static-file "E41B661129B3397EA76E2A217B664D6E.cache.html") + (:static-file "clear.cache.gif") (:static-file "E44767377485D18D6B6864F65BA8EF73.cache.png") (:static-file "EDC7827FEEA59EE44AD790B1C6430C45.cache.png") + (:static-file "FF1136C3452C102C0DD5EDFEAFFE5FE4.cache.html") (:static-file "gdl_widgets.nocache.js") (:static-file "hosted.html") (:static-file "textgrid_small.png") Modified: trunk/src/rest_interface/set-up-gdl-interface.lisp ============================================================================== --- trunk/src/rest_interface/set-up-gdl-interface.lisp Tue Sep 27 04:05:20 2011 (r995) +++ trunk/src/rest_interface/set-up-gdl-interface.lisp Tue Sep 27 04:19:13 2011 (r996) @@ -49,23 +49,48 @@ :host-file host-file :base-path base-path) (push - (create-regex-dispatcher get-fragment #'return-json-fragment-handler) + (create-regex-dispatcher get-fragment + (if (> *use-http-authentication* 2) + (lambda(&optional param) + (with-http-authentication + (return-json-fragment-handler param))) + #'return-json-fragment-handler)) hunchentoot:*dispatch-table*) (push - (create-regex-dispatcher get-schema #'return-gdl-schema-handler) + (create-regex-dispatcher get-schema + (if (> *use-http-authentication* 2) + (lambda() + (with-http-authentication + (return-gdl-schema-handler))) + #'return-gdl-schema-handler)) hunchentoot:*dispatch-table*) (push - (create-regex-dispatcher commit-fragment #'commit-fragment-handler) + (create-regex-dispatcher commit-fragment + (if (> *use-http-authentication* 1) + (lambda() + (with-http-authentication + (commit-fragment-handler))) + #'commit-fragment-handler)) hunchentoot:*dispatch-table*) (push - (create-regex-dispatcher delete-fragment #'delete-handler) + (create-regex-dispatcher delete-fragment + (if (> *use-http-authentication* 1) + (lambda() + (with-http-authentication + (delete-handler))) + #'delete-handler)) hunchentoot:*dispatch-table*) (push - (create-regex-dispatcher gdl-sparql #'gdl-sparql-handler) + (create-regex-dispatcher gdl-sparql + (if (> *use-http-authentication* 2) + (lambda(&optional param) + (with-http-authentication + (gdl-sparql-handler param))) + #'gdl-sparql-handler)) hunchentoot:*dispatch-table*)) @@ -86,14 +111,27 @@ (namestring (asdf:component-pathname constants:*isidorus-system*)) base-path))) - (push - (create-static-file-dispatcher-and-handler - host-address-hash-object full-host-path "text/html") - hunchentoot:*dispatch-table*) - (push - (create-static-file-dispatcher-and-handler - host-address-environment full-host-path "text/html") - hunchentoot:*dispatch-table*) + (if (> *use-http-authentication* 0) + (progn + (define-easy-handler (isidorus-ui :uri host-address-hash-object + :default-request-type :get) + () + (with-http-authentication + (serve-file full-host-path "text/html"))) + (define-easy-handler (isidorus-ui :uri host-address-environment + :default-request-type :get) + () + (with-http-authentication + (serve-file full-host-path "text/html")))) + (progn + (push + (create-static-file-dispatcher-and-handler + host-address-hash-object full-host-path "text/html") + hunchentoot:*dispatch-table*) + (push + (create-static-file-dispatcher-and-handler + host-address-environment full-host-path "text/html") + hunchentoot:*dispatch-table*))) ; add all additional files (let ((absolute-base-path-len (length absolute-base-path))) (com.gigamonkeys.pathnames:walk-directory From lgiessmann at common-lisp.net Fri Sep 30 18:53:48 2011 From: lgiessmann at common-lisp.net (lgiessmann at common-lisp.net) Date: Fri, 30 Sep 2011 11:53:48 -0700 Subject: [isidorus-cvs] r997 - branches/gdl-frontend/src branches/gdl-frontend/src/unit_tests trunk/src trunk/src/anaToMia trunk/src/unit_tests Message-ID: Author: lgiessmann Date: Fri Sep 30 11:53:47 2011 New Revision: 997 Log: removed all files that contain textgrid data Deleted: branches/gdl-frontend/src/unit_tests/textgrid.xtm branches/gdl-frontend/src/unit_tests/textgrid_old.xtm trunk/src/anaToMia/TextGrid_ServiceRegistry_data.xtm trunk/src/anaToMia/TextGrid_ServiceRegistry_required_TMCL.xtm trunk/src/anaToMia/TextGrid_ServiceRegistry_required_schema.xtm trunk/src/unit_tests/textgrid.xtm trunk/src/unit_tests/textgrid_07.15.2011.xtm trunk/src/unit_tests/textgrid_old.xtm Modified: branches/gdl-frontend/src/isidorus.asd trunk/src/isidorus.asd Modified: branches/gdl-frontend/src/isidorus.asd ============================================================================== --- branches/gdl-frontend/src/isidorus.asd Tue Sep 27 04:19:13 2011 (r996) +++ branches/gdl-frontend/src/isidorus.asd Fri Sep 30 11:53:47 2011 (r997) @@ -119,10 +119,8 @@ :depends-on ("model" "atom" "xml" "TM-SPARQL" "json" "threading" "base-tools")) (:module "unit_tests" - :components ((:static-file "textgrid.xtm") - (:static-file "jtm_1.0_test.jtm") + :components ((:static-file "jtm_1.0_test.jtm") (:static-file "jtm_1.1_test.jtm") - (:static-file "textgrid_old.xtm") (:static-file "dangling_topicref.xtm") (:static-file "inconsistent.xtm") (:static-file "notificationbase.xtm") Modified: trunk/src/isidorus.asd ============================================================================== --- trunk/src/isidorus.asd Tue Sep 27 04:19:13 2011 (r996) +++ trunk/src/isidorus.asd Fri Sep 30 11:53:47 2011 (r997) @@ -121,10 +121,8 @@ :depends-on ("model" "atom" "xml" "TM-SPARQL" "json" "threading" "base-tools")) (:module "unit_tests" - :components ((:static-file "textgrid.xtm") - (:static-file "jtm_1.0_test.jtm") + :components ((:static-file "jtm_1.0_test.jtm") (:static-file "jtm_1.1_test.jtm") - (:static-file "textgrid_old.xtm") (:static-file "dangling_topicref.xtm") (:static-file "inconsistent.xtm") (:static-file "notificationbase.xtm") @@ -243,10 +241,7 @@ (:static-file "navi.css") (:static-file "main.css"))))) (:module "anaToMia" - :components ((:static-file "TextGrid_ServiceRegistry_data.xtm") - (:static-file "TextGrid_ServiceRegistry_required_schema.xtm") - (:static-file "TextGrid_ServiceRegistry_required_TMCL.xtm") - (:module "hosted_files" + :components ((:module "hosted_files" :components ((:static-file "GDL_Widgets.css") (:static-file "GDL_Widgets.html") (:module "gdl_widgets"