isidorus-cvs
Threads by month
- ----- 2025 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- 1037 discussions

[isidorus-cvs] r789 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets src/us/isidor/gdl/anaToMia/Widgets/base src/us/isidor/gdl/anaToMia/Widgets/text war/gdl_widgets
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 15:05:01 2011
New Revision: 789
Log:
gdl-frontend: Widgets: implemented addSubItem for GdlListBox => explicitly set Literal-Values, literal-values and tm-values of the constraint bound to the element's value-group are set; currently explecitely set TM-Values are not handled
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/base/GdlVisibleObject.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/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/TODO.txt
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/TODO.txt Thu Aug 25 14:25:06 2011 (r788)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/TODO.txt Thu Aug 25 15:05:01 2011 (r789)
@@ -7,6 +7,7 @@
* GdlButton
* GdlComplexData
* GdlListBox
+* implement the ahndling of default-values
* Implement TopicMaps data consumption
* Implement TopicMaps data generation
* Implement HiddenValue
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 Thu Aug 25 14:25:06 2011 (r788)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Thu Aug 25 15:05:01 2011 (r789)
@@ -2115,6 +2115,13 @@
}
+ // returns the display-by schema that is defined for the passed
+ // TM-Value that is bound to this element
+ public Topic getDisplayByOfTmValue(Topic tmValue) throws InvalidGdlSchemaException{
+ return TmHelper.getDisplayByTopicOf(tmValue);
+ }
+
+
// returns the preferred scope that is bound to the value-group of
// this element - or an empty ArrayList
public ArrayList<Topic> getPreferredScopeOfValueGroup() throws InvalidGdlSchemaException {
@@ -2127,6 +2134,13 @@
}
}
+
+ // returns the preferred scope that is bound to the passed TM-Value topic
+ // this element - or an empty ArrayList
+ public ArrayList<Topic> getPreferredScopeOfTmValue(Topic tmValue) throws InvalidGdlSchemaException{
+ return TmHelper.getPrefferedScopesForTopicOf(tmValue);
+ }
+
// returns the string that represents the topic topicToRepresent corresponding
// to the passed displayBy and prefferedScopes arguments
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 Thu Aug 25 14:25:06 2011 (r788)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java Thu Aug 25 15:05:01 2011 (r789)
@@ -1,16 +1,15 @@
package us.isidor.gdl.anaToMia.Widgets.text;
import java.util.ArrayList;
-
import com.google.gwt.event.shared.EventHandler;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.ListBox;
import com.google.gwt.user.client.ui.Widget;
-
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.PSIs;
+import us.isidor.gdl.anaToMia.Widgets.base.TmHelper;
import us.isidor.gdl.anaToMia.Widgets.environment.ActiveStyleHandler;
import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException;
import us.isidor.gdl.anaToMia.Widgets.environment.FocusStyleHandler;
@@ -27,15 +26,59 @@
public GdlListBox(Topic tmRepresentative, Construct receivedData) throws InvalidGdlSchemaException, ExecutionException{
super(tmRepresentative, receivedData);
- // TODO: create a ListBox element for each TM-elem
- this.createNewListBox().addItem("List-Box");
+
+ if(receivedData != null && this.getConstraint() != null) this.setReceivedData();
+ else this.setDefaultValue();
+
this.setNthButtons();
}
@Override
public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
- // TODO: implement
+ ArrayList<String> options = new ArrayList<String>();
+
+ // get the explicitly set TM-Values and Literal-Values.
+ // if no values were set explecitly, get the values for the constraint
+ ArrayList<String> exLiteralValues = this.getLiterals();
+ ArrayList<Topic> 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!");
+ } else if(exLiteralValues.size() != 0){
+ options = exLiteralValues;
+ } else if(exTmValues.size() != 0){
+ // TODO: get all Topics that are represented by a TM-Value
+ // TODO: get its string-representation
+ // TODO: add it to the options ArrayList
+ } else {
+ ArrayList<Topic> tmValues = this.getTmValuesForConstraint();
+ 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()));
+ }
+ }
+
+ ListBox lb = this.createNewListBox();
+ for(String item : options) lb.addItem(item);
+
+ int i = 0;
+ for( ; i != lb.getItemCount(); ++i){
+ if(lb.getItemText(i).equals(value)){
+ lb.setSelectedIndex(i);
+ break;
+ }
+ }
+
+ if(i == lb.getItemCount()){
+ lb.addItem(value);
+ for(i = 0 ; i != lb.getItemCount(); ++i){
+ if(lb.getItemText(i).equals(value)){
+ lb.setSelectedIndex(i);
+ break;
+ }
+ }
+ }
}
@@ -91,25 +134,6 @@
}
- // returns the gdl:one-per-group property - if no value is set the default value is returned
- public boolean getOnePerGroup() throws InvalidGdlSchemaException {
- Occurrence onePerGroupOcc = getNoneOrOneUnscopedOccurrence(PSIs.GDL.OccurrenceType.gdlOnePerGroup);
-
- if(onePerGroupOcc != null){
- String boolStr = onePerGroupOcc.getValue().toUpperCase();
- if(boolStr.equals("TRUE")){
- return true;
- } else if(boolStr.equals("FALSE")) {
- return false;
- } else {
- throw new InvalidGdlSchemaException("The occurrence " + PSIs.GDL.OccurrenceType.gdlOnePerGroup + " must be set to one of \"true\" or \"false\", but is \"" + onePerGroupOcc.getValue() + "\"");
- }
- } else {
- return false;
- }
- }
-
-
// returns an int instance of a gdl:size occurrence.
// If no gdl:size occurrence is set, the default value is returned
public int getSize() throws InvalidGdlSchemaException {
@@ -142,12 +166,7 @@
// directly when calling the ListBox constructor
}
-
- public void setOnePerGroup(Widget widget, boolean value){
- // TODO: implement => http://code.google.com/p/gwt-traction/source/browse/src/com/tractionsoftwar…
- }
-
-
+
// sets the css properties, by calling the super class's method and the local
// method, which sets some specific properties for the GdlText instance
@Override
@@ -155,6 +174,5 @@
super.setGdlStyle(widget);
this.setSize(widget, this.getSize());
- this.setOnePerGroup(widget, this.getOnePerGroup());
}
}
\ 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 Thu Aug 25 14:25:06 2011 (r788)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Thu Aug 25 15:05:01 2011 (r789)
@@ -1280,7 +1280,7 @@
],
"subject_locators":null,
"item_identifiers":null,
- "instance_of":["si:[pref_2:Text]"
+ "instance_of":["si:[pref_2:List-Box]"
],
"names":null,
"occurrences":[{
1
0

[isidorus-cvs] r788 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 14:25:06 2011
New Revision: 788
Log:
gdl-frontend: Widgets: added some methods to get the raw string of gdlt:Literal-Value instances
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/TmHelper.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 Thu Aug 25 07:41:29 2011 (r787)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Thu Aug 25 14:25:06 2011 (r788)
@@ -100,6 +100,8 @@
protected boolean prefferedScopesSet = false;
protected Topic displayByConstraint = null;
protected boolean displayByConstraintSet = false;
+ protected ArrayList<String> literals = new ArrayList<String>();
+ protected boolean literalsSet = false;
// some constructors
@@ -2059,6 +2061,18 @@
}
}
+
+ // returns an ArrayList of strings that are set to a value group as literal values
+ public ArrayList<String> getLiterals() throws InvalidGdlSchemaException {
+ if(this.literalsSet){
+ return this.literals;
+ } else {
+ this.literalsSet = true;
+ this.literals = TmHelper.getLiterals(this.getValueGroup());
+ return this.literals;
+ }
+ }
+
// returns the set literal value or null
public String getSetLiteralValue() throws InvalidGdlSchemaException {
@@ -2074,7 +2088,7 @@
}
- // returns the valid topic maps value for the constraint that is bound
+ // returns the valid topic maps value for the constraint bound
// to the value-group that is bound to this element - or an empty ArrayList
public ArrayList<Topic> getTmValuesForConstraint() throws InvalidGdlSchemaException, ExecutionException {
return TmHelper.getTmValuesForConstraint(this.getConstraint(), this.getValueGroup());
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 Aug 25 07:41:29 2011 (r787)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Thu Aug 25 14:25:06 2011 (r788)
@@ -846,7 +846,7 @@
}
- // returns the topics that represent the literal value for the passed value group
+ // returns the topics that represent the literal values for the passed value group
public static ArrayList<Topic> getLiteralValues(Topic valueGroup){
ArrayList<Topic> result = new ArrayList<Topic>();
if(valueGroup == null) return result;
@@ -861,6 +861,26 @@
}
+ // returns a string that is the literal value of the literal-value-topic
+ public static String getLiteral (Topic literalValue) throws InvalidGdlSchemaException {
+ if(literalValue == null) return null;
+
+ Occurrence occ = getSingleOccurrence(literalValue, getTopicByPsi(PSIs.GDL.OccurrenceType.gdlLiteralValue, literalValue.getTopicMap()));
+ if(occ == null) throw new InvalidGdlSchemaException("the topic " + getAnyIdOfTopic(literalValue) + " must be bound exactly once to an occurrence of the type " + PSIs.GDL.OccurrenceType.gdlLiteralValue + ", but is: 0");
+ else return occ.getValue();
+ }
+
+
+ // returns an ArrayList of strings that are set to a value group as literal values
+ public static ArrayList<String> getLiterals(Topic valueGroup) throws InvalidGdlSchemaException {
+ ArrayList<Topic> literalTopics = getLiteralValues(valueGroup);
+
+ ArrayList<String> result = new ArrayList<String>();
+ for (Topic topic : literalTopics) result.add(getLiteral(topic));
+
+ return result;
+ }
+
// returns the topic that can be used to satisfy the passed constraint.
public static ArrayList<Topic> getTmValuesForConstraint(Topic constraint, Topic valueGroup) throws InvalidGdlSchemaException, ExecutionException {
ArrayList<Topic> result = new ArrayList<Topic>();
@@ -873,7 +893,7 @@
} else if(isInstanceOf(constraint, PSIs.GDL.TopicType.gdlVariantNameScope)){
return getTmValuesForVariantNameScopeConstraint(constraint);
} else if(isInstanceOf(constraint, PSIs.GDL.TopicType.gdlRolePlayer)){
- return getTmValuesForRolePlayerConstraint(constraint);
+ return getTmValuesForRolePlayerConstraint(constraint, valueGroup);
} else if(isInstanceOf(constraint, PSIs.TMCL.tmclReifierConstraint)){
return getTmValuesForReifierConstraint(constraint);
} else if(isInstanceOf(constraint, PSIs.TMCL.tmclScopeConstraint)){
@@ -928,8 +948,20 @@
// returns the topic that can be used to satisfy the passed role-player-constraint.
- public static ArrayList<Topic> getTmValuesForRolePlayerConstraint(Topic rolePlayerConstraint) throws ExecutionException{
- throw new ExecutionException("this method is currently not implemented");
+ public static ArrayList<Topic> getTmValuesForRolePlayerConstraint(Topic rolePlayerConstraint, Topic valueGroup) throws ExecutionException, InvalidGdlSchemaException {
+ ArrayList<Topic> result = new ArrayList<Topic>();
+ if(rolePlayerConstraint == null || valueGroup == null) return result;
+
+ Topic topicRoleConstraint = getRootConstraintOfValueGroup(valueGroup, rolePlayerConstraint);
+ if(!isInstanceOf(topicRoleConstraint, PSIs.TMCL.tmclTopicRoleConstraint)) throw new InvalidGdlSchemaException("the root constraint of the topic " + getAnyIdOfTopic(rolePlayerConstraint) + " must be an instance of " + PSIs.TMCL.tmclTopicRoleConstraint + ", but is: " + getAnyIdOfTopic(topicRoleConstraint));
+
+ Pair<Topic, Topic> roleAndPlayerType = getConstrainedRoleAndPlayerTypeOfConstraint(topicRoleConstraint);
+ Topic playerType = roleAndPlayerType.getSecond();
+ JsArray<Topic> allTopics = rolePlayerConstraint.getTopicMap().getTopics();
+ for(int i = 0; i != allTopics.length(); ++i)
+ if(isInstanceOf(allTopics.get(i), playerType)) result.add(allTopics.get(i));
+
+ return result;
}
@@ -963,8 +995,10 @@
for(int i = 0; i != allTopics.length(); ++i) if(isSupertypeOf(allTopics.get(i), typeTopics.get(0))) result.add(allTopics.get(i));
}
} else if(isInstanceOf(rootConstraint, PSIs.TMCL.tmclAssociationRoleConstraint)){
+ // TODO: implement
throw new ExecutionException(PSIs.TMCL.tmclAssociationRoleConstraint + " is not implemented yet");
} else if(isInstanceOf(rootConstraint, PSIs.TMCL.tmclTopicRoleConstraint)){
+ // TODO: implement
throw new ExecutionException(PSIs.TMCL.tmclTopicRoleConstraint + " is not implemented yet");
}
@@ -974,12 +1008,14 @@
// returns the topic that can be used to satisfy the passed variant-name-reifier-constraint.
public static ArrayList<Topic> getTmValuesForVariantNameReifierConstraint(Topic variantNameReifierConstraint) throws ExecutionException {
+ // TODO: implement
throw new ExecutionException("this mehtod is currently not implemented");
}
// returns the topic that can be used to satisfy the passed variant-name-scope-constraint.
public static ArrayList<Topic> getTmValuesForVariantNameScopeConstraint(Topic variantNameScopeConstraint) throws ExecutionException{
+ // TODO: implement
throw new ExecutionException("this method is currently not implemented");
}
1
0

[isidorus-cvs] r787 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base environment isidorus
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 07:41:29 2011
New Revision: 787
Log:
gdl-frontend: Widgets: implemented a sample CommitCallback
Added:
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/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/environment/ICommitCallback.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 Thu Aug 25 06:56:56 2011 (r786)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPanel.java Thu Aug 25 07:41:29 2011 (r787)
@@ -137,24 +137,21 @@
// some setters for callback instances
- public void setLoadSchemaCallback(ILoadSchemaCallback callback){
- if(callback != null){
- this.loadSchemaCallback = callback;
- }
+ public void setLoadSchemaCallback(ILoadSchemaCallback callback) throws ExecutionException{
+ if(callback == null) throw new ExecutionException("callback must not be null");
+ this.loadSchemaCallback = callback;
}
- public void setCommitCallback(ICommitCallback callback){
- if(callback != null){
- this.commitCallback = callback;
- }
+ public void setCommitCallback(ICommitCallback callback) throws ExecutionException{
+ if(callback == null) throw new ExecutionException("callback must not be null");
+ this.commitCallback = callback;
}
- public void setDeleteCallback(IDeleteCallback callback){
- if(callback != null){
- this.deleteCallback = callback;
- }
+ public void setDeleteCallback(IDeleteCallback callback) throws ExecutionException{
+ if(callback == null) throw new ExecutionException("callback must not be null");
+ this.deleteCallback = callback;
}
@@ -173,6 +170,7 @@
return this.deleteCallback;
}
+
// a getter for the internal topic map
public TopicMap getSchemaTm(){
return this.requestedSchemaTm;
@@ -210,7 +208,7 @@
if(this.commitCallback == null){
throw new ExecutionException("No CommitCallback was set yet");
}
- this.commitCallback.commitTmConstruct(requestedSchemaTm, TopicMapsTypes.TopicMap);
+ this.commitCallback.commitTmConstruct(this.requestedSchemaTm, TopicMapsTypes.TopicMap, this.tmEngine);
}catch(Exception e){
for (IOnErrorCallback handler : localOnErrorContainer) {
handler.onError(GdlErrorTypes.CommitError, 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 Thu Aug 25 06:56:56 2011 (r786)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TestClass.java Thu Aug 25 07:41:29 2011 (r787)
@@ -5,6 +5,7 @@
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.LoadSchemaCallback;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.event.dom.client.ClickEvent;
@@ -45,7 +46,7 @@
mainPanel.add(gdlPanel);
gdlPanel.setTmEngine(new JtmsTmEngine());
gdlPanel.setLoadSchemaCallback(new LoadSchemaCallback());
-
+ gdlPanel.setCommitCallback(new CommitCallback());
Button requestButton = new Button("load schema");
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 Thu Aug 25 06:56:56 2011 (r786)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/ICommitCallback.java Thu Aug 25 07:41:29 2011 (r787)
@@ -1,9 +1,10 @@
package us.isidor.gdl.anaToMia.Widgets.environment;
+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 ICommitCallback {
- public void commitTmConstruct(Construct construct, TopicMapsTypes constructType);
+ public void commitTmConstruct(Construct construct, TopicMapsTypes constructType, TmEngine tmengine);
}
Added: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/isidorus/CommitCallback.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/CommitCallback.java Thu Aug 25 07:41:29 2011 (r787)
@@ -0,0 +1,45 @@
+package us.isidor.gdl.anaToMia.Widgets.isidorus;
+
+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.Association;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Name;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Variant;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Role;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Occurrence;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMapsTypes;
+import us.isidor.gdl.anaToMia.Widgets.environment.ICommitCallback;
+
+public class CommitCallback implements ICommitCallback{
+
+ @Override
+ public void commitTmConstruct(Construct construct, TopicMapsTypes constructType, TmEngine tmEngine) {
+ try{
+ String jtm = null;
+
+ switch(constructType){
+ case Association: jtm = tmEngine.exportTm((Association)construct);
+ break;
+ case Role: jtm = tmEngine.exportTm((Role)construct);
+ break;
+ case Topic: jtm = tmEngine.exportTm((Topic)construct);
+ break;
+ case Name: jtm = tmEngine.exportTm((Name)construct);
+ break;
+ case Variant: jtm = tmEngine.exportTm((Variant)construct);
+ break;
+ case Occurrence: jtm = tmEngine.exportTm((Occurrence)construct);
+ break;
+ }
+
+ Window.alert(jtm);
+ // TODO: implement
+ }catch(ExporterException ee){
+ Window.alert("faild to commit the Topic Maps data, because: " + ee.getMessage());
+ }
+ }
+}
1
0

[isidorus-cvs] r786 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 06:56:56 2011
New Revision: 786
Log:
gdl-frontend: Widgets: finalised the implementeation of gdl:preferred-scope in the display-by schema
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/TmHelper.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 Thu Aug 25 06:32:05 2011 (r785)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Thu Aug 25 06:56:56 2011 (r786)
@@ -1938,6 +1938,8 @@
}
+ // returns the topic instance of gdlt:Value-Group that is bound to this
+ // visible element, or null if it is unbound
public Topic getValueGroup() throws InvalidGdlSchemaException {
if(this.valueGroupTopicSet){
return this.valueGroupTopic;
@@ -1949,6 +1951,8 @@
}
+ // returns the direct (first) constraint that is bound to the value-group
+ // of this element - or null if it is unbound
public Topic getConstraint() throws InvalidGdlSchemaException {
if(this.constraintTopicSet){
return this.constraintTopic;
@@ -1960,6 +1964,8 @@
}
+ // returns the root (last) constraint that is bound to the value-group
+ // of this element - or null if it is unbound
public Topic getRootConstraint() throws InvalidGdlSchemaException {
if(this.rootConstraintTopicSet){
return this.rootConstraintTopic;
@@ -1971,6 +1977,8 @@
}
+ // returns the topic that represents the default topic maps value of
+ // the value-group that is bound to this element - null if it is unbound
public Topic getDefaultTmValue() throws InvalidGdlSchemaException {
if(this.defaultTmValueTopicSet){
return this.defaultTmValueTopic;
@@ -1982,6 +1990,8 @@
}
+ // returns the topic that represents the default literal value of the
+ // value-group that is bound to this element - or null if it is unbound
public Topic getDefaultLiteralValue() throws InvalidGdlSchemaException {
if(this.defaultLiteralValueTopicSet){
return this.defaultLiteralValueTopic;
@@ -1993,6 +2003,8 @@
}
+ // 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 {
if(this.getDefaultLiteralValue() != null && this.getDefaultTmValue() != null) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(this.getValueGroup()) + " must be bound to maximal one " + PSIs.GDL.TopicType.gdlDefaultValue + ", but is: 2");
else if(this.getDefaultLiteralValue() != null) return this.getDefaultLiteralValue();
@@ -2000,6 +2012,8 @@
}
+ // returns true if the default value is fixed
+ // otherwise the return value is false
public boolean fixedDefaultValue() throws InvalidGdlSchemaException{
Topic defVal = this.getDefaultValue();
@@ -2020,6 +2034,8 @@
}
+ // returns all topic maps values that are valid and declared for the value-group
+ // of this element - or an empty ArrayList
public ArrayList<Topic> getTmValues() throws InvalidGdlSchemaException {
if(this.tmValueTopicsSet){
return this.tmValueTopics;
@@ -2031,6 +2047,8 @@
}
+ // returns all topics that represents literal values for this value-group - or
+ // an empty ArrayList
public ArrayList<Topic> getLiteralValues() throws InvalidGdlSchemaException {
if(this.literalValueTopicsSet){
return this.literalValueTopics;
@@ -2042,28 +2060,36 @@
}
+ // returns the set literal value or null
public String getSetLiteralValue() throws InvalidGdlSchemaException {
// TODO Auto-generated method stub
return null;
}
+ // returns the set tm value or null
public Construct getSetTmValue() throws InvalidGdlSchemaException {
// TODO Auto-generated method stub
return null;
}
+ // returns the valid topic maps value for the constraint that is bound
+ // to the value-group that is bound to this element - or an empty ArrayList
public ArrayList<Topic> getTmValuesForConstraint() throws InvalidGdlSchemaException, ExecutionException {
return TmHelper.getTmValuesForConstraint(this.getConstraint(), this.getValueGroup());
}
+ // returns the regular expression that is set for the constraint bound to the
+ // value-group of this element
public String getLiteralValueForConstraint() throws InvalidGdlSchemaException {
return TmHelper.getLiteralValueForConstraint(this.getConstraint());
}
+ // returns the display-by schema that is defined for the value-group that
+ // is bound to this element
public Topic getDisplayByOfValueGroup() throws InvalidGdlSchemaException {
if(this.displayByConstraintSet){
return this.displayByConstraint;
@@ -2075,6 +2101,8 @@
}
+ // returns the preferred scope that is bound to the value-group of
+ // this element - or an empty ArrayList
public ArrayList<Topic> getPreferredScopeOfValueGroup() throws InvalidGdlSchemaException {
if(this.prefferedScopesSet){
return this.preferredScopes;
@@ -2086,6 +2114,8 @@
}
+ // returns the string that represents the topic topicToRepresent corresponding
+ // to the passed displayBy and prefferedScopes arguments
public String getTopicRepresentation(Topic topicToRepresent, Topic displayBy, ArrayList<Topic> preferredScopes) throws InvalidGdlSchemaException {
return TmHelper.getTopicRepresentation(topicToRepresent, displayBy, preferredScopes);
}
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 Aug 25 06:32:05 2011 (r785)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Thu Aug 25 06:56:56 2011 (r786)
@@ -1116,50 +1116,44 @@
Topic itemIdentifierConstraint = getTopicByPsi(PSIs.TMCL.tmclItemIdentifierConstraint, tm);
Topic topicNameConstraint = getTopicByPsi(PSIs.TMCL.tmclTopicNameConstraint, tm);
- String result = null;
if(isInstanceOf(displayBy, topicNameConstraint)){
Topic nameType = TmHelper.getConstrainedStatement(displayBy);
- ArrayList<Name> names = new ArrayList<Name>();
- for(int i = 0; i != topicToRepresent.getNames(nameType).length(); ++i)
- names.add(topicToRepresent.getNames(nameType).get(i));
-
- if(preferredScopes != null && preferredScopes.size() != 0){
- // TODO: implement
+ for(int i = 0; i != topicToRepresent.getNames(nameType).length(); ++i){
+ Name name = topicToRepresent.getNames(nameType).get(i);
+ if(preferredScopes == null || preferredScopes.size() == 0){
+ return name.getValue();
+ } else {
+ for(int j = 0; j != name.getScope().length(); ++j){
+ if(preferredScopes.contains(name.getScope().get(j))) return name.getValue();
+ }
+ }
}
- if(names.size() != 0) result = names.get(0).getValue();
+ throw new InvalidGdlSchemaException("the topic " + getAnyIdOfTopic(topicToRepresent) + " does not contain any name that can be used for its " + PSIs.GDL.AssociationType.gdlDisplayBy + " schema");
+
} else if(isInstanceOf(displayBy, subjectIdentifierConstraint)){
Pattern rex = new Pattern(TmHelper.getLiteralValueForConstraint(displayBy));
for(int i = 0; i != topicToRepresent.getSubjectIdentifiers().length(); ++i){
String psi = topicToRepresent.getSubjectIdentifiers().get(i).getReference();
- if(rex.matches(psi)){
- result = psi;
- break;
- }
+ if(rex.matches(psi)) return psi;
}
+ throw new InvalidGdlSchemaException("the topic " + getAnyIdOfTopic(topicToRepresent) + " does not contain any subject-identifier that can be used for its " + PSIs.GDL.AssociationType.gdlDisplayBy + " schema");
} else if(isInstanceOf(displayBy, subjectLocatorConstraint)){
Pattern rex = new Pattern(TmHelper.getLiteralValueForConstraint(displayBy));
for(int i = 0; i != topicToRepresent.getSubjectLocators().length(); ++i){
- String psi = topicToRepresent.getSubjectLocators().get(i).getReference();
- if(rex.matches(psi)){
- result = psi;
- break;
- }
+ String sl = topicToRepresent.getSubjectLocators().get(i).getReference();
+ if(rex.matches(sl)) return sl;
}
+ throw new InvalidGdlSchemaException("the topic " + getAnyIdOfTopic(topicToRepresent) + " does not contain any subject-locator that can be used for its " + PSIs.GDL.AssociationType.gdlDisplayBy + " schema");
} else if(isInstanceOf(displayBy, itemIdentifierConstraint)){
Pattern rex = new Pattern(TmHelper.getLiteralValueForConstraint(displayBy));
for(int i = 0; i != topicToRepresent.getItemIdentifiers().length(); ++i){
- String psi = topicToRepresent.getItemIdentifiers().get(i).getReference();
- if(rex.matches(psi)){
- result = psi;
- break;
- }
+ String ii = topicToRepresent.getItemIdentifiers().get(i).getReference();
+ if(rex.matches(ii)) return ii;
}
+ throw new InvalidGdlSchemaException("the topic " + getAnyIdOfTopic(topicToRepresent) + " does not contain any item-identifier that can be used for its " + PSIs.GDL.AssociationType.gdlDisplayBy + " schema");
} else {
throw new InvalidGdlSchemaException("the topic " + getAnyIdOfTopic(displayBy) + " is not a valid representation schema type");
}
-
- if(result == null) throw new InvalidGdlSchemaException("");
- else return result;
}
}
}
1
0

[isidorus-cvs] r785 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base button complexData container text view
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 06:32:05 2011
New Revision: 785
Log:
gdl-frontend: Widgets: deleted the interface IGdlHasValueGroup; moved all methods from GdlText that are necessary to comnsume Topic Maps to GdlVisibleObject; added the abstract method addSubItem(String value) to GdlVisibleObject, so each derived class must implement it, the advantage of this method is the consuming of Topic Maps, it can be done in one place, at the GdlVisibleObject implementation, while calling addSubItem to add new data
Deleted:
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/IGdlHasValueGroup.java
Modified:
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlSpace.java
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/button/GdlActionButton.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCheckBox.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlInputButton.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlRadioButton.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlAudio.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlDatePicker.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlDateTimePicker.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlImage.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlTimePicker.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlVideo.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlList.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlUnit.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlInfo.java
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/GdlReference.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlTitle.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlView.java
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlSpace.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlSpace.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlSpace.java Thu Aug 25 06:32:05 2011 (r785)
@@ -16,4 +16,11 @@
super(tmRepresentative, receivedData);
this.setGdlStyle(this);
}
+
+
+ @Override
+ @Deprecated
+ public void addSubItem(String value){
+ // this method has no effect on GdlSpace instances
+ }
}
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 Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Thu Aug 25 06:32:05 2011 (r785)
@@ -6,6 +6,8 @@
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Name;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Occurrence;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Reifiable;
+import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.ReifiableStub;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Role;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMap;
@@ -19,6 +21,7 @@
import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException;
import us.isidor.gdl.anaToMia.Widgets.environment.MultipleHandlerRegistration;
import us.isidor.gdl.anaToMia.Widgets.environment.Pair;
+import us.isidor.gdl.anaToMia.Widgets.environment.Pattern;
import us.isidor.gdl.anaToMia.Widgets.text.GdlInfo;
import us.isidor.gdl.anaToMia.Widgets.value.AbsoluteNumValue;
import us.isidor.gdl.anaToMia.Widgets.value.AutoNumUnitValue;
@@ -79,6 +82,24 @@
protected ArrayList<Pair<Topic, Integer>> actionButtonsAndPositions = null;
protected ArrayList<GdlInfo> infoElements = new ArrayList<GdlInfo>();
protected Construct receivedData = null;
+ protected Topic valueGroupTopic = null;
+ protected boolean valueGroupTopicSet = false;
+ protected Topic constraintTopic = null;
+ protected boolean constraintTopicSet = false;
+ protected Topic rootConstraintTopic = null;
+ protected boolean rootConstraintTopicSet = false;
+ protected Topic defaultTmValueTopic = null;
+ protected boolean defaultTmValueTopicSet = false;
+ protected Topic defaultLiteralValueTopic = null;
+ protected boolean defaultLiteralValueTopicSet = false;
+ protected ArrayList<Topic> tmValueTopics = new ArrayList<Topic>();
+ protected boolean tmValueTopicsSet = false;
+ protected ArrayList<Topic> literalValueTopics = new ArrayList<Topic>();
+ protected boolean literalValueTopicsSet = false;
+ protected ArrayList<Topic> preferredScopes = new ArrayList<Topic>();
+ protected boolean prefferedScopesSet = false;
+ protected Topic displayByConstraint = null;
+ protected boolean displayByConstraintSet = false;
// some constructors
@@ -87,6 +108,11 @@
DOM.setStyleAttribute(this.mainPanel.getElement(), "overflow", "visible");
}
+
+ // this method takes a string and creates a new sub-element within
+ // an instance of GdlVisibleObject with the passed string value
+ public abstract void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException;
+
public GdlVisibleObject(Topic tmRepresentative, Construct receivedData) throws InvalidGdlSchemaException, ExecutionException{
this();
@@ -1829,4 +1855,238 @@
e.printStackTrace();
}
}
+
+
+ // sets the fields for the received data
+ protected void setReceivedData() throws InvalidGdlSchemaException, ExecutionException {
+ if(receivedData == null) return;
+
+ if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclSubjectIdentifierConstraint)){
+ if(!(receivedData instanceof Topic)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Topic, but is: " + receivedData.getClass());
+
+ Pattern rex = new Pattern(this.getLiteralValueForConstraint());
+ for(int i = 0; i != ((Topic)receivedData).getSubjectIdentifiers().length(); ++i){
+ String psi = ((Topic)receivedData).getSubjectIdentifiers().get(i).getReference();
+ if(rex.matches(psi)){
+ this.addSubItem(psi);
+ }
+ }
+ } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclSubjectLocatorConstraint)){
+ if(!(receivedData instanceof Topic)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Topic, but is: " + receivedData.getClass());
+
+ Pattern rex = new Pattern(this.getLiteralValueForConstraint());
+ for(int i = 0; i != ((Topic)receivedData).getSubjectLocators().length(); ++i){
+ String sl = ((Topic)receivedData).getSubjectLocators().get(i).getReference();
+ if(rex.matches(sl)){
+ this.addSubItem(sl);
+ }
+ }
+ } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclItemIdentifierConstraint)){
+ if(!(this.receivedData instanceof Reifiable)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Reifiable, but is: " + receivedData.getClass());
+
+ Pattern rex = new Pattern(this.getLiteralValueForConstraint());
+ for(int i = 0; i != ((ReifiableStub)receivedData).getItemIdentifiers().length(); ++i){
+ String ii = ((Topic)receivedData).getItemIdentifiers().get(i).getReference();
+ if(rex.matches(ii)){
+ this.addSubItem(ii);
+ }
+ }
+ } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclTopicNameConstraint)){
+ if(!(receivedData instanceof Topic)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Topic, but is: " + receivedData.getClass());
+
+ Topic nameType = TmHelper.getConstrainedStatement(this.getConstraint());
+ for(int i = 0; i != ((Topic)this.receivedData).getNames(nameType).length(); ++i)
+ this.addSubItem(((Topic)this.receivedData).getNames(nameType).get(i).getValue());
+ } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclTopicOccurrenceConstraint)){
+ if(!(receivedData instanceof Topic)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Topic, but is: " + receivedData.getClass());
+
+ Topic occurrenceType = TmHelper.getConstrainedStatement(this.getConstraint());
+ for(int i = 0; i != ((Topic)this.receivedData).getOccurrences(occurrenceType).length(); ++i)
+ this.addSubItem(((Topic)this.receivedData).getOccurrences(occurrenceType).get(i).getValue());
+ } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.GDL.TopicType.gdlRolePlayer)){
+ if(!(receivedData instanceof Association)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to an Association, but is: " + receivedData.getClass());
+ if(this.getRootConstraint() == null || !TmHelper.isInstanceOf(this.getRootConstraint(), PSIs.TMCL.tmclTopicRoleConstraint)) throw new InvalidGdlSchemaException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a root constraint of the type " + PSIs.TMCL.tmclTopicRoleConstraint + ", but ist bound to the root topic: " + (this.getRootConstraint() == null ? "null" : TmHelper.getAnyIdOfTopic(this.getRootConstraint())));
+
+ Pair<Topic, Topic> roleAndPlayerType = TmHelper.getConstrainedRoleAndPlayerTypeOfConstraint(this.getRootConstraint());
+ JsArray<Role> assocRoles = ((Association)this.receivedData).getRoles(roleAndPlayerType.getFirst());
+ for(int i = 0; i != assocRoles.length(); ++i){
+ if(TmHelper.isInstanceOf(assocRoles.get(i).getPlayer(), roleAndPlayerType.getSecond())){
+ this.addSubItem(this.getTopicRepresentation(assocRoles.get(i).getPlayer(), this.getDisplayByOfValueGroup(), this.getPreferredScopeOfValueGroup()));
+ }
+ }
+ }
+ // TODO: implement type, variant, datatype, associations, roles, ... constraints
+ }
+
+
+ // sets the field for the set default value or sets at least one empty field (card-min)
+ protected void setDefaultValue() throws InvalidGdlSchemaException, ExecutionException {
+ if(this.getDefaultLiteralValue() != null && this.getDefaultTmValue() != null) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(this.getValueGroup()) + " must be bound to maximal one " + PSIs.GDL.TopicType.gdlDefaultValue + ", but is: 2");
+
+ if(this.getDefaultLiteralValue() != null){
+ TopicMap tm = this.getDefaultLiteralValue().getTopicMap();
+ Topic occType = TmHelper.getTopicByPsi(PSIs.GDL.OccurrenceType.gdlLiteralValue, tm);
+ JsArray<Occurrence> vals = this.getDefaultLiteralValue().getOccurrences(occType);
+ if(vals.length() != 1) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(this.getDefaultLiteralValue()) + " must be bound exactly once to a " + PSIs.GDL.OccurrenceType.gdlLiteralValue + " occurrence, but is: " + vals.length());
+
+ this.addSubItem(vals.get(0).getValue());
+ } else if(this.getDefaultTmValue() != null){
+ // TODO: set default-tm-value
+ } else {
+ this.addSubItem("");
+ }
+ }
+
+
+ public Topic getValueGroup() throws InvalidGdlSchemaException {
+ if(this.valueGroupTopicSet){
+ return this.valueGroupTopic;
+ } else {
+ this.valueGroupTopic = TmHelper.getValueGroupOf(this.tmRepresentative);
+ this.valueGroupTopicSet = true;
+ return this.valueGroupTopic;
+ }
+ }
+
+
+ public Topic getConstraint() throws InvalidGdlSchemaException {
+ if(this.constraintTopicSet){
+ return this.constraintTopic;
+ } else {
+ this.constraintTopic = TmHelper.getConstraintOfValueGroup(this.getValueGroup());
+ this.constraintTopicSet = true;
+ return this.constraintTopic;
+ }
+ }
+
+
+ public Topic getRootConstraint() throws InvalidGdlSchemaException {
+ if(this.rootConstraintTopicSet){
+ return this.rootConstraintTopic;
+ } else {
+ this.rootConstraintTopic = TmHelper.getRootConstraintOfValueGroup(this.getValueGroup(), this.getConstraint());
+ this.rootConstraintTopicSet = true;
+ return this.rootConstraintTopic;
+ }
+ }
+
+
+ public Topic getDefaultTmValue() throws InvalidGdlSchemaException {
+ if(this.defaultTmValueTopicSet){
+ return this.defaultTmValueTopic;
+ } else {
+ this.defaultTmValueTopic = TmHelper.getDefaultTmValue(this.getValueGroup());
+ this.defaultTmValueTopicSet = true;
+ return this.defaultTmValueTopic;
+ }
+ }
+
+
+ public Topic getDefaultLiteralValue() throws InvalidGdlSchemaException {
+ if(this.defaultLiteralValueTopicSet){
+ return this.defaultLiteralValueTopic;
+ } else {
+ this.defaultLiteralValueTopic = TmHelper.getDefaultLiteralValue(this.getValueGroup());
+ this.defaultLiteralValueTopicSet = true;
+ return this.defaultLiteralValueTopic;
+ }
+ }
+
+
+ public Topic getDefaultValue() throws InvalidGdlSchemaException {
+ if(this.getDefaultLiteralValue() != null && this.getDefaultTmValue() != null) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(this.getValueGroup()) + " must be bound to maximal one " + PSIs.GDL.TopicType.gdlDefaultValue + ", but is: 2");
+ else if(this.getDefaultLiteralValue() != null) return this.getDefaultLiteralValue();
+ else return this.getDefaultTmValue();
+ }
+
+
+ public boolean fixedDefaultValue() throws InvalidGdlSchemaException{
+ Topic defVal = this.getDefaultValue();
+
+ if(defVal == null) return false;
+
+ TopicMap tm = defVal.getTopicMap();
+ Occurrence fixedOcc = TmHelper.getSingleOccurrence(defVal, TmHelper.getTopicByPsi(PSIs.GDL.OccurrenceType.gdlFixed, tm));
+
+ if(fixedOcc != null){
+ try{
+ return Boolean.valueOf(fixedOcc.getValue().toLowerCase());
+ }catch(Exception e){
+ throw new InvalidGdlSchemaException("the occurrence of type " + PSIs.GDL.OccurrenceType.gdlFixed + " bound to the topic " + TmHelper.getAnyIdOfTopic(defVal) + " must be set to either true or false, but is: " + fixedOcc.getValue());
+ }
+ } else {
+ return false;
+ }
+ }
+
+
+ public ArrayList<Topic> getTmValues() throws InvalidGdlSchemaException {
+ if(this.tmValueTopicsSet){
+ return this.tmValueTopics;
+ } else {
+ this.tmValueTopics = TmHelper.getTmValues(this.getValueGroup());
+ this.tmValueTopicsSet = true;
+ return this.tmValueTopics;
+ }
+ }
+
+
+ public ArrayList<Topic> getLiteralValues() throws InvalidGdlSchemaException {
+ if(this.literalValueTopicsSet){
+ return this.literalValueTopics;
+ } else {
+ this.literalValueTopics = TmHelper.getLiteralValues(this.getValueGroup());
+ this.literalValueTopicsSet = true;
+ return this.literalValueTopics;
+ }
+ }
+
+
+ public String getSetLiteralValue() throws InvalidGdlSchemaException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+
+ public Construct getSetTmValue() throws InvalidGdlSchemaException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+
+ public ArrayList<Topic> getTmValuesForConstraint() throws InvalidGdlSchemaException, ExecutionException {
+ return TmHelper.getTmValuesForConstraint(this.getConstraint(), this.getValueGroup());
+ }
+
+
+ public String getLiteralValueForConstraint() throws InvalidGdlSchemaException {
+ return TmHelper.getLiteralValueForConstraint(this.getConstraint());
+ }
+
+
+ public Topic getDisplayByOfValueGroup() throws InvalidGdlSchemaException {
+ if(this.displayByConstraintSet){
+ return this.displayByConstraint;
+ } else {
+ this.displayByConstraintSet = true;
+ this.displayByConstraint = TmHelper.getDisplayByTopicOf(this.getValueGroup());
+ return this.displayByConstraint;
+ }
+ }
+
+
+ public ArrayList<Topic> getPreferredScopeOfValueGroup() throws InvalidGdlSchemaException {
+ if(this.prefferedScopesSet){
+ return this.preferredScopes;
+ } else {
+ this.prefferedScopesSet = true;
+ this.preferredScopes = TmHelper.getPrefferedScopesForTopicOf(this.getValueGroup());
+ return this.preferredScopes;
+ }
+ }
+
+
+ public String getTopicRepresentation(Topic topicToRepresent, Topic displayBy, ArrayList<Topic> preferredScopes) throws InvalidGdlSchemaException {
+ return TmHelper.getTopicRepresentation(topicToRepresent, displayBy, preferredScopes);
+ }
}
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 Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlActionButton.java Thu Aug 25 06:32:05 2011 (r785)
@@ -31,13 +31,18 @@
super(tmRepresentative, receivedData);
// TODO: set all tm values
- this.createButton().setText("Action-Button"); // TODO: remove set text
+ this.createNewButton().setText("Action-Button"); // TODO: remove set text
this.setClickHandlers();
}
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ this.createNewButton().setText(value);
+ }
+
+
// creates a new button if no one exist, otherwise returns the existing button
- protected Button createButton() throws InvalidGdlSchemaException, ExecutionException{
+ protected Button createNewButton() throws InvalidGdlSchemaException, ExecutionException{
if(this.subElements.size() != 0) return (Button)this.subElements.get(0);
Button btn = new Button();
this.subElements.add(btn);
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCheckBox.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCheckBox.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlCheckBox.java Thu Aug 25 06:32:05 2011 (r785)
@@ -31,4 +31,10 @@
this.setGdlStyle(cb);
return cb;
}
+
+
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlInputButton.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlInputButton.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlInputButton.java Thu Aug 25 06:32:05 2011 (r785)
@@ -5,7 +5,7 @@
import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException;
import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException;
-public class GdlInputButton extends GdlButton {
+public abstract class GdlInputButton extends GdlButton {
protected GdlInputButton(){
super();
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlRadioButton.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlRadioButton.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/button/GdlRadioButton.java Thu Aug 25 06:32:05 2011 (r785)
@@ -30,4 +30,10 @@
this.setGdlStyle(rb);
return rb;
}
+
+
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlAudio.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlAudio.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlAudio.java Thu Aug 25 06:32:05 2011 (r785)
@@ -16,4 +16,10 @@
public GdlAudio(Topic tmRepresentative, Construct receivedData) throws InvalidGdlSchemaException, ExecutionException{
this();
}
+
+
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlDatePicker.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlDatePicker.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlDatePicker.java Thu Aug 25 06:32:05 2011 (r785)
@@ -1,6 +1,8 @@
package us.isidor.gdl.anaToMia.Widgets.complexData;
+import java.util.Date;
+
import com.google.gwt.event.dom.client.BlurEvent;
import com.google.gwt.event.dom.client.BlurHandler;
import com.google.gwt.event.dom.client.FocusEvent;
@@ -45,13 +47,13 @@
public GdlDatePicker(Topic tmRepresentative, Construct receivedData) throws InvalidGdlSchemaException, ExecutionException{
super(tmRepresentative, receivedData);
// create a date widget for each tm-construct
- this.createDateWidget();
+ this.createNewDateWidget();
this.setNthButtons();
}
- public void createDateWidget() throws InvalidGdlSchemaException, ExecutionException {
+ public DateWidget createNewDateWidget() throws InvalidGdlSchemaException, ExecutionException {
// this object is able to own only one sub-element
DateWidget date = new DateWidget();
@@ -70,12 +72,23 @@
super.addToContainerPanel(date);
this.setGdlStyle(date);
+ return date;
}
public ButtonableObject removeDatePicker(DateWidget elem) throws InvalidGdlSchemaException, ExecutionException{
return this.removeFromContainer(elem);
- }
+ }
+
+
+ @SuppressWarnings("deprecation")
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ DateWidget dateWidget = this.createNewDateWidget();
+ Date dateValue = new Date();
+ dateValue.setTime(Date.parse(value));
+ dateWidget.setValue(dateValue);
+ }
protected class DateWidget extends DatePicker implements HasFocusHandlers, HasBlurHandlers, HasMouseDownHandlers, HasMouseOutHandlers, HasMouseOverHandlers, HasMouseUpHandlers {
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlDateTimePicker.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlDateTimePicker.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlDateTimePicker.java Thu Aug 25 06:32:05 2011 (r785)
@@ -19,4 +19,11 @@
super(tmRepresentative, receivedData);
// create a date-time widget for each tm-construct
}
+
+
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlImage.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlImage.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlImage.java Thu Aug 25 06:32:05 2011 (r785)
@@ -16,4 +16,11 @@
public GdlImage(Topic tmRepresentative, Construct receivedData) throws InvalidGdlSchemaException, ExecutionException{
this();
}
+
+
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlTimePicker.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlTimePicker.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlTimePicker.java Thu Aug 25 06:32:05 2011 (r785)
@@ -19,4 +19,11 @@
super(tmRepresentative, receivedData);
// create a time widget for each tm-construct
}
+
+
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlVideo.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlVideo.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/complexData/GdlVideo.java Thu Aug 25 06:32:05 2011 (r785)
@@ -16,4 +16,11 @@
public GdlVideo(Topic tmRepresentative, Construct receivedData) throws InvalidGdlSchemaException, ExecutionException{
this();
}
+
+
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlList.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlList.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlList.java Thu Aug 25 06:32:05 2011 (r785)
@@ -53,14 +53,14 @@
// some constructors
protected GdlList() throws InvalidGdlSchemaException, ExecutionException {
super();
- this.createList();
+ this.createNewList();
this.setNthButtons();
}
public GdlList(Topic tmRepresentative, Construct receivedData) throws InvalidGdlSchemaException, ExecutionException{
super(tmRepresentative, receivedData);
- this.createList();
+ this.createNewList();
ArrayList<Topic> objectsContained = this.contains();
@@ -75,10 +75,16 @@
}
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // this method has no effect on this class
+ }
+
+
// sets the list Element to either ol or ul depending on the gdl:ordered property
- public void createList() throws InvalidGdlSchemaException, ExecutionException {
+ public ListWidget createNewList() throws InvalidGdlSchemaException, ExecutionException {
// this object is able to own only one sub-element
- if(super.subElements != null && super.subElements.size() == 1)return;
+ if(this.subElements != null && this.subElements.size() == 1) return (ListWidget)this.subElements.get(0);
ListWidget list = new ListWidget(this.getOrdered());
ActiveStyleHandler asHandler = new ActiveStyleHandler(this);
@@ -95,6 +101,7 @@
list.addBlurHandler(fsHandler);
super.addToContainerPanel(list);
this.setGdlStyle(list);
+ return list;
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlUnit.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlUnit.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/container/GdlUnit.java Thu Aug 25 06:32:05 2011 (r785)
@@ -225,6 +225,12 @@
}
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // this method has no effect on this class
+ }
+
+
protected class UnitWidget extends Composite implements HasFocusHandlers, HasBlurHandlers, HasMouseOutHandlers, HasMouseOverHandlers, HasMouseDownHandlers, HasMouseUpHandlers{
private CaptionPanel basePanel = new CaptionPanel();
private AbsolutePanel containerPanel = new AbsolutePanel();
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlInfo.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlInfo.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlInfo.java Thu Aug 25 06:32:05 2011 (r785)
@@ -36,6 +36,12 @@
}
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ this.createNewInfo().setText(value);
+ }
+
+
private Label createNewInfo() throws ExecutionException, InvalidGdlSchemaException{
Label lbl = new Label();
this.addToContainerPanel(lbl);
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 Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlListBox.java Thu Aug 25 06:32:05 2011 (r785)
@@ -33,6 +33,12 @@
}
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+ }
+
+
// creates a new ListBox item, adds it to the subElements array,
// and applies the styles on it
protected ListBox createNewListBox() throws InvalidGdlSchemaException, ExecutionException {
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlReference.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlReference.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlReference.java Thu Aug 25 06:32:05 2011 (r785)
@@ -43,6 +43,12 @@
}
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ // TODO: implement
+ }
+
+
private ReferenceWidget createReference() throws InvalidGdlSchemaException, ExecutionException {
ReferenceWidget reference = new ReferenceWidget();
DOM.setElementAttribute(reference.getElement(), "id", this.getId() + "__GDL_" + this.subElements.size());
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java Thu Aug 25 06:32:05 2011 (r785)
@@ -1,8 +1,6 @@
package us.isidor.gdl.anaToMia.Widgets.text;
import java.util.ArrayList;
-
-import com.google.gwt.core.client.JsArray;
import com.google.gwt.event.dom.client.BlurEvent;
import com.google.gwt.event.dom.client.KeyPressEvent;
import com.google.gwt.event.dom.client.KeyPressHandler;
@@ -14,26 +12,17 @@
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.TextArea;
import com.google.gwt.user.client.ui.Widget;
-
-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.Reifiable;
-import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.ReifiableStub;
-import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Role;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Topic;
-import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.TopicMap;
import us.isidor.gdl.anaToMia.Widgets.base.ButtonableObject;
import us.isidor.gdl.anaToMia.Widgets.base.PSIs;
-import us.isidor.gdl.anaToMia.Widgets.base.IGdlHasValueGroup;
-import us.isidor.gdl.anaToMia.Widgets.base.TmHelper;
import us.isidor.gdl.anaToMia.Widgets.environment.ActiveStyleHandler;
import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException;
import us.isidor.gdl.anaToMia.Widgets.environment.FocusStyleHandler;
import us.isidor.gdl.anaToMia.Widgets.environment.HoverStyleHandler;
import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException;
import us.isidor.gdl.anaToMia.Widgets.environment.Pair;
-import us.isidor.gdl.anaToMia.Widgets.environment.Pattern;
import us.isidor.gdl.anaToMia.Widgets.value.AbsoluteNumValue;
import us.isidor.gdl.anaToMia.Widgets.value.BorderStyleValue;
import us.isidor.gdl.anaToMia.Widgets.value.ColorValue;
@@ -43,28 +32,9 @@
-public class GdlText extends GdlTextObject implements IGdlHasValueGroup {
+public class GdlText extends GdlTextObject {
protected ArrayList<PasswordKeyPressHandler> passwordKeyPressHandler = null;
protected ArrayList<HandlerRegistration> passwordKeyPressRegistrations = null;
- protected Topic valueGroupTopic = null;
- protected boolean valueGroupTopicSet = false;
- protected Topic constraintTopic = null;
- protected boolean constraintTopicSet = false;
- protected Topic rootConstraintTopic = null;
- protected boolean rootConstraintTopicSet = false;
- protected Topic defaultTmValueTopic = null;
- protected boolean defaultTmValueTopicSet = false;
- protected Topic defaultLiteralValueTopic = null;
- protected boolean defaultLiteralValueTopicSet = false;
- protected ArrayList<Topic> tmValueTopics = new ArrayList<Topic>();
- protected boolean tmValueTopicsSet = false;
- protected ArrayList<Topic> literalValueTopics = new ArrayList<Topic>();
- protected boolean literalValueTopicsSet = false;
- protected ArrayList<Topic> preferredScopes = new ArrayList<Topic>();
- protected boolean prefferedScopesSet = false;
- protected Topic displayByConstraint = null;
- protected boolean displayByConstraintSet = false;
-
// some constructors
protected GdlText() throws InvalidGdlSchemaException, ExecutionException {
@@ -86,86 +56,9 @@
}
- // sets the fields for the received data
- protected void setReceivedData() throws InvalidGdlSchemaException, ExecutionException {
- if(receivedData == null) return;
-
- if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclSubjectIdentifierConstraint)){
- if(!(receivedData instanceof Topic)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Topic, but is: " + receivedData.getClass());
-
- Pattern rex = new Pattern(this.getLiteralValueForConstraint());
- for(int i = 0; i != ((Topic)receivedData).getSubjectIdentifiers().length(); ++i){
- String psi = ((Topic)receivedData).getSubjectIdentifiers().get(i).getReference();
- if(rex.matches(psi)){
- this.createNewTextArea().setText(psi);
- }
- }
- } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclSubjectLocatorConstraint)){
- if(!(receivedData instanceof Topic)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Topic, but is: " + receivedData.getClass());
-
- Pattern rex = new Pattern(this.getLiteralValueForConstraint());
- for(int i = 0; i != ((Topic)receivedData).getSubjectLocators().length(); ++i){
- String sl = ((Topic)receivedData).getSubjectLocators().get(i).getReference();
- if(rex.matches(sl)){
- this.createNewTextArea().setText(sl);
- }
- }
- } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclItemIdentifierConstraint)){
- if(!(this.receivedData instanceof Reifiable)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Reifiable, but is: " + receivedData.getClass());
-
- Pattern rex = new Pattern(this.getLiteralValueForConstraint());
- for(int i = 0; i != ((ReifiableStub)receivedData).getItemIdentifiers().length(); ++i){
- String ii = ((Topic)receivedData).getItemIdentifiers().get(i).getReference();
- if(rex.matches(ii)){
- this.createNewTextArea().setText(ii);
- }
- }
- } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclTopicNameConstraint)){
- if(!(receivedData instanceof Topic)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Topic, but is: " + receivedData.getClass());
-
- Topic nameType = TmHelper.getConstrainedStatement(this.getConstraint());
- for(int i = 0; i != ((Topic)this.receivedData).getNames(nameType).length(); ++i)
- this.createNewTextArea().setText(((Topic)this.receivedData).getNames(nameType).get(i).getValue());
- } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.TMCL.tmclTopicOccurrenceConstraint)){
- if(!(receivedData instanceof Topic)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a Topic, but is: " + receivedData.getClass());
-
- Topic occurrenceType = TmHelper.getConstrainedStatement(this.getConstraint());
- for(int i = 0; i != ((Topic)this.receivedData).getOccurrences(occurrenceType).length(); ++i)
- this.createNewTextArea().setText(((Topic)this.receivedData).getOccurrences(occurrenceType).get(i).getValue());
- } else if(TmHelper.isInstanceOf(this.getConstraint(), PSIs.GDL.TopicType.gdlRolePlayer)){
- if(!(receivedData instanceof Association)) throw new ExecutionException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to an Association, but is: " + receivedData.getClass());
- if(this.getRootConstraint() == null || !TmHelper.isInstanceOf(this.getRootConstraint(), PSIs.TMCL.tmclTopicRoleConstraint)) throw new InvalidGdlSchemaException("the constraint " + TmHelper.getAnyIdOfTopic(this.getConstraint()) + " must be bound to a root constraint of the type " + PSIs.TMCL.tmclTopicRoleConstraint + ", but ist bound to the root topic: " + (this.getRootConstraint() == null ? "null" : TmHelper.getAnyIdOfTopic(this.getRootConstraint())));
-
- Pair<Topic, Topic> roleAndPlayerType = TmHelper.getConstrainedRoleAndPlayerTypeOfConstraint(this.getRootConstraint());
- JsArray<Role> assocRoles = ((Association)this.receivedData).getRoles(roleAndPlayerType.getFirst());
- for(int i = 0; i != assocRoles.length(); ++i){
- if(TmHelper.isInstanceOf(assocRoles.get(i).getPlayer(), roleAndPlayerType.getSecond())){
- this.createNewTextArea().setText(this.getTopicRepresentation(assocRoles.get(i).getPlayer(), this.getDisplayByOfValueGroup(), this.getPreferredScopeOfValueGroup()));
- }
- }
- }
- // TODO: implement type, variant, datatype, associations, roles, ... constraints
- // TODO: move method to GdlVisibleObject => add a new interface that encupsulates
- // createNewTextArea etc. an call this method in the GdlVisibleObject
- }
-
-
- // sets the field for the set default value or sets at least one empty field (card-min)
- protected void setDefaultValue() throws InvalidGdlSchemaException, ExecutionException {
- if(this.getDefaultLiteralValue() != null && this.getDefaultTmValue() != null) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(this.getValueGroup()) + " must be bound to maximal one " + PSIs.GDL.TopicType.gdlDefaultValue + ", but is: 2");
-
- if(this.getDefaultLiteralValue() != null){
- TopicMap tm = this.getDefaultLiteralValue().getTopicMap();
- Topic occType = TmHelper.getTopicByPsi(PSIs.GDL.OccurrenceType.gdlLiteralValue, tm);
- JsArray<Occurrence> vals = this.getDefaultLiteralValue().getOccurrences(occType);
- if(vals.length() != 1) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(this.getDefaultLiteralValue()) + " must be bound exactly once to a " + PSIs.GDL.OccurrenceType.gdlLiteralValue + " occurrence, but is: " + vals.length());
-
- this.createNewTextArea().setText(vals.get(0).getValue());
- } else if(this.getDefaultTmValue() != null){
- // TODO: set default-tm-value
- } else {
- this.createNewTextArea();
- }
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ this.createNewTextArea().setText(value);
}
@@ -924,171 +817,4 @@
}
}
-
- @Override
- public Topic getValueGroup() throws InvalidGdlSchemaException {
- if(this.valueGroupTopicSet){
- return this.valueGroupTopic;
- } else {
- this.valueGroupTopic = TmHelper.getValueGroupOf(this.tmRepresentative);
- this.valueGroupTopicSet = true;
- return this.valueGroupTopic;
- }
- }
-
-
- @Override
- public Topic getConstraint() throws InvalidGdlSchemaException {
- if(this.constraintTopicSet){
- return this.constraintTopic;
- } else {
- this.constraintTopic = TmHelper.getConstraintOfValueGroup(this.getValueGroup());
- this.constraintTopicSet = true;
- return this.constraintTopic;
- }
- }
-
-
- @Override
- public Topic getRootConstraint() throws InvalidGdlSchemaException {
- if(this.rootConstraintTopicSet){
- return this.rootConstraintTopic;
- } else {
- this.rootConstraintTopic = TmHelper.getRootConstraintOfValueGroup(this.getValueGroup(), this.getConstraint());
- this.rootConstraintTopicSet = true;
- return this.rootConstraintTopic;
- }
- }
-
-
- @Override
- public Topic getDefaultTmValue() throws InvalidGdlSchemaException {
- if(this.defaultTmValueTopicSet){
- return this.defaultTmValueTopic;
- } else {
- this.defaultTmValueTopic = TmHelper.getDefaultTmValue(this.getValueGroup());
- this.defaultTmValueTopicSet = true;
- return this.defaultTmValueTopic;
- }
- }
-
-
- @Override
- public Topic getDefaultLiteralValue() throws InvalidGdlSchemaException {
- if(this.defaultLiteralValueTopicSet){
- return this.defaultLiteralValueTopic;
- } else {
- this.defaultLiteralValueTopic = TmHelper.getDefaultLiteralValue(this.getValueGroup());
- this.defaultLiteralValueTopicSet = true;
- return this.defaultLiteralValueTopic;
- }
- }
-
-
- @Override
- public Topic getDefaultValue() throws InvalidGdlSchemaException {
- if(this.getDefaultLiteralValue() != null && this.getDefaultTmValue() != null) throw new InvalidGdlSchemaException("the topic " + TmHelper.getAnyIdOfTopic(this.getValueGroup()) + " must be bound to maximal one " + PSIs.GDL.TopicType.gdlDefaultValue + ", but is: 2");
- else if(this.getDefaultLiteralValue() != null) return this.getDefaultLiteralValue();
- else return this.getDefaultTmValue();
- }
-
-
- public boolean fixedDefaultValue() throws InvalidGdlSchemaException{
- Topic defVal = this.getDefaultValue();
-
- if(defVal == null) return false;
-
- TopicMap tm = defVal.getTopicMap();
- Occurrence fixedOcc = TmHelper.getSingleOccurrence(defVal, TmHelper.getTopicByPsi(PSIs.GDL.OccurrenceType.gdlFixed, tm));
-
- if(fixedOcc != null){
- try{
- return Boolean.valueOf(fixedOcc.getValue().toLowerCase());
- }catch(Exception e){
- throw new InvalidGdlSchemaException("the occurrence of type " + PSIs.GDL.OccurrenceType.gdlFixed + " bound to the topic " + TmHelper.getAnyIdOfTopic(defVal) + " must be set to either true or false, but is: " + fixedOcc.getValue());
- }
- } else {
- return false;
- }
- }
-
-
- @Override
- public ArrayList<Topic> getTmValues() throws InvalidGdlSchemaException {
- if(this.tmValueTopicsSet){
- return this.tmValueTopics;
- } else {
- this.tmValueTopics = TmHelper.getTmValues(this.getValueGroup());
- this.tmValueTopicsSet = true;
- return this.tmValueTopics;
- }
- }
-
-
- @Override
- public ArrayList<Topic> getLiteralValues() throws InvalidGdlSchemaException {
- if(this.literalValueTopicsSet){
- return this.literalValueTopics;
- } else {
- this.literalValueTopics = TmHelper.getLiteralValues(this.getValueGroup());
- this.literalValueTopicsSet = true;
- return this.literalValueTopics;
- }
- }
-
-
- @Override
- public String getSetLiteralValue() throws InvalidGdlSchemaException {
- // TODO Auto-generated method stub
- return null;
- }
-
-
- @Override
- public Construct getSetTmValue() throws InvalidGdlSchemaException {
- // TODO Auto-generated method stub
- return null;
- }
-
-
- @Override
- public ArrayList<Topic> getTmValuesForConstraint() throws InvalidGdlSchemaException, ExecutionException {
- return TmHelper.getTmValuesForConstraint(this.getConstraint(), this.getValueGroup());
- }
-
-
- @Override
- public String getLiteralValueForConstraint() throws InvalidGdlSchemaException {
- return TmHelper.getLiteralValueForConstraint(this.getConstraint());
- }
-
-
- @Override
- public Topic getDisplayByOfValueGroup() throws InvalidGdlSchemaException {
- if(this.displayByConstraintSet){
- return this.displayByConstraint;
- } else {
- this.displayByConstraintSet = true;
- this.displayByConstraint = TmHelper.getDisplayByTopicOf(this.getValueGroup());
- return this.displayByConstraint;
- }
- }
-
-
- @Override
- public ArrayList<Topic> getPreferredScopeOfValueGroup() throws InvalidGdlSchemaException {
- if(this.prefferedScopesSet){
- return this.preferredScopes;
- } else {
- this.prefferedScopesSet = true;
- this.preferredScopes = TmHelper.getPrefferedScopesForTopicOf(this.getValueGroup());
- return this.preferredScopes;
- }
- }
-
-
- @Override
- public String getTopicRepresentation(Topic topicToRepresent, Topic displayBy, ArrayList<Topic> preferredScopes) throws InvalidGdlSchemaException {
- return TmHelper.getTopicRepresentation(topicToRepresent, displayBy, preferredScopes);
- }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlTitle.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlTitle.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlTitle.java Thu Aug 25 06:32:05 2011 (r785)
@@ -60,13 +60,19 @@
public GdlTitle(Topic tmRepresentative, Construct receivedData) throws InvalidGdlSchemaException, ExecutionException{
super(tmRepresentative, receivedData);
// TODO: create a Title element for each TM-elem
- this.createTitle().setText("Title");
+ this.createNewTitle().setText("Title");
this.setNthButtons();
}
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ this.createNewTitle().setText(value);
+ }
+
+
// sets the list Element to either ol or ul depending on the gdl:ordered property
- public TitleWidget createTitle() throws InvalidGdlSchemaException, ExecutionException {
+ public TitleWidget createNewTitle() throws InvalidGdlSchemaException, ExecutionException {
// this object is able to own only one sub-element
TitleWidget title = new TitleWidget(this.getTitleOrder());
ActiveStyleHandler asHandler = new ActiveStyleHandler(this);
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlView.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlView.java Thu Aug 25 05:51:35 2011 (r784)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/view/GdlView.java Thu Aug 25 06:32:05 2011 (r785)
@@ -31,6 +31,11 @@
}
+ @Override
+ public void addSubItem(String value) throws InvalidGdlSchemaException, ExecutionException {
+ //this method has no effect on this class
+ }
+
public String getViewName()throws InvalidGdlSchemaException {
JsArray<Name> viewNames = super.tmRepresentative.getNames(tm.getTopicBySubjectIdentifier(tm.createLocator(PSIs.GDL.NameType.gdlViewName)));
1
0

[isidorus-cvs] r784 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets: src/us/isidor/gdl/anaToMia/Widgets/base war/gdl_widgets
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 05:51:35 2011
New Revision: 784
Log:
gdl-frontend: Widgets: changed the GDL-Schema => gdl:display-by associations currently own always a role of the type gdl:descriptor with a player of the type gdlt:Value-Group or gdlt:TM-Value. The type gdl:value-group is not used any more in this association!
Modified:
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java
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/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 Aug 25 04:55:40 2011 (r783)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/TmHelper.java Thu Aug 25 05:51:35 2011 (r784)
@@ -1077,10 +1077,10 @@
// Returns the topic that is bound to the passed tm-value or value-group topic
// and represents the representation schema of the topics that must be displayed
- public static Topic getDisplayByTopicOf(Topic tmValueOrvalueGroup) throws InvalidGdlSchemaException{
- if(tmValueOrvalueGroup == null) return null;
+ public static Topic getDisplayByTopicOf(Topic tmValueOrValueGroup) throws InvalidGdlSchemaException{
+ if(tmValueOrValueGroup == null) return null;
- TopicMap tm = tmValueOrvalueGroup.getTopicMap();
+ TopicMap tm = tmValueOrValueGroup.getTopicMap();
Topic displayByAssocType = getTopicByPsi(PSIs.GDL.AssociationType.gdlDisplayBy, tm);
Topic descriptorRoleType = getTopicByPsi(PSIs.GDL.RoleType.gdlDescriptor, tm);
Topic tmConstruct = getTopicByPsi(PSIs.GDL.RoleType.gdlTmConstruct, tm);
@@ -1088,14 +1088,14 @@
Topic subjectLocatorConstraintType = getTopicByPsi(PSIs.TMCL.tmclSubjectLocatorConstraint, tm);
Topic itemIdentifierConstraintType = getTopicByPsi(PSIs.TMCL.tmclItemIdentifierConstraint, tm);
Topic topicNameConstraintType = getTopicByPsi(PSIs.TMCL.tmclTopicNameConstraint, tm);
- ArrayList<Topic> resultPsi = getOtherPlayerOfBinaryAssociation(tmValueOrvalueGroup, descriptorRoleType, displayByAssocType, null, tmConstruct, subjectIdentifierConstraintType);
- ArrayList<Topic> resultSl = getOtherPlayerOfBinaryAssociation(tmValueOrvalueGroup, descriptorRoleType, displayByAssocType, null, tmConstruct, subjectLocatorConstraintType);
- ArrayList<Topic> resultIi = getOtherPlayerOfBinaryAssociation(tmValueOrvalueGroup, descriptorRoleType, displayByAssocType, null, tmConstruct, itemIdentifierConstraintType);
- ArrayList<Topic> resultName = getOtherPlayerOfBinaryAssociation(tmValueOrvalueGroup, descriptorRoleType, displayByAssocType, null, tmConstruct, topicNameConstraintType);
+ ArrayList<Topic> resultPsi = getOtherPlayerOfBinaryAssociation(tmValueOrValueGroup, descriptorRoleType, displayByAssocType, null, subjectIdentifierConstraintType, tmConstruct);
+ ArrayList<Topic> resultSl = getOtherPlayerOfBinaryAssociation(tmValueOrValueGroup, descriptorRoleType, displayByAssocType, null, subjectLocatorConstraintType, tmConstruct);
+ ArrayList<Topic> resultIi = getOtherPlayerOfBinaryAssociation(tmValueOrValueGroup, descriptorRoleType, displayByAssocType, null, itemIdentifierConstraintType, tmConstruct);
+ ArrayList<Topic> resultName = getOtherPlayerOfBinaryAssociation(tmValueOrValueGroup, descriptorRoleType, displayByAssocType, null, topicNameConstraintType, tmConstruct);
ArrayList<Topic> result = Utils.union(Utils.union(Utils.union(resultPsi, resultSl), resultIi), resultName);
- if(result.size() > 1) throw new InvalidGdlSchemaException("the topic " + getAnyIdOfTopic(tmValueOrvalueGroup) + " must be bound none or once to a tmcl:constraint via a " + PSIs.GDL.AssociationType.gdlDisplayBy + " assciation, but is: " + result.size());
+ if(result.size() > 1) throw new InvalidGdlSchemaException("the topic " + getAnyIdOfTopic(tmValueOrValueGroup) + " must be bound none or once to a tmcl:constraint via a " + PSIs.GDL.AssociationType.gdlDisplayBy + " assciation, but is: " + result.size());
else if(result.size() == 1) return result.get(0);
else return null;
}
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 Aug 25 04:55:40 2011 (r783)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Thu Aug 25 05:51:35 2011 (r784)
@@ -187,7 +187,7 @@
{"type":"si:[gdl:view-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-creator-text-list-box-env-value-group]"},{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-creator-text-list-box-env]"}]},
{"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-creator-text-list-box-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgg:hash-object-has-environment-environment-role-player]"}]},
{"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-has-environment-environment-role-player]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:has-environment-environment-role-constraint]"}]},
- {"type":"si:[gdl:display-by]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-creator-text-list-box-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:environment-name-constraint]"}]},
+ {"type":"si:[gdl:display-by]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-creator-text-list-box-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:environment-name-constraint]"}]},
{"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-key]"}]},
{"type":"si:[gdl:position]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-creator-text-label-key-position]"},{"type":"si:[gdl:ancestor]", "player":"si:[tgg:has-environment-creator-association-view]"},{"type":"si:[gdl:descendant]", "player":"si:[tgg:hash-object-creator-text-label-key]"}]},
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 Aug 25 04:55:40 2011 (r783)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Aug 25 05:51:35 2011 (r784)
@@ -180,7 +180,7 @@
{"type":"si:[gdl:view-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-editor-text-env-value-group]"},{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-editor-text-env]"}]},
{"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-editor-text-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgg:hash-object-has-environment-environment-role-player]"}]},
{"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-has-environment-environment-role-player]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:has-environment-environment-role-constraint]"}]},
- {"type":"si:[gdl:display-by]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-editor-text-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:environment-name-constraint]"}]},
+ {"type":"si:[gdl:display-by]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-editor-text-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:environment-name-constraint]"}]},
{"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-key]"}]},
{"type":"si:[gdl:position]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-editor-text-label-key-position]"},{"type":"si:[gdl:ancestor]", "player":"si:[tgg:has-environment-editor-association-view]"},{"type":"si:[gdl:descendant]", "player":"si:[tgg:hash-object-editor-text-label-key]"}]},
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 Aug 25 04:55:40 2011 (r783)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Thu Aug 25 05:51:35 2011 (r784)
@@ -10496,7 +10496,7 @@
"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-env-value-group]"
},
@@ -11880,7 +11880,7 @@
"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-list-box-env-value-group]"
},
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 Aug 25 04:55:40 2011 (r783)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Thu Aug 25 05:51:35 2011 (r784)
@@ -8944,7 +8944,7 @@
</t:type>
<t:role>
<t:type>
- <t:topicRef href="#t2661" />
+ <t:topicRef href="#t2656" />
</t:type>
<t:topicRef href="#t6068" />
</t:role>
@@ -10258,7 +10258,7 @@
</t:type>
<t:role>
<t:type>
- <t:topicRef href="#t2661" />
+ <t:topicRef href="#t2656" />
</t:type>
<t:topicRef href="#t2946" />
</t:role>
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 Aug 25 04:55:40 2011 (r783)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Thu Aug 25 05:51:35 2011 (r784)
@@ -4893,7 +4893,7 @@
"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-env-value-group]"
},
@@ -5764,7 +5764,7 @@
"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-list-box-env-value-group]"
},
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 Aug 25 04:55:40 2011 (r783)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Thu Aug 25 05:51:35 2011 (r784)
@@ -4108,7 +4108,7 @@
</t:type>
<t:role>
<t:type>
- <t:topicRef href="#t2661" />
+ <t:topicRef href="#t2656" />
</t:type>
<t:topicRef href="#t6068" />
</t:role>
@@ -5422,7 +5422,7 @@
</t:type>
<t:role>
<t:type>
- <t:topicRef href="#t2661" />
+ <t:topicRef href="#t2656" />
</t:type>
<t:topicRef href="#t2946" />
</t:role>
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 Aug 25 04:55:40 2011 (r783)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Thu Aug 25 05:51:35 2011 (r784)
@@ -4949,7 +4949,7 @@
"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-env-value-group]"
},
@@ -5820,7 +5820,7 @@
"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-list-box-env-value-group]"
},
1
0

[isidorus-cvs] r783 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 04:55:40 2011
New Revision: 783
Log:
gdl-frontend: Widgets: udpated the merged jtm and xtm files for the TextGrid-ServiceRegistry GDL-Schema
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_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_Edit_HashObject.jtm
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Aug 25 04:07:48 2011 (r782)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Aug 25 04:55:40 2011 (r783)
@@ -113,7 +113,7 @@
{"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]"]},
- {"subject_identifiers":["[tgg:hash-object-editor-text-label-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_label_key_id"}, {"type":"si:[gdl:readonly]", "value":"true"}, {"type":"si:[gdl:width]", "value":"1000px"},{"type":"si:[gdl:background-color]", "value":"gray"}, {"type":"si:[gdl:border-style]", "value":"none"}]},
+ {"subject_identifiers":["[tgg:hash-object-editor-text-label-key]"], "instance_of":["si:[gdlt:Text]"], "occurrences":[{"type":"si:[gdl:id]", "value":"hash_object_text_label_key_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-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":"10px"}]},
{"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:"}]},
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 Aug 25 04:07:48 2011 (r782)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.jtm Thu Aug 25 04:55:40 2011 (r783)
@@ -1956,6 +1956,14 @@
"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
}
]
},
@@ -2109,7 +2117,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"320px",
+ "value":"322px",
"scope":null,
"reifier":null
},
@@ -2290,6 +2298,14 @@
"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
}
]
},
@@ -2443,7 +2459,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"320px",
+ "value":"322px",
"scope":null,
"reifier":null
},
@@ -2642,6 +2658,14 @@
"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
}
]
},
@@ -2848,6 +2872,14 @@
"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
}
]
},
@@ -3038,6 +3070,14 @@
"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
}
]
},
@@ -3259,7 +3299,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"360px",
+ "value":"362px",
"scope":null,
"reifier":null
},
@@ -3579,6 +3619,14 @@
"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
}
]
},
@@ -3785,6 +3833,14 @@
"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
}
]
},
@@ -3982,7 +4038,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"230px",
+ "value":"232px",
"scope":null,
"reifier":null
}
@@ -4206,7 +4262,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"360px",
+ "value":"362px",
"scope":null,
"reifier":null
},
@@ -4435,6 +4491,16 @@
"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,
@@ -4567,6 +4633,16 @@
"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,
@@ -4577,7 +4653,8 @@
"occurrences":null
},
{
- "subject_identifiers":["[pref_2:Visible-Object]"
+ "subject_identifiers":["[pref_2:Visible-Object]",
+ "[pref_2:Visible-Object]"
],
"subject_locators":null,
"item_identifiers":null,
@@ -4705,7 +4782,8 @@
"occurrences":null
},
{
- "subject_identifiers":["[pref_3:container]"
+ "subject_identifiers":["[pref_3:container]",
+ "[pref_3:container]"
],
"subject_locators":null,
"item_identifiers":null,
@@ -7573,1566 +7651,1464 @@
},
{
"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-editor-delete-button-position]"
- },
- {
- "item_identifiers":null,
- "type":"si:[pref_3:ancestor]",
+ "type":"si:[pref_6:instance]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-name-text]"
+ "player":"si:[pref_4:parameter-needs-b64-encoding-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-delete-button]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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-editor-topic-view]"
+ "player":"si:[pref_4:parameter-crud-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-delete-button]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-editor-name-text-value-group]"
+ "player":"si:[pref_4:parameter-crud-constraint]"
},
{
"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_7:topic-occurrence-constraint]"
}
]
},
{
"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-editor-name-text-value-group]"
+ "player":"si:[pref_4:parameter-multiple-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descriptor]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-name-text]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-editor-name-text-position]"
- },
- {
- "item_identifiers":null,
- "type":"si:[pref_3:ancestor]",
+ "type":"si:[pref_6:instance]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-text-label]"
+ "player":"si:[pref_4:parameter-multiple-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-name-text]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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-editor-topic-view]"
+ "player":"si:[pref_4:parameter-mime-type-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-name-text]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-editor-text-label-value-group]"
+ "player":"si:[pref_4:parameter-mime-type-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descriptor]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-text-label]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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-editor-text-label-value-group]"
+ "player":"si:[pref_4:parameter-param-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:value]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-text-label-value]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-editor-text-label-position]"
- },
- {
- "item_identifiers":null,
- "type":"si:[pref_3:ancestor]",
+ "type":"si:[pref_6:instance]",
"reifier":null,
- "player":"si:[pref_1:environment-default-editor-topic-view]"
+ "player":"si:[pref_4:parameter-param-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-text-label]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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-editor-topic-view]"
+ "player":"si:[pref_4:parameter-parameter-type-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-text-label]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-editor-topic-view]"
+ "player":"si:[pref_4:parameter-parameter-type-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-value]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-editor-view-binding]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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:environment-editor-view-binding]"
+ "player":"si:[pref_4:parameter-parameter-id-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-construct]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_5:Environment]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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:textgrid-ui-schema]"
+ "player":"si:[pref_4:parameter-parameter-id-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-default-editor-topic-view]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:parameter-name-constraint]"
},
{
"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_7:topic-name-constraint]"
}
]
},
{
"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_4:parameter-psi-constraint]"
},
{
"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_7:subject-identifier-constraint]"
}
]
},
{
"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_4:service-tg-approved-datatype-constraint]"
},
{
"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_7:occurrence-datatype-constraint]"
}
]
},
{
"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_4:service-tg-approved-constraint]"
},
{
"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_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-textgrid-url-datatype-constraint]"
},
{
"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_7:occurrence-datatype-constraint]"
}
]
},
{
"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_4:service-textgrid-url-constraint]"
},
{
"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_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-identifier-datatype-constraint]"
},
{
"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_7:occurrence-datatype-constraint]"
}
]
},
{
"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_4:service-identifier-constraint]"
},
{
"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_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-owner-datatype-constraint]"
},
{
"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_7:occurrence-datatype-constraint]"
}
]
},
{
"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_4:service-owner-constraint]"
},
{
"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_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-use-target-ns-datatype-constraint]"
},
{
"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_7:occurrence-datatype-constraint]"
}
]
},
{
"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:environment-creator-view-binding]"
+ "player":"si:[pref_4:service-use-target-ns-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-construct]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_5:Environment]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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:textgrid-ui-schema]"
+ "player":"si:[pref_4:service-target-namespace-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:environment-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:Default-Value]"
+ "player":"si:[pref_4:service-target-namespace-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-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:Literal-Value]"
+ "player":"si:[pref_4:service-description-location-body-datatype-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:occurrence-datatype-constraint]"
}
]
},
{
"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-delete-button-position]"
- },
- {
- "item_identifiers":null,
- "type":"si:[pref_3:ancestor]",
+ "type":"si:[pref_6:instance]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-value]"
+ "player":"si:[pref_4:service-description-location-body-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-delete-button]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-inline-description-location-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-delete-button]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-value-value-group]"
+ "player":"si:[pref_4:service-inline-description-location-constraint]"
},
{
"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_7:topic-occurrence-constraint]"
}
]
},
{
"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-value-value-group]"
+ "player":"si:[pref_4:service-description-location-uri-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descriptor]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-value]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-value-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-value]"
+ "player":"si:[pref_4:service-description-location-uri-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-value]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-keywords-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-value]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-value-value-group]"
+ "player":"si:[pref_4:service-keywords-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descriptor]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-label-value]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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-value-value-group]"
+ "player":"si:[pref_4:service-description-datatype-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:value]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-label-value-value]"
+ "player":"si:[pref_7:occurrence-datatype-constraint]"
}
]
},
{
"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-value-position]"
- },
- {
- "item_identifiers":null,
- "type":"si:[pref_3:ancestor]",
+ "type":"si:[pref_6:instance]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-key]"
+ "player":"si:[pref_4:service-description-constraint]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-label-value]"
+ "player":"si:[pref_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-service-type-datatype-constraint]"
},
{
"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_7:occurrence-datatype-constraint]"
}
]
},
{
"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_4:service-service-type-constraint]"
},
{
"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_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-operation-datatype-constraint]"
},
{
"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_7:occurrence-datatype-constraint]"
}
]
},
{
"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_4:service-operation-constraint]"
},
{
"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_7:topic-occurrence-constraint]"
}
]
},
{
"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_4:service-name-constraint]"
},
{
"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_7:topic-name-constraint]"
}
]
},
{
"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_4:service-psi-constraint]"
},
{
"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_7:subject-identifier-constraint]"
}
]
},
{
"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_4:data]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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_4:form]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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_4:default]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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_4:parameter-config-id]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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_4:parameter-config-name]"
},
{
"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:name-type]"
}
]
},
{
"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-env-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_4:example-config]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-env]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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:has-environment-editor-association-view]"
+ "player":"si:[pref_4:needs-b64-encoding]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-env]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"item_identifiers":null,
- "type":"si:[pref_3:association-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:has-environment-editor-association-view]"
+ "player":"si:[pref_4:crud]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-construct]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_4:has-environment-hash-association-role-constraint]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"item_identifiers":null,
- "type":"si:[pref_3:association-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:has-environment-editor-association-view]"
+ "player":"si:[pref_4:multiple]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-construct]",
+ "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_3:association-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:has-environment-editor-association-view]"
+ "player":"si:[pref_4:mime-type]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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-has-environment-editor-association-view-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-env]"
+ "player":"si:[pref_4:param]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:has-environment-editor-association-view]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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_4:parameter-type]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:has-environment-editor-association-view]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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-env-value-group]"
+ "player":"si:[pref_4:parameter-id]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descriptor]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-label-env]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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-env-value-group]"
+ "player":"si:[pref_4:parameter-name]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:value]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-label-env-value]"
+ "player":"si:[pref_7:name-type]"
}
]
},
{
"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-editor-text-label-env-position]"
+ "player":"si:[pref_4:tg-approved]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:ancestor]",
+ "type":"si:[pref_6:type]",
"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]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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_4:textgrid-url]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-text-label-env]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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:hash-object-default-editor-topic-view]"
+ "player":"si:[pref_4:identifier]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-value]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-editor-view-binding]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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-editor-view-binding]"
+ "player":"si:[pref_4:owner]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-construct]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_5:Hash-Object]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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:textgrid-ui-schema]"
+ "player":"si:[pref_4:use-target-ns]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-default-editor-topic-view]"
+ "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_2:Action-Button]"
+ "player":"si:[pref_4:target-namespace]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:Delete-Button]"
+ "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_2:Association-View]"
+ "player":"si:[pref_4:description-location-body]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:Editor-Association-View]"
+ "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_2:Default-Topic-View]"
+ "player":"si:[pref_4:inline-description-location]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:Default-Editor-Topic-View]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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_4:description-location-uri]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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_4:keywords]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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_4:description]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descriptor]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-reset-button-value]"
+ "player":"si:[pref_7:occurrence-type]"
}
]
},
{
"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_4:service-type]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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_4:operation]"
},
{
"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_7:occurrence-type]"
}
]
},
{
"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_4:service-name]"
},
{
"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_7:name-type]"
}
]
},
{
"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_4:configuration]"
},
{
"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_7:role-type]"
}
]
},
{
"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_4:parameter]"
},
{
"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_7:role-type]"
}
]
},
{
"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_4:has-config]"
},
{
"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_7:association-type]"
}
]
},
{
"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_4:has-parameter]"
},
{
"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_7:association-type]"
}
]
},
{
"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_5:Parameter-Config]"
},
{
"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_7:topic-type]"
}
]
},
{
"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_5:Parameter]"
},
{
"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_7:topic-type]"
}
]
},
@@ -9145,19 +9121,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:environment-editor-delete-button-position]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:ancestor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-key]"
+ "player":"si:[pref_1:environment-editor-name-text]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:descendant]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-value]"
+ "player":"si:[pref_1:environment-editor-delete-button]"
}
]
},
@@ -9170,13 +9146,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:environment-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:environment-editor-delete-button]"
}
]
},
@@ -9189,13 +9165,13 @@
"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:environment-editor-name-text-value-group]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:tm-construct]",
"reifier":null,
- "player":"si:[pref_4:hash-key-constraint]"
+ "player":"si:[pref_4:environment-name-constraint]"
}
]
},
@@ -9208,13 +9184,13 @@
"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:environment-editor-name-text-value-group]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:descriptor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-key]"
+ "player":"si:[pref_1:environment-editor-name-text]"
}
]
},
@@ -9227,19 +9203,19 @@
"item_identifiers":null,
"type":"si:[pref_3:descriptor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-key-position]"
+ "player":"si:[pref_1:environment-editor-name-text-position]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:ancestor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-key]"
+ "player":"si:[pref_1:environment-editor-text-label]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:descendant]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-key]"
+ "player":"si:[pref_1:environment-editor-name-text]"
}
]
},
@@ -9252,13 +9228,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:environment-default-editor-topic-view]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:containee]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-key]"
+ "player":"si:[pref_1:environment-editor-name-text]"
}
]
},
@@ -9271,13 +9247,13 @@
"item_identifiers":null,
"type":"si:[pref_3:value-group]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]"
+ "player":"si:[pref_1:environment-editor-text-label-value-group]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:descriptor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-key]"
+ "player":"si:[pref_1:environment-editor-text-label]"
}
]
},
@@ -9290,13 +9266,13 @@
"item_identifiers":null,
"type":"si:[pref_3:value-group]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-key-value-group]"
+ "player":"si:[pref_1:environment-editor-text-label-value-group]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:value]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-key-value]"
+ "player":"si:[pref_1:environment-editor-text-label-value]"
}
]
},
@@ -9309,19 +9285,19 @@
"item_identifiers":null,
"type":"si:[pref_3:descriptor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-key-position]"
+ "player":"si:[pref_1:environment-editor-text-label-position]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:ancestor]",
"reifier":null,
- "player":"si:[pref_1:has-environment-creator-association-view]"
+ "player":"si:[pref_1:environment-default-editor-topic-view]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:descendant]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-key]"
+ "player":"si:[pref_1:environment-editor-text-label]"
}
]
},
@@ -9334,32 +9310,32 @@
"item_identifiers":null,
"type":"si:[pref_3:container]",
"reifier":null,
- "player":"si:[pref_1:hash-object-default-creator-topic-view]"
+ "player":"si:[pref_1:environment-default-editor-topic-view]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:containee]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-key]"
+ "player":"si:[pref_1:environment-editor-text-label]"
}
]
},
{
"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:descriptor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-has-environment-environment-role-player]"
+ "player":"si:[pref_1:environment-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:has-environment-environment-role-constraint]"
+ "player":"si:[pref_1:environment-editor-view-binding]"
}
]
},
@@ -9370,236 +9346,243 @@
"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-list-box-env-value-group]"
+ "player":"si:[pref_1:environment-editor-view-binding]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:tm-construct]",
"reifier":null,
- "player":"si:[pref_1:hash-object-has-environment-environment-role-player]"
+ "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-creator-text-list-box-env-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-creator-text-list-box-env]"
+ "player":"si:[pref_1:environment-default-editor-topic-view]"
}
]
},
{
"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-list-box-env-position]"
- },
- {
- "item_identifiers":null,
- "type":"si:[pref_3:ancestor]",
+ "type":"si:[pref_6:instance]",
"reifier":null,
- "player":"si:[pref_1:has-environment-creator-association-view]"
+ "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:hash-object-creator-text-list-box-env]"
+ "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:has-environment-creator-association-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:hash-object-creator-text-list-box-env]"
+ "player":"si:[pref_2:Delete-Button]"
}
]
},
{
"item_identifiers":null,
- "type":"si:[pref_3:association-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:hash-object-default-creator-topic-view]"
+ "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:has-environment-hash-association-role-constraint]"
+ "player":"si:[pref_2:Value-Group]"
}
]
},
{
"item_identifiers":null,
- "type":"si:[pref_3:association-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:hash-object-default-creator-topic-view]"
+ "player":"si:[pref_1:environment-editor-name-text-position]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-construct]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_4:has-environment-hash-role-constraint]"
+ "player":"si:[pref_2:Position]"
}
]
},
{
"item_identifiers":null,
- "type":"si:[pref_3:association-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:hash-object-default-creator-topic-view]"
+ "player":"si:[pref_1:environment-editor-name-text]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-construct]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_4:has-environment-environment-association-role-constraint]"
+ "player":"si:[pref_2:Text]"
}
]
},
{
"item_identifiers":null,
- "type":"si:[pref_3:association-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:hash-object-default-creator-topic-view]"
+ "player":"si:[pref_1:environment-editor-text-label-value]"
},
{
"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: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]",
+ "type":"si:[pref_6:instance]",
"reifier":null,
- "player":"si:[pref_1:hash-object-has-environement-creator-association-view-position]"
+ "player":"si:[pref_1:environment-editor-text-label-value-group]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:ancestor]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-env]"
+ "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_3:descendant]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:has-environment-creator-association-view]"
+ "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:environment-editor-text-label]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:containee]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:has-environment-creator-association-view]"
+ "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-label-env-value-group]"
+ "player":"si:[pref_1:environment-editor-view-binding]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:descriptor]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-env]"
+ "player":"si:[pref_2:TM-Single-Type-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-creator-text-label-env-value-group]"
+ "player":"si:[pref_1:environment-default-editor-topic-view]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:value]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-env-value]"
+ "player":"si:[pref_2:Default-Editor-Topic-View]"
}
]
},
@@ -9612,19 +9595,19 @@
"item_identifiers":null,
"type":"si:[pref_3:descriptor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-env-position]"
+ "player":"si:[pref_1:environment-creator-commit-button-position]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:ancestor]",
"reifier":null,
- "player":"si:[pref_1:hash-object-default-creator-topic-view]"
+ "player":"si:[pref_1:environment-creator-name-text]"
},
{
"item_identifiers":null,
"type":"si:[pref_3:descendant]",
"reifier":null,
- "player":"si:[pref_1:hash-object-creator-text-label-env]"
+ "player":"si:[pref_1:environment-creator-commit-button]"
}
]
},
@@ -9637,51 +9620,76 @@
"item_identifiers":null,
"type":"si:[pref_3:container]",
"reifier":null,
- "player":"si:[pref_1:hash-object-default-creator-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-creator-text-label-env]"
+ "player":"si:[pref_1:environment-creator-commit-button]"
}
]
},
{
"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-creator-topic-view]"
+ "player":"si:[pref_1:environment-creator-name-text-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-creator-view-binding]"
+ "player":"si:[pref_4:environment-name-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: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:hash-object-creator-view-binding]"
+ "player":"si:[pref_1:environment-creator-name-text-position]"
},
{
"item_identifiers":null,
- "type":"si:[pref_3:tm-construct]",
+ "type":"si:[pref_3:ancestor]",
"reifier":null,
- "player":"si:[pref_5:Hash-Object]"
+ "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]"
}
]
},
@@ -9694,146 +9702,152 @@
"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:hash-object-default-creator-topic-view]"
+ "player":"si:[pref_1:environment-creator-name-text]"
}
]
},
{
"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:Action-Button]"
+ "player":"si:[pref_1:environment-creator-text-label-value-group]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_3:descriptor]",
"reifier":null,
- "player":"si:[pref_2:Commit-Button]"
+ "player":"si:[pref_1:environment-creator-text-label]"
}
]
},
{
"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:Button]"
+ "player":"si:[pref_1:environment-creator-text-label-value-group]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_3:value]",
"reifier":null,
- "player":"si:[pref_2:Action-Button]"
+ "player":"si:[pref_1:environment-creator-text-label-value]"
}
]
},
{
"item_identifiers":null,
- "type":"si:[pref_6:supertype-subtype]",
+ "type":"si:[pref_3:position]",
"reifier":null,
"scope":null,
"roles":[{
"item_identifiers":null,
- "type":"si:[pref_6:supertype]",
+ "type":"si:[pref_3:descriptor]",
"reifier":null,
- "player":"si:[pref_2:Text-Object]"
+ "player":"si:[pref_1:environment-creator-text-label-position]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_3:ancestor]",
"reifier":null,
- "player":"si:[pref_2:Button]"
+ "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_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:Descriptor]"
+ "player":"si:[pref_1:environment-default-creator-topic-view]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_3:containee]",
"reifier":null,
- "player":"si:[pref_2:Value-Group]"
+ "player":"si:[pref_1:environment-creator-text-label]"
}
]
},
{
"item_identifiers":null,
- "type":"si:[pref_6:supertype-subtype]",
+ "type":"si:[pref_3:topic-view-binding]",
"reifier":null,
"scope":null,
"roles":[{
"item_identifiers":null,
- "type":"si:[pref_6:supertype]",
+ "type":"si:[pref_3:descriptor]",
"reifier":null,
- "player":"si:[pref_2:Descriptor]"
+ "player":"si:[pref_1:environment-default-creator-topic-view]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_3:tm-value]",
"reifier":null,
- "player":"si:[pref_2:Position]"
+ "player":"si:[pref_1:environment-creator-view-binding]"
}
]
},
{
"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:descriptor]",
"reifier":null,
- "player":"si:[pref_2:Text-Object]"
+ "player":"si:[pref_1:environment-creator-view-binding]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_3:tm-construct]",
"reifier":null,
- "player":"si:[pref_2:Text]"
+ "player":"si:[pref_5:Environment]"
}
]
},
{
"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:Text-Object]"
+ "player":"si:[pref_1:textgrid-ui-schema]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_3:containee]",
"reifier":null,
- "player":"si:[pref_2:List-Box]"
+ "player":"si:[pref_1:environment-default-creator-topic-view]"
}
]
},
@@ -9846,13 +9860,13 @@
"item_identifiers":null,
"type":"si:[pref_6:supertype]",
"reifier":null,
- "player":"si:[pref_2:Visible-Object]"
+ "player":"si:[pref_2:Default-Value]"
},
{
"item_identifiers":null,
"type":"si:[pref_6:subtype]",
"reifier":null,
- "player":"si:[pref_2:Text-Object]"
+ "player":"si:[pref_2:Value]"
}
]
},
@@ -9865,220 +9879,2754 @@
"item_identifiers":null,
"type":"si:[pref_6:supertype]",
"reifier":null,
- "player":"si:[pref_2:Default-Literal-Value]"
+ "player":"si:[pref_2:Literal-Value]"
},
{
"item_identifiers":null,
"type":"si:[pref_6:subtype]",
"reifier":null,
- "player":"si:[pref_2:Default-Value]"
+ "player":"si:[pref_2:Value]"
}
]
},
{
"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_1:environment-creator-commit-button-position]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:Literal-Value]"
+ "player":"si:[pref_2:Position]"
}
]
},
{
"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_1:environment-creator-commit-button]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:TM-Value]"
+ "player":"si:[pref_2:Commit-Button]"
}
]
},
{
"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_1:environment-creator-name-text-value-group]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:Value]"
+ "player":"si:[pref_2:Value-Group]"
}
]
},
{
"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_1:environment-creator-name-text-position]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:Descriptor]"
+ "player":"si:[pref_2:Position]"
}
]
},
{
"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_1:environment-creator-name-text]"
},
{
"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_2:Text]"
}
]
},
{
"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_1:environment-creator-text-label-value]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:Association-View]"
+ "player":"si:[pref_2:Default-Literal-Value]"
}
]
},
{
"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_1:environment-creator-text-label-value-group]"
},
{
"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_2:Value-Group]"
}
]
},
{
"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_1:environment-creator-text-label-position]"
},
{
"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_2:Position]"
}
]
},
{
"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_1:environment-creator-text-label]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:Topic-View]"
+ "player":"si:[pref_2:Text]"
}
]
},
{
"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_1:environment-creator-view-binding]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "type":"si:[pref_6:type]",
"reifier":null,
- "player":"si:[pref_2:View]"
+ "player":"si:[pref_2:TM-Single-Type-Value]"
}
]
},
{
"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_1:environment-default-creator-topic-view]"
},
{
"item_identifiers":null,
- "type":"si:[pref_6:subtype]",
+ "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-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: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_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_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-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-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: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_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:association-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-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:hash-object-default-creator-topic-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-default-creator-topic-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:hash-object-default-creator-topic-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-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: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]"
}
@@ -10086,837 +12634,2533 @@
},
{
"item_identifiers":null,
- "type":"si:[pref_6:supertype-subtype]",
+ "type":"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-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-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_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]",
+ "reifier":null,
+ "player":"si:[pref_4:service]"
+ }
+ ]
+ },
+ {
+ "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]",
+ "reifier":null,
+ "player":"si:[pref_4:service]"
+ }
+ ]
+ },
+ {
+ "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]",
+ "reifier":null,
+ "player":"si:[pref_4:has-hash]"
+ }
+ ]
+ },
+ {
+ "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_identifiers":null,
+ "type":"si:[pref_6:type-instance]",
+ "reifier":null,
+ "scope":null,
+ "roles":[{
+ "item_identifiers":null,
+ "type":"si:[pref_6:instance]",
+ "reifier":null,
+ "player":"si:[pref_4:hash-key-regular-expression-constraint]"
+ },
+ {
+ "item_identifiers":null,
+ "type":"si:[pref_6:type]",
+ "reifier":null,
+ "player":"si:[pref_7:regular-expression-constraint]"
+ }
+ ]
+ },
+ {
+ "item_identifiers":null,
+ "type":"si:[pref_6:type-instance]",
+ "reifier":null,
+ "scope":null,
+ "roles":[{
+ "item_identifiers":null,
+ "type":"si:[pref_6:instance]",
+ "reifier":null,
+ "player":"si:[pref_4:hash-key-constraint]"
+ },
+ {
+ "item_identifiers":null,
+ "type":"si:[pref_6:type]",
+ "reifier":null,
+ "player":"si:[pref_7:topic-occurrence-constraint]"
+ }
+ ]
+ },
+ {
+ "item_identifiers":null,
+ "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-hash-type-datatype-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:occurrence-datatype-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-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-association-role-constraint]"
+ "player":"si:[pref_7:regular-expression-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_6:instance]",
+ "reifier":null,
+ "player":"si:[pref_7:topic-name-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: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_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 Aug 25 04:07:48 2011 (r782)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_full_TMCL_and_GDL_Schema.xtm Thu Aug 25 04:55:40 2011 (r783)
@@ -674,6 +674,7 @@
<t:topic id="t2636">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/container" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/container" />
<t:instanceOf>
<t:topicRef href="#t251" />
</t:instanceOf>
@@ -762,6 +763,7 @@
<t:topic id="t2701">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object" />
</t:topic>
<t:topic id="t2706">
@@ -772,184 +774,198 @@
</t:topic>
<t:topic id="t2711">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/height" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/padding-left" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2716">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/pointer" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/height" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2721">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/border-style" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/pointer" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2726">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/background-color" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/border-style" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2731">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/id" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/background-color" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2736">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/View" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/id" />
+ <t:instanceOf>
+ <t:topicRef href="#t246" />
+ </t:instanceOf>
</t:topic>
<t:topic id="t2741">
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/View" />
+ </t:topic>
+
+ <t:topic id="t2746">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/view-name" />
<t:instanceOf>
<t:topicRef href="#t241" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2746">
+ <t:topic id="t2751">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Topic-View" />
</t:topic>
- <t:topic id="t2751">
+ <t:topic id="t2756">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Topic-View" />
</t:topic>
- <t:topic id="t2756">
+ <t:topic id="t2761">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Creator-Topic-View" />
</t:topic>
- <t:topic id="t2761">
+ <t:topic id="t2766">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Association-View" />
</t:topic>
- <t:topic id="t2766">
+ <t:topic id="t2771">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Creator-Association-View" />
</t:topic>
- <t:topic id="t2771">
+ <t:topic id="t2776">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value" />
</t:topic>
- <t:topic id="t2776">
+ <t:topic id="t2781">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Value" />
</t:topic>
- <t:topic id="t2781">
+ <t:topic id="t2786">
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/display-by" />
+ <t:instanceOf>
+ <t:topicRef href="#t246" />
+ </t:instanceOf>
+ </t:topic>
+
+ <t:topic id="t2791">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Single-Type-Value" />
</t:topic>
- <t:topic id="t2786">
+ <t:topic id="t2796">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Literal-Value" />
</t:topic>
- <t:topic id="t2791">
+ <t:topic id="t2801">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/literal-value" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2796">
+ <t:topic id="t2806">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Value" />
</t:topic>
- <t:topic id="t2801">
+ <t:topic id="t2811">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/fixed" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2806">
+ <t:topic id="t2816">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Literal-Value" />
</t:topic>
- <t:topic id="t2811">
+ <t:topic id="t2821">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text-Object" />
</t:topic>
- <t:topic id="t2816">
+ <t:topic id="t2826">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/List-Box" />
</t:topic>
- <t:topic id="t2821">
+ <t:topic id="t2831">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text" />
</t:topic>
- <t:topic id="t2826">
+ <t:topic id="t2836">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/readonly" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2831">
+ <t:topic id="t2841">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/font-size" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2836">
+ <t:topic id="t2846">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Position" />
</t:topic>
- <t:topic id="t2841">
+ <t:topic id="t2851">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/position-style" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2846">
+ <t:topic id="t2856">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/top" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2851">
+ <t:topic id="t2861">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/left" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2856">
+ <t:topic id="t2866">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/right" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2861">
+ <t:topic id="t2871">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value-Group" />
</t:topic>
- <t:topic id="t2866">
+ <t:topic id="t2876">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Button" />
</t:topic>
- <t:topic id="t2871">
+ <t:topic id="t2881">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Action-Button" />
</t:topic>
- <t:topic id="t2876">
+ <t:topic id="t2886">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Commit-Button" />
</t:topic>
- <t:topic id="t2881">
+ <t:topic id="t2891">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/textgrid-ui-schema" />
<t:instanceOf>
<t:topicRef href="#t2681" />
@@ -962,20 +978,20 @@
</t:name>
</t:topic>
- <t:topic id="t2886">
+ <t:topic id="t2896">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-creator-topic-v…" />
<t:instanceOf>
- <t:topicRef href="#t2756" />
+ <t:topicRef href="#t2761" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_default_creator_topic_view_id</t:resourceData>
</t:occurrence>
@@ -983,43 +999,43 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">360px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">362px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">160px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2891">
+ <t:topic id="t2901">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-view-binding" />
<t:instanceOf>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2896">
+ <t:topic id="t2906">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-creator-association…" />
<t:instanceOf>
- <t:topicRef href="#t2766" />
+ <t:topicRef href="#t2771" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">has_environment_createor_association_view_id</t:resourceData>
</t:occurrence>
@@ -1031,45 +1047,45 @@
</t:occurrence>
</t:topic>
- <t:topic id="t2901">
+ <t:topic id="t2911">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environement-creato…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2906">
+ <t:topic id="t2916">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_env_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1081,77 +1097,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2911">
+ <t:topic id="t2921">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2916">
+ <t:topic id="t2926">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2921">
+ <t:topic id="t2931">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2926">
+ <t:topic id="t2936">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-e…" />
<t:instanceOf>
- <t:topicRef href="#t2816" />
+ <t:topicRef href="#t2826" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_list_box_env_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1159,63 +1175,63 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">230px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">232px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2931">
+ <t:topic id="t2941">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-e…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">0px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">0px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2936">
+ <t:topic id="t2946">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-e…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2941">
+ <t:topic id="t2951">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-environ…" />
<t:instanceOf>
<t:topicRef href="#t2696" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2946">
+ <t:topic id="t2956">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_key_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1227,77 +1243,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2951">
+ <t:topic id="t2961">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2956">
+ <t:topic id="t2966">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2961">
+ <t:topic id="t2971">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">key:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2966">
+ <t:topic id="t2976">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_key_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">false</t:resourceData>
</t:occurrence>
@@ -1309,64 +1325,70 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2716" />
+ <t:topicRef href="#t2721" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t2971">
+ <t:topic id="t2981">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-positi…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2976">
+ <t:topic id="t2986">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-value-…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2981">
+ <t:topic id="t2991">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_value_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1378,77 +1400,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2986">
+ <t:topic id="t2996">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2991">
+ <t:topic id="t3001">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2996">
+ <t:topic id="t3006">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">value:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3001">
+ <t:topic id="t3011">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_value_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">false</t:resourceData>
</t:occurrence>
@@ -1460,64 +1482,70 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2716" />
+ <t:topicRef href="#t2721" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t3006">
+ <t:topic id="t3016">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-posi…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3011">
+ <t:topic id="t3021">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t3016">
+ <t:topic id="t3026">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button" />
<t:instanceOf>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2881" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_reset_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -1529,71 +1557,71 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3021">
+ <t:topic id="t3031">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-po…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">115px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3026">
+ <t:topic id="t3036">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-va…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t3031">
+ <t:topic id="t3041">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-va…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">reset</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3036">
+ <t:topic id="t3046">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button" />
<t:instanceOf>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2886" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_commit_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -1605,63 +1633,63 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3041">
+ <t:topic id="t3051">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button-p…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">115px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2856" />
+ <t:topicRef href="#t2866" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6004">
+ <t:topic id="t6003">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Editor-Topic-View" />
</t:topic>
- <t:topic id="t6009">
+ <t:topic id="t6008">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Editor-Association-View" />
</t:topic>
- <t:topic id="t6015">
+ <t:topic id="t6013">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Delete-Button" />
</t:topic>
- <t:topic id="t6020">
+ <t:topic id="t6018">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-editor-topic-vi…" />
<t:instanceOf>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_default_editor_topic_view_id</t:resourceData>
</t:occurrence>
@@ -1669,43 +1697,43 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">360px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">362px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">160px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6025">
+ <t:topic id="t6023">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-view-binding" />
<t:instanceOf>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6030">
+ <t:topic id="t6028">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_env_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1717,77 +1745,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6035">
+ <t:topic id="t6033">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-p…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6040">
+ <t:topic id="t6038">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-v…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6045">
+ <t:topic id="t6043">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-v…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6050">
+ <t:topic id="t6048">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-editor-association-…" />
<t:instanceOf>
- <t:topicRef href="#t6009" />
+ <t:topicRef href="#t6008" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">has_environment_editor_association_view_id</t:resourceData>
</t:occurrence>
@@ -1799,45 +1827,45 @@
</t:occurrence>
</t:topic>
- <t:topic id="t6055">
+ <t:topic id="t6053">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-editor-…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6060">
+ <t:topic id="t6058">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_env_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1847,54 +1875,60 @@
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">230px</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t6065">
+ <t:topic id="t6063">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-position" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">0px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">0px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6070">
+ <t:topic id="t6068">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-value-g…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6075">
+ <t:topic id="t6073">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_key_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1902,81 +1936,81 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">100px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6080">
+ <t:topic id="t6078">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-p…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">100px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6085">
+ <t:topic id="t6083">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-v…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6090">
+ <t:topic id="t6088">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-v…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">key:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6095">
+ <t:topic id="t6093">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_key_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1988,64 +2022,70 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2716" />
+ <t:topicRef href="#t2721" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t6100">
+ <t:topic id="t6098">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-position" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6105">
+ <t:topic id="t6103">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-value-g…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6110">
+ <t:topic id="t6108">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_value_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2057,77 +2097,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6115">
+ <t:topic id="t6113">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6120">
+ <t:topic id="t6118">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6125">
+ <t:topic id="t6123">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">value:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6130">
+ <t:topic id="t6128">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_value_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2139,64 +2179,70 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2716" />
+ <t:topicRef href="#t2721" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t6135">
+ <t:topic id="t6133">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-posit…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6140">
+ <t:topic id="t6138">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-value…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6145">
+ <t:topic id="t6143">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button" />
<t:instanceOf>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_delete_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -2208,58 +2254,58 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6150">
+ <t:topic id="t6148">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button-po…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">115px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7801">
+ <t:topic id="t7803">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/cursor" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t7807">
+ <t:topic id="t7808">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-creator-topic-v…" />
<t:instanceOf>
- <t:topicRef href="#t2756" />
+ <t:topicRef href="#t2761" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_default_creator_topic_view_id</t:resourceData>
</t:occurrence>
@@ -2267,43 +2313,43 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">320px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">322px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">100px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7812">
+ <t:topic id="t7813">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-view-binding" />
<t:instanceOf>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:instanceOf>
</t:topic>
- <t:topic id="t7817">
+ <t:topic id="t7818">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_text_label_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2315,77 +2361,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7822">
+ <t:topic id="t7823">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-posi…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7827">
+ <t:topic id="t7828">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t7832">
+ <t:topic id="t7833">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-value" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">name:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7837">
+ <t:topic id="t7838">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_name_text_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">false</t:resourceData>
</t:occurrence>
@@ -2397,58 +2443,64 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t7801" />
+ <t:topicRef href="#t7803" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t7842">
+ <t:topic id="t7843">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-posit…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7847">
+ <t:topic id="t7848">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-value…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t7852">
+ <t:topic id="t7853">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button" />
<t:instanceOf>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2886" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_commit_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -2460,51 +2512,51 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7857">
+ <t:topic id="t7858">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button-p…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">65px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2856" />
+ <t:topicRef href="#t2866" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8602">
+ <t:topic id="t8604">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-editor-topic-vi…" />
<t:instanceOf>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_default_editor_topic_view_id</t:resourceData>
</t:occurrence>
@@ -2512,43 +2564,43 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">320px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">322px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">100px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8607">
+ <t:topic id="t8609">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-view-binding" />
<t:instanceOf>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:instanceOf>
</t:topic>
- <t:topic id="t8612">
+ <t:topic id="t8614">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_text_label_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2560,77 +2612,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8617">
+ <t:topic id="t8619">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-posit…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8622">
+ <t:topic id="t8624">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t8627">
+ <t:topic id="t8629">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">name:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8632">
+ <t:topic id="t8634">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_name_text_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2642,58 +2694,64 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t7801" />
+ <t:topicRef href="#t7803" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t8637">
+ <t:topic id="t8639">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-positi…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8642">
+ <t:topic id="t8644">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-value-…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t8647">
+ <t:topic id="t8649">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button" />
<t:instanceOf>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_delete_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -2705,32 +2763,32 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8652">
+ <t:topic id="t8654">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button-po…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">65px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
@@ -7580,19 +7638,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8652" />
+ <t:topicRef href="#t8654" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t8647" />
+ <t:topicRef href="#t8649" />
</t:role>
</t:association>
@@ -7604,13 +7662,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t8647" />
+ <t:topicRef href="#t8649" />
</t:role>
</t:association>
@@ -7622,7 +7680,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t8642" />
+ <t:topicRef href="#t8644" />
</t:role>
<t:role>
<t:type>
@@ -7640,13 +7698,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t8642" />
+ <t:topicRef href="#t8644" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
</t:association>
@@ -7658,19 +7716,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8637" />
+ <t:topicRef href="#t8639" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
</t:association>
@@ -7682,13 +7740,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
</t:association>
@@ -7700,13 +7758,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t8622" />
+ <t:topicRef href="#t8624" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
</t:association>
@@ -7718,13 +7776,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t8622" />
+ <t:topicRef href="#t8624" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t8627" />
+ <t:topicRef href="#t8629" />
</t:role>
</t:association>
@@ -7736,19 +7794,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8617" />
+ <t:topicRef href="#t8619" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
</t:association>
@@ -7760,13 +7818,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
</t:association>
@@ -7778,13 +7836,13 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2646" />
</t:type>
- <t:topicRef href="#t8607" />
+ <t:topicRef href="#t8609" />
</t:role>
</t:association>
@@ -7796,7 +7854,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8607" />
+ <t:topicRef href="#t8609" />
</t:role>
<t:role>
<t:type>
@@ -7814,13 +7872,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2891" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
</t:association>
@@ -7832,13 +7890,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8652" />
+ <t:topicRef href="#t8654" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -7850,13 +7908,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8647" />
+ <t:topicRef href="#t8649" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:role>
</t:association>
@@ -7868,13 +7926,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8642" />
+ <t:topicRef href="#t8644" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -7886,13 +7944,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8637" />
+ <t:topicRef href="#t8639" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -7904,13 +7962,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -7922,13 +7980,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8627" />
+ <t:topicRef href="#t8629" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -7940,13 +7998,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8622" />
+ <t:topicRef href="#t8624" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -7958,13 +8016,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8617" />
+ <t:topicRef href="#t8619" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -7976,13 +8034,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -7994,13 +8052,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8607" />
+ <t:topicRef href="#t8609" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:role>
</t:association>
@@ -8012,13 +8070,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:role>
</t:association>
@@ -8030,19 +8088,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7857" />
+ <t:topicRef href="#t7858" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t7852" />
+ <t:topicRef href="#t7853" />
</t:role>
</t:association>
@@ -8054,13 +8112,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t7852" />
+ <t:topicRef href="#t7853" />
</t:role>
</t:association>
@@ -8072,7 +8130,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t7847" />
+ <t:topicRef href="#t7848" />
</t:role>
<t:role>
<t:type>
@@ -8090,13 +8148,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t7847" />
+ <t:topicRef href="#t7848" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
</t:association>
@@ -8108,19 +8166,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7842" />
+ <t:topicRef href="#t7843" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
</t:association>
@@ -8132,13 +8190,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
</t:association>
@@ -8150,13 +8208,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t7827" />
+ <t:topicRef href="#t7828" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
</t:association>
@@ -8168,13 +8226,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t7827" />
+ <t:topicRef href="#t7828" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t7832" />
+ <t:topicRef href="#t7833" />
</t:role>
</t:association>
@@ -8186,19 +8244,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7822" />
+ <t:topicRef href="#t7823" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
</t:association>
@@ -8210,13 +8268,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
</t:association>
@@ -8228,13 +8286,13 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2646" />
</t:type>
- <t:topicRef href="#t7812" />
+ <t:topicRef href="#t7813" />
</t:role>
</t:association>
@@ -8246,7 +8304,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7812" />
+ <t:topicRef href="#t7813" />
</t:role>
<t:role>
<t:type>
@@ -8264,13 +8322,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2891" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
</t:association>
@@ -8282,13 +8340,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2796" />
+ <t:topicRef href="#t2806" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2771" />
+ <t:topicRef href="#t2776" />
</t:role>
</t:association>
@@ -8300,13 +8358,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2786" />
+ <t:topicRef href="#t2796" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2771" />
+ <t:topicRef href="#t2776" />
</t:role>
</t:association>
@@ -8318,13 +8376,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7857" />
+ <t:topicRef href="#t7858" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -8336,13 +8394,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7852" />
+ <t:topicRef href="#t7853" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2886" />
</t:role>
</t:association>
@@ -8354,13 +8412,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7847" />
+ <t:topicRef href="#t7848" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -8372,13 +8430,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7842" />
+ <t:topicRef href="#t7843" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -8390,13 +8448,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -8408,13 +8466,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7832" />
+ <t:topicRef href="#t7833" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -8426,13 +8484,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7827" />
+ <t:topicRef href="#t7828" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -8444,13 +8502,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7822" />
+ <t:topicRef href="#t7823" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -8462,13 +8520,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -8480,13 +8538,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7812" />
+ <t:topicRef href="#t7813" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:role>
</t:association>
@@ -8498,13 +8556,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2756" />
+ <t:topicRef href="#t2761" />
</t:role>
</t:association>
@@ -8516,7 +8574,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7801" />
+ <t:topicRef href="#t7803" />
</t:role>
<t:role>
<t:type>
@@ -8534,19 +8592,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6150" />
+ <t:topicRef href="#t6148" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6145" />
+ <t:topicRef href="#t6143" />
</t:role>
</t:association>
@@ -8558,13 +8616,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6145" />
+ <t:topicRef href="#t6143" />
</t:role>
</t:association>
@@ -8576,7 +8634,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6140" />
+ <t:topicRef href="#t6138" />
</t:role>
<t:role>
<t:type>
@@ -8594,13 +8652,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6140" />
+ <t:topicRef href="#t6138" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
</t:association>
@@ -8612,19 +8670,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6135" />
+ <t:topicRef href="#t6133" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
</t:association>
@@ -8636,13 +8694,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
</t:association>
@@ -8654,13 +8712,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6120" />
+ <t:topicRef href="#t6118" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
</t:association>
@@ -8672,13 +8730,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6120" />
+ <t:topicRef href="#t6118" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t6125" />
+ <t:topicRef href="#t6123" />
</t:role>
</t:association>
@@ -8690,19 +8748,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6115" />
+ <t:topicRef href="#t6113" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
</t:association>
@@ -8714,13 +8772,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
</t:association>
@@ -8732,7 +8790,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6105" />
+ <t:topicRef href="#t6103" />
</t:role>
<t:role>
<t:type>
@@ -8750,13 +8808,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6105" />
+ <t:topicRef href="#t6103" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
</t:association>
@@ -8768,19 +8826,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6100" />
+ <t:topicRef href="#t6098" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
</t:association>
@@ -8792,13 +8850,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
</t:association>
@@ -8810,13 +8868,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6085" />
+ <t:topicRef href="#t6083" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
</t:role>
</t:association>
@@ -8828,13 +8886,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6085" />
+ <t:topicRef href="#t6083" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t6090" />
+ <t:topicRef href="#t6088" />
</t:role>
</t:association>
@@ -8846,19 +8904,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6080" />
+ <t:topicRef href="#t6078" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
</t:role>
</t:association>
@@ -8870,13 +8928,31 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
+ </t:role>
+ </t:association>
+
+ <t:association>
+ <t:type>
+ <t:topicRef href="#t2786" />
+ </t:type>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t2661" />
+ </t:type>
+ <t:topicRef href="#t6068" />
+ </t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t2651" />
+ </t:type>
+ <t:topicRef href="#t421" />
</t:role>
</t:association>
@@ -8888,13 +8964,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6070" />
+ <t:topicRef href="#t6068" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2651" />
</t:type>
- <t:topicRef href="#t2941" />
+ <t:topicRef href="#t2951" />
</t:role>
</t:association>
@@ -8906,13 +8982,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6070" />
+ <t:topicRef href="#t6068" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6060" />
+ <t:topicRef href="#t6058" />
</t:role>
</t:association>
@@ -8924,19 +9000,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6065" />
+ <t:topicRef href="#t6063" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6060" />
+ <t:topicRef href="#t6058" />
</t:role>
</t:association>
@@ -8948,13 +9024,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6060" />
+ <t:topicRef href="#t6058" />
</t:role>
</t:association>
@@ -8966,7 +9042,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
@@ -8984,7 +9060,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
@@ -9002,7 +9078,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
@@ -9020,7 +9096,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
@@ -9038,19 +9114,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6055" />
+ <t:topicRef href="#t6053" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
</t:association>
@@ -9062,13 +9138,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
</t:association>
@@ -9080,13 +9156,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6040" />
+ <t:topicRef href="#t6038" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
</t:association>
@@ -9098,13 +9174,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6040" />
+ <t:topicRef href="#t6038" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t6045" />
+ <t:topicRef href="#t6043" />
</t:role>
</t:association>
@@ -9116,19 +9192,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6035" />
+ <t:topicRef href="#t6033" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
</t:association>
@@ -9140,13 +9216,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
</t:association>
@@ -9158,13 +9234,13 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2646" />
</t:type>
- <t:topicRef href="#t6025" />
+ <t:topicRef href="#t6023" />
</t:role>
</t:association>
@@ -9176,7 +9252,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6025" />
+ <t:topicRef href="#t6023" />
</t:role>
<t:role>
<t:type>
@@ -9194,13 +9270,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2891" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
</t:association>
@@ -9212,13 +9288,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2881" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:role>
</t:association>
@@ -9230,13 +9306,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2761" />
+ <t:topicRef href="#t2766" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t6009" />
+ <t:topicRef href="#t6008" />
</t:role>
</t:association>
@@ -9248,13 +9324,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2751" />
+ <t:topicRef href="#t2756" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:role>
</t:association>
@@ -9266,13 +9342,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6150" />
+ <t:topicRef href="#t6148" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -9284,13 +9360,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6145" />
+ <t:topicRef href="#t6143" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:role>
</t:association>
@@ -9302,13 +9378,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6140" />
+ <t:topicRef href="#t6138" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -9320,13 +9396,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6135" />
+ <t:topicRef href="#t6133" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -9338,13 +9414,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -9356,13 +9432,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6125" />
+ <t:topicRef href="#t6123" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -9374,13 +9450,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6120" />
+ <t:topicRef href="#t6118" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -9392,13 +9468,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6115" />
+ <t:topicRef href="#t6113" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -9410,13 +9486,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -9428,13 +9504,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6105" />
+ <t:topicRef href="#t6103" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -9446,13 +9522,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6100" />
+ <t:topicRef href="#t6098" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -9464,13 +9540,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -9482,13 +9558,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6090" />
+ <t:topicRef href="#t6088" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -9500,13 +9576,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6085" />
+ <t:topicRef href="#t6083" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -9518,13 +9594,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6080" />
+ <t:topicRef href="#t6078" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -9536,13 +9612,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -9554,13 +9630,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6070" />
+ <t:topicRef href="#t6068" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -9572,13 +9648,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6065" />
+ <t:topicRef href="#t6063" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -9590,13 +9666,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6060" />
+ <t:topicRef href="#t6058" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -9608,13 +9684,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6055" />
+ <t:topicRef href="#t6053" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -9626,13 +9702,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6009" />
+ <t:topicRef href="#t6008" />
</t:role>
</t:association>
@@ -9644,13 +9720,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6045" />
+ <t:topicRef href="#t6043" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -9662,13 +9738,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6040" />
+ <t:topicRef href="#t6038" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -9680,13 +9756,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6035" />
+ <t:topicRef href="#t6033" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -9698,13 +9774,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -9716,13 +9792,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6025" />
+ <t:topicRef href="#t6023" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:role>
</t:association>
@@ -9734,13 +9810,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:role>
</t:association>
@@ -9752,19 +9828,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3041" />
+ <t:topicRef href="#t3051" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t3016" />
+ <t:topicRef href="#t3026" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t3036" />
+ <t:topicRef href="#t3046" />
</t:role>
</t:association>
@@ -9776,13 +9852,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t3036" />
+ <t:topicRef href="#t3046" />
</t:role>
</t:association>
@@ -9794,13 +9870,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t3026" />
+ <t:topicRef href="#t3036" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3031" />
+ <t:topicRef href="#t3041" />
</t:role>
</t:association>
@@ -9812,13 +9888,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t3026" />
+ <t:topicRef href="#t3036" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t3031" />
+ <t:topicRef href="#t3041" />
</t:role>
</t:association>
@@ -9830,19 +9906,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3021" />
+ <t:topicRef href="#t3031" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t3001" />
+ <t:topicRef href="#t3011" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t3016" />
+ <t:topicRef href="#t3026" />
</t:role>
</t:association>
@@ -9854,13 +9930,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t3016" />
+ <t:topicRef href="#t3026" />
</t:role>
</t:association>
@@ -9872,7 +9948,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t3011" />
+ <t:topicRef href="#t3021" />
</t:role>
<t:role>
<t:type>
@@ -9890,13 +9966,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t3011" />
+ <t:topicRef href="#t3021" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3001" />
+ <t:topicRef href="#t3011" />
</t:role>
</t:association>
@@ -9908,19 +9984,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3006" />
+ <t:topicRef href="#t3016" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2981" />
+ <t:topicRef href="#t2991" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t3001" />
+ <t:topicRef href="#t3011" />
</t:role>
</t:association>
@@ -9932,13 +10008,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t3001" />
+ <t:topicRef href="#t3011" />
</t:role>
</t:association>
@@ -9950,13 +10026,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2991" />
+ <t:topicRef href="#t3001" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2981" />
+ <t:topicRef href="#t2991" />
</t:role>
</t:association>
@@ -9968,13 +10044,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2991" />
+ <t:topicRef href="#t3001" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t2996" />
+ <t:topicRef href="#t3006" />
</t:role>
</t:association>
@@ -9986,19 +10062,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2986" />
+ <t:topicRef href="#t2996" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2966" />
+ <t:topicRef href="#t2976" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2981" />
+ <t:topicRef href="#t2991" />
</t:role>
</t:association>
@@ -10010,13 +10086,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2981" />
+ <t:topicRef href="#t2991" />
</t:role>
</t:association>
@@ -10028,7 +10104,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2976" />
+ <t:topicRef href="#t2986" />
</t:role>
<t:role>
<t:type>
@@ -10046,13 +10122,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2976" />
+ <t:topicRef href="#t2986" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2966" />
+ <t:topicRef href="#t2976" />
</t:role>
</t:association>
@@ -10064,19 +10140,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2971" />
+ <t:topicRef href="#t2981" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2946" />
+ <t:topicRef href="#t2956" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2966" />
+ <t:topicRef href="#t2976" />
</t:role>
</t:association>
@@ -10088,13 +10164,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2966" />
+ <t:topicRef href="#t2976" />
</t:role>
</t:association>
@@ -10106,13 +10182,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2956" />
+ <t:topicRef href="#t2966" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2946" />
+ <t:topicRef href="#t2956" />
</t:role>
</t:association>
@@ -10124,13 +10200,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2956" />
+ <t:topicRef href="#t2966" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t2961" />
+ <t:topicRef href="#t2971" />
</t:role>
</t:association>
@@ -10142,19 +10218,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2951" />
+ <t:topicRef href="#t2961" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2946" />
+ <t:topicRef href="#t2956" />
</t:role>
</t:association>
@@ -10166,31 +10242,31 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2946" />
+ <t:topicRef href="#t2956" />
</t:role>
</t:association>
<t:association>
<t:type>
- <t:topicRef href="#t2616" />
+ <t:topicRef href="#t2786" />
</t:type>
<t:role>
<t:type>
- <t:topicRef href="#t2656" />
+ <t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2941" />
+ <t:topicRef href="#t2946" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2651" />
</t:type>
- <t:topicRef href="#t486" />
+ <t:topicRef href="#t421" />
</t:role>
</t:association>
@@ -10202,7 +10278,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2941" />
+ <t:topicRef href="#t2951" />
</t:role>
<t:role>
<t:type>
@@ -10220,13 +10296,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2936" />
+ <t:topicRef href="#t2946" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2651" />
</t:type>
- <t:topicRef href="#t2941" />
+ <t:topicRef href="#t2951" />
</t:role>
</t:association>
@@ -10238,13 +10314,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2936" />
+ <t:topicRef href="#t2946" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2926" />
+ <t:topicRef href="#t2936" />
</t:role>
</t:association>
@@ -10256,19 +10332,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2931" />
+ <t:topicRef href="#t2941" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2926" />
+ <t:topicRef href="#t2936" />
</t:role>
</t:association>
@@ -10280,13 +10356,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2926" />
+ <t:topicRef href="#t2936" />
</t:role>
</t:association>
@@ -10298,7 +10374,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
@@ -10316,7 +10392,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
@@ -10334,7 +10410,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
@@ -10352,7 +10428,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
@@ -10370,19 +10446,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2901" />
+ <t:topicRef href="#t2911" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2906" />
+ <t:topicRef href="#t2916" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
</t:association>
@@ -10394,13 +10470,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
</t:association>
@@ -10412,13 +10488,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2916" />
+ <t:topicRef href="#t2926" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2906" />
+ <t:topicRef href="#t2916" />
</t:role>
</t:association>
@@ -10430,13 +10506,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2916" />
+ <t:topicRef href="#t2926" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t2921" />
+ <t:topicRef href="#t2931" />
</t:role>
</t:association>
@@ -10448,19 +10524,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2911" />
+ <t:topicRef href="#t2921" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2906" />
+ <t:topicRef href="#t2916" />
</t:role>
</t:association>
@@ -10472,13 +10548,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2906" />
+ <t:topicRef href="#t2916" />
</t:role>
</t:association>
@@ -10490,13 +10566,13 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2646" />
</t:type>
- <t:topicRef href="#t2891" />
+ <t:topicRef href="#t2901" />
</t:role>
</t:association>
@@ -10508,7 +10584,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2891" />
+ <t:topicRef href="#t2901" />
</t:role>
<t:role>
<t:type>
@@ -10526,13 +10602,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2891" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
</t:association>
@@ -10544,13 +10620,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2881" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2886" />
</t:role>
</t:association>
@@ -10562,13 +10638,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2866" />
+ <t:topicRef href="#t2876" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2881" />
</t:role>
</t:association>
@@ -10580,13 +10656,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2811" />
+ <t:topicRef href="#t2821" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2866" />
+ <t:topicRef href="#t2876" />
</t:role>
</t:association>
@@ -10604,7 +10680,7 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -10622,7 +10698,7 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -10634,13 +10710,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2811" />
+ <t:topicRef href="#t2821" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -10652,13 +10728,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2811" />
+ <t:topicRef href="#t2821" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2816" />
+ <t:topicRef href="#t2826" />
</t:role>
</t:association>
@@ -10676,7 +10752,7 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2811" />
+ <t:topicRef href="#t2821" />
</t:role>
</t:association>
@@ -10688,8 +10764,26 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
+ <t:topicRef href="#t2816" />
+ </t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t346" />
+ </t:type>
<t:topicRef href="#t2806" />
</t:role>
+ </t:association>
+
+ <t:association>
+ <t:type>
+ <t:topicRef href="#t351" />
+ </t:type>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t341" />
+ </t:type>
+ <t:topicRef href="#t2816" />
+ </t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
@@ -10706,13 +10800,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2791" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2786" />
+ <t:topicRef href="#t2781" />
</t:role>
</t:association>
@@ -10748,7 +10842,7 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2771" />
+ <t:topicRef href="#t2691" />
</t:role>
</t:association>
@@ -10760,13 +10854,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2771" />
+ <t:topicRef href="#t2766" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2691" />
+ <t:topicRef href="#t2771" />
</t:role>
</t:association>
@@ -10778,7 +10872,7 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2761" />
+ <t:topicRef href="#t2741" />
</t:role>
<t:role>
<t:type>
@@ -10796,7 +10890,7 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2736" />
+ <t:topicRef href="#t2756" />
</t:role>
<t:role>
<t:type>
@@ -10832,7 +10926,7 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2746" />
+ <t:topicRef href="#t2741" />
</t:role>
<t:role>
<t:type>
@@ -10850,13 +10944,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2736" />
+ <t:topicRef href="#t2701" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2746" />
+ <t:topicRef href="#t2741" />
</t:role>
</t:association>
@@ -10868,13 +10962,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2701" />
+ <t:topicRef href="#t2691" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2736" />
+ <t:topicRef href="#t2701" />
</t:role>
</t:association>
@@ -10892,25 +10986,43 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2701" />
+ <t:topicRef href="#t2696" />
</t:role>
</t:association>
<t:association>
<t:type>
- <t:topicRef href="#t351" />
+ <t:topicRef href="#t99" />
</t:type>
<t:role>
<t:type>
- <t:topicRef href="#t341" />
+ <t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2691" />
+ <t:topicRef href="#t3051" />
</t:role>
<t:role>
<t:type>
- <t:topicRef href="#t346" />
+ <t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2696" />
+ <t:topicRef href="#t2846" />
+ </t:role>
+ </t:association>
+
+ <t:association>
+ <t:type>
+ <t:topicRef href="#t99" />
+ </t:type>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t215" />
+ </t:type>
+ <t:topicRef href="#t3046" />
+ </t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t207" />
+ </t:type>
+ <t:topicRef href="#t2886" />
</t:role>
</t:association>
@@ -10928,7 +11040,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -10946,7 +11058,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -10964,7 +11076,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -10982,7 +11094,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2881" />
</t:role>
</t:association>
@@ -11000,7 +11112,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -11018,7 +11130,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -11036,7 +11148,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -11054,7 +11166,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -11072,7 +11184,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -11090,7 +11202,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -11108,7 +11220,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -11126,7 +11238,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -11144,7 +11256,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -11162,7 +11274,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -11180,7 +11292,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -11198,7 +11310,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -11216,7 +11328,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -11234,7 +11346,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -11252,7 +11364,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2696" />
</t:role>
</t:association>
@@ -11270,7 +11382,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -11288,7 +11400,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2696" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -11306,7 +11418,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2826" />
</t:role>
</t:association>
@@ -11324,7 +11436,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -11342,7 +11454,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2816" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -11360,7 +11472,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -11378,7 +11490,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -11396,7 +11508,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -11414,7 +11526,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2771" />
</t:role>
</t:association>
@@ -11432,7 +11544,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2791" />
</t:role>
</t:association>
@@ -11450,7 +11562,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2766" />
+ <t:topicRef href="#t2761" />
</t:role>
</t:association>
@@ -11468,7 +11580,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2681" />
</t:role>
</t:association>
@@ -11480,13 +11592,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2866" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2756" />
+ <t:topicRef href="#t246" />
</t:role>
</t:association>
@@ -11498,19 +11610,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2861" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2681" />
- </t:role>
- <t:role>
- <t:type>
- <t:topicRef href="#t215" />
- </t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t246" />
</t:role>
</t:association>
@@ -11558,7 +11664,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2841" />
</t:role>
<t:role>
<t:type>
@@ -11576,7 +11682,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2836" />
</t:role>
<t:role>
<t:type>
@@ -11594,7 +11700,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2811" />
</t:role>
<t:role>
<t:type>
@@ -11612,7 +11718,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2801" />
</t:role>
<t:role>
<t:type>
@@ -11630,7 +11736,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2801" />
+ <t:topicRef href="#t2786" />
</t:role>
<t:role>
<t:type>
@@ -11648,13 +11754,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2746" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t246" />
+ <t:topicRef href="#t241" />
</t:role>
</t:association>
@@ -11666,13 +11772,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2736" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t241" />
+ <t:topicRef href="#t246" />
</t:role>
</t:association>
@@ -12142,6 +12248,12 @@
</t:type>
<t:topicRef href="#t516" />
</t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t321" />
+ </t:type>
+ <t:topicRef href="#t401" />
+ </t:role>
</t:association>
<t:association>
@@ -12178,6 +12290,12 @@
</t:type>
<t:topicRef href="#t511" />
</t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t321" />
+ </t:type>
+ <t:topicRef href="#t401" />
+ </t:role>
</t:association>
<t:association>
@@ -12286,6 +12404,12 @@
</t:type>
<t:topicRef href="#t501" />
</t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t321" />
+ </t:type>
+ <t:topicRef href="#t391" />
+ </t:role>
</t:association>
<t:association>
@@ -13726,6 +13850,12 @@
</t:type>
<t:topicRef href="#t236" />
</t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t215" />
+ </t:type>
+ <t:topicRef href="#t291" />
+ </t:role>
</t:association>
<t:association>
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 Aug 25 04:07:48 2011 (r782)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.jtm Thu Aug 25 04:55:40 2011 (r783)
@@ -172,6 +172,14 @@
"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
}
]
},
@@ -325,7 +333,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"320px",
+ "value":"322px",
"scope":null,
"reifier":null
},
@@ -506,6 +514,14 @@
"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
}
]
},
@@ -659,7 +675,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"320px",
+ "value":"322px",
"scope":null,
"reifier":null
},
@@ -858,6 +874,14 @@
"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
}
]
},
@@ -1064,6 +1088,14 @@
"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
}
]
},
@@ -1157,7 +1189,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"100px",
+ "value":"1000px",
"scope":null,
"reifier":null
},
@@ -1254,6 +1286,14 @@
"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
}
]
},
@@ -1475,7 +1515,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"360px",
+ "value":"362px",
"scope":null,
"reifier":null
},
@@ -1795,6 +1835,14 @@
"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
}
]
},
@@ -2001,6 +2049,14 @@
"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
}
]
},
@@ -2198,7 +2254,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"230px",
+ "value":"232px",
"scope":null,
"reifier":null
}
@@ -2422,7 +2478,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"360px",
+ "value":"362px",
"scope":null,
"reifier":null
},
@@ -2651,6 +2707,16 @@
"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,
@@ -2783,6 +2849,16 @@
"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,
@@ -2793,7 +2869,8 @@
"occurrences":null
},
{
- "subject_identifiers":["[pref_2:Visible-Object]"
+ "subject_identifiers":["[pref_2:Visible-Object]",
+ "[pref_2:Visible-Object]"
],
"subject_locators":null,
"item_identifiers":null,
@@ -2921,7 +2998,8 @@
"occurrences":null
},
{
- "subject_identifiers":["[pref_3:container]"
+ "subject_identifiers":["[pref_3:container]",
+ "[pref_3:container]"
],
"subject_locators":null,
"item_identifiers":null,
@@ -4810,6 +4888,25 @@
},
{
"item_identifiers":null,
+ "type":"si:[pref_3:display-by]",
+ "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_4:environment-name-constraint]"
+ }
+ ]
+ },
+ {
+ "item_identifiers":null,
"type":"si:[pref_3:tm-binding]",
"reifier":null,
"scope":null,
@@ -5660,6 +5757,25 @@
}
]
},
+ {
+ "item_identifiers":null,
+ "type":"si:[pref_3:display-by]",
+ "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_4:environment-name-constraint]"
+ }
+ ]
+ },
{
"item_identifiers":null,
"type":"si:[pref_3:tm-binding]",
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 Aug 25 04:07:48 2011 (r782)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema.xtm Thu Aug 25 04:55:40 2011 (r783)
@@ -674,6 +674,7 @@
<t:topic id="t2636">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/container" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/container" />
<t:instanceOf>
<t:topicRef href="#t251" />
</t:instanceOf>
@@ -762,6 +763,7 @@
<t:topic id="t2701">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Visible-Object" />
</t:topic>
<t:topic id="t2706">
@@ -772,184 +774,198 @@
</t:topic>
<t:topic id="t2711">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/height" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/padding-left" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2716">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/pointer" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/height" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2721">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/border-style" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/pointer" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2726">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/background-color" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/border-style" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2731">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/id" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/background-color" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
<t:topic id="t2736">
- <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/View" />
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/id" />
+ <t:instanceOf>
+ <t:topicRef href="#t246" />
+ </t:instanceOf>
</t:topic>
<t:topic id="t2741">
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/types/View" />
+ </t:topic>
+
+ <t:topic id="t2746">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/view-name" />
<t:instanceOf>
<t:topicRef href="#t241" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2746">
+ <t:topic id="t2751">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Topic-View" />
</t:topic>
- <t:topic id="t2751">
+ <t:topic id="t2756">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Topic-View" />
</t:topic>
- <t:topic id="t2756">
+ <t:topic id="t2761">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Creator-Topic-View" />
</t:topic>
- <t:topic id="t2761">
+ <t:topic id="t2766">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Association-View" />
</t:topic>
- <t:topic id="t2766">
+ <t:topic id="t2771">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Creator-Association-View" />
</t:topic>
- <t:topic id="t2771">
+ <t:topic id="t2776">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value" />
</t:topic>
- <t:topic id="t2776">
+ <t:topic id="t2781">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Value" />
</t:topic>
- <t:topic id="t2781">
+ <t:topic id="t2786">
+ <t:subjectIdentifier href="http://psi.isidor.us/gdl/display-by" />
+ <t:instanceOf>
+ <t:topicRef href="#t246" />
+ </t:instanceOf>
+ </t:topic>
+
+ <t:topic id="t2791">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/TM-Single-Type-Value" />
</t:topic>
- <t:topic id="t2786">
+ <t:topic id="t2796">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Literal-Value" />
</t:topic>
- <t:topic id="t2791">
+ <t:topic id="t2801">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/literal-value" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2796">
+ <t:topic id="t2806">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Value" />
</t:topic>
- <t:topic id="t2801">
+ <t:topic id="t2811">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/fixed" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2806">
+ <t:topic id="t2816">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Literal-Value" />
</t:topic>
- <t:topic id="t2811">
+ <t:topic id="t2821">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text-Object" />
</t:topic>
- <t:topic id="t2816">
+ <t:topic id="t2826">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/List-Box" />
</t:topic>
- <t:topic id="t2821">
+ <t:topic id="t2831">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Text" />
</t:topic>
- <t:topic id="t2826">
+ <t:topic id="t2836">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/readonly" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2831">
+ <t:topic id="t2841">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/font-size" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2836">
+ <t:topic id="t2846">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Position" />
</t:topic>
- <t:topic id="t2841">
+ <t:topic id="t2851">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/position-style" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2846">
+ <t:topic id="t2856">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/top" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2851">
+ <t:topic id="t2861">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/left" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2856">
+ <t:topic id="t2866">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/right" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2861">
+ <t:topic id="t2871">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Value-Group" />
</t:topic>
- <t:topic id="t2866">
+ <t:topic id="t2876">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Button" />
</t:topic>
- <t:topic id="t2871">
+ <t:topic id="t2881">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Action-Button" />
</t:topic>
- <t:topic id="t2876">
+ <t:topic id="t2886">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Commit-Button" />
</t:topic>
- <t:topic id="t2881">
+ <t:topic id="t2891">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/textgrid-ui-schema" />
<t:instanceOf>
<t:topicRef href="#t2681" />
@@ -962,20 +978,20 @@
</t:name>
</t:topic>
- <t:topic id="t2886">
+ <t:topic id="t2896">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-creator-topic-v…" />
<t:instanceOf>
- <t:topicRef href="#t2756" />
+ <t:topicRef href="#t2761" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_default_creator_topic_view_id</t:resourceData>
</t:occurrence>
@@ -983,43 +999,43 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">360px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">362px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">160px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2891">
+ <t:topic id="t2901">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-view-binding" />
<t:instanceOf>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2896">
+ <t:topic id="t2906">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-creator-association…" />
<t:instanceOf>
- <t:topicRef href="#t2766" />
+ <t:topicRef href="#t2771" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>A Creator View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">has_environment_createor_association_view_id</t:resourceData>
</t:occurrence>
@@ -1031,45 +1047,45 @@
</t:occurrence>
</t:topic>
- <t:topic id="t2901">
+ <t:topic id="t2911">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environement-creato…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2906">
+ <t:topic id="t2916">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_env_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1081,77 +1097,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2911">
+ <t:topic id="t2921">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2916">
+ <t:topic id="t2926">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2921">
+ <t:topic id="t2931">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-env-…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2926">
+ <t:topic id="t2936">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-e…" />
<t:instanceOf>
- <t:topicRef href="#t2816" />
+ <t:topicRef href="#t2826" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_list_box_env_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1159,63 +1175,63 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">230px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">232px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2931">
+ <t:topic id="t2941">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-e…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">0px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">0px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2936">
+ <t:topic id="t2946">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-list-box-e…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2941">
+ <t:topic id="t2951">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-environ…" />
<t:instanceOf>
<t:topicRef href="#t2696" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2946">
+ <t:topic id="t2956">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_key_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1227,77 +1243,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2951">
+ <t:topic id="t2961">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2956">
+ <t:topic id="t2966">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2961">
+ <t:topic id="t2971">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-key-…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">key:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2966">
+ <t:topic id="t2976">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_key_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">false</t:resourceData>
</t:occurrence>
@@ -1309,64 +1325,70 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2716" />
+ <t:topicRef href="#t2721" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t2971">
+ <t:topic id="t2981">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-positi…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2976">
+ <t:topic id="t2986">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-key-value-…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2981">
+ <t:topic id="t2991">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-value" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_value_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1378,77 +1400,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2986">
+ <t:topic id="t2996">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t2991">
+ <t:topic id="t3001">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t2996">
+ <t:topic id="t3006">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-label-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">value:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3001">
+ <t:topic id="t3011">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_value_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">false</t:resourceData>
</t:occurrence>
@@ -1460,64 +1482,70 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2716" />
+ <t:topicRef href="#t2721" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t3006">
+ <t:topic id="t3016">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-posi…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3011">
+ <t:topic id="t3021">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-text-value-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t3016">
+ <t:topic id="t3026">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button" />
<t:instanceOf>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2881" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_reset_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -1529,71 +1557,71 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3021">
+ <t:topic id="t3031">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-po…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">115px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3026">
+ <t:topic id="t3036">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-va…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t3031">
+ <t:topic id="t3041">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-reset-button-va…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">reset</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3036">
+ <t:topic id="t3046">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button" />
<t:instanceOf>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2886" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_commit_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -1605,63 +1633,63 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t3041">
+ <t:topic id="t3051">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-creator-commit-button-p…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">115px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2856" />
+ <t:topicRef href="#t2866" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6004">
+ <t:topic id="t6003">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Default-Editor-Topic-View" />
</t:topic>
- <t:topic id="t6009">
+ <t:topic id="t6008">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Editor-Association-View" />
</t:topic>
- <t:topic id="t6015">
+ <t:topic id="t6013">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/types/Delete-Button" />
</t:topic>
- <t:topic id="t6020">
+ <t:topic id="t6018">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-default-editor-topic-vi…" />
<t:instanceOf>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Hash-Object</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_default_editor_topic_view_id</t:resourceData>
</t:occurrence>
@@ -1669,43 +1697,43 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">360px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">362px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">160px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6025">
+ <t:topic id="t6023">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-view-binding" />
<t:instanceOf>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6030">
+ <t:topic id="t6028">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_env_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1717,77 +1745,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6035">
+ <t:topic id="t6033">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-p…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6040">
+ <t:topic id="t6038">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-v…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6045">
+ <t:topic id="t6043">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-env-v…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6050">
+ <t:topic id="t6048">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/has-environment-editor-association-…" />
<t:instanceOf>
- <t:topicRef href="#t6009" />
+ <t:topicRef href="#t6008" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>A Editor View for associations of the type http://textgrid.org/serviceregistry/model/has-environment</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">has_environment_editor_association_view_id</t:resourceData>
</t:occurrence>
@@ -1799,45 +1827,45 @@
</t:occurrence>
</t:topic>
- <t:topic id="t6055">
+ <t:topic id="t6053">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-has-environment-editor-…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6060">
+ <t:topic id="t6058">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_env_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1847,54 +1875,60 @@
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">230px</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t6065">
+ <t:topic id="t6063">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-position" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">0px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">0px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6070">
+ <t:topic id="t6068">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-env-value-g…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6075">
+ <t:topic id="t6073">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_key_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1902,81 +1936,81 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">100px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6080">
+ <t:topic id="t6078">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-p…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">100px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6085">
+ <t:topic id="t6083">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-v…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6090">
+ <t:topic id="t6088">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-key-v…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">key:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6095">
+ <t:topic id="t6093">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_key_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -1988,64 +2022,70 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2716" />
+ <t:topicRef href="#t2721" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t6100">
+ <t:topic id="t6098">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-position" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">40px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6105">
+ <t:topic id="t6103">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-key-value-g…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6110">
+ <t:topic id="t6108">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_label_value_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2057,77 +2097,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6115">
+ <t:topic id="t6113">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6120">
+ <t:topic id="t6118">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6125">
+ <t:topic id="t6123">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-label-value…" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">value:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6130">
+ <t:topic id="t6128">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_text_value_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2139,64 +2179,70 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2716" />
+ <t:topicRef href="#t2721" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t6135">
+ <t:topic id="t6133">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-posit…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">120px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6140">
+ <t:topic id="t6138">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-text-value-value…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t6145">
+ <t:topic id="t6143">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button" />
<t:instanceOf>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">hash_object_delete_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -2208,58 +2254,58 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t6150">
+ <t:topic id="t6148">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/hash-object-editor-delete-button-po…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">115px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7801">
+ <t:topic id="t7803">
<t:subjectIdentifier href="http://psi.isidor.us/gdl/cursor" />
<t:instanceOf>
<t:topicRef href="#t246" />
</t:instanceOf>
</t:topic>
- <t:topic id="t7807">
+ <t:topic id="t7808">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-creator-topic-v…" />
<t:instanceOf>
- <t:topicRef href="#t2756" />
+ <t:topicRef href="#t2761" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>GDL Default Creator Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_default_creator_topic_view_id</t:resourceData>
</t:occurrence>
@@ -2267,43 +2313,43 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">320px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">322px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">100px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7812">
+ <t:topic id="t7813">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-view-binding" />
<t:instanceOf>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:instanceOf>
</t:topic>
- <t:topic id="t7817">
+ <t:topic id="t7818">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_text_label_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2315,77 +2361,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7822">
+ <t:topic id="t7823">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-posi…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7827">
+ <t:topic id="t7828">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-valu…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t7832">
+ <t:topic id="t7833">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-text-label-value" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">name:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7837">
+ <t:topic id="t7838">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_name_text_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">false</t:resourceData>
</t:occurrence>
@@ -2397,58 +2443,64 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t7801" />
+ <t:topicRef href="#t7803" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t2711" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
+ </t:occurrence>
</t:topic>
- <t:topic id="t7842">
+ <t:topic id="t7843">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-posit…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7847">
+ <t:topic id="t7848">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-name-text-value…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t7852">
+ <t:topic id="t7853">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button" />
<t:instanceOf>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2886" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_commit_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -2460,51 +2512,51 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t7857">
+ <t:topic id="t7858">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-creator-commit-button-p…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">65px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2856" />
+ <t:topicRef href="#t2866" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8602">
+ <t:topic id="t8604">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-default-editor-topic-vi…" />
<t:instanceOf>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:instanceOf>
<t:name>
<t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2746" />
</t:type>
<t:value>GDL Default Editor Topic View for instances of http://textgrid.org/serviceregistry/model/Environment</t:value>
</t:name>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_default_editor_topic_view_id</t:resourceData>
</t:occurrence>
@@ -2512,43 +2564,43 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">320px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">322px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">100px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8607">
+ <t:topic id="t8609">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-view-binding" />
<t:instanceOf>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:instanceOf>
</t:topic>
- <t:topic id="t8612">
+ <t:topic id="t8614">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_text_label_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2560,77 +2612,77 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2726" />
+ <t:topicRef href="#t2731" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">gray</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2721" />
+ <t:topicRef href="#t2726" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">none</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8617">
+ <t:topic id="t8619">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-posit…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8622">
+ <t:topic id="t8624">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t8627">
+ <t:topic id="t8629">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-text-label-value" />
<t:instanceOf>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2801" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">name:</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8632">
+ <t:topic id="t8634">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text" />
<t:instanceOf>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_name_text_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2836" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">true</t:resourceData>
</t:occurrence>
@@ -2638,62 +2690,68 @@
<t:type>
<t:topicRef href="#t2706" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">240px</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">240px</t:resourceData>
+ </t:occurrence>
+ <t:occurrence>
+ <t:type>
+ <t:topicRef href="#t7803" />
+ </t:type>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t7801" />
+ <t:topicRef href="#t2711" />
</t:type>
- <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">text</t:resourceData>
+ <t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">2px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8637">
+ <t:topic id="t8639">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-positi…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">70px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8642">
+ <t:topic id="t8644">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-name-text-value-…" />
<t:instanceOf>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:instanceOf>
</t:topic>
- <t:topic id="t8647">
+ <t:topic id="t8649">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button" />
<t:instanceOf>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2731" />
+ <t:topicRef href="#t2736" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">environment_delete_button_id</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2711" />
+ <t:topicRef href="#t2716" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">30px</t:resourceData>
</t:occurrence>
@@ -2705,32 +2763,32 @@
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2841" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">12px</t:resourceData>
</t:occurrence>
</t:topic>
- <t:topic id="t8652">
+ <t:topic id="t8654">
<t:subjectIdentifier href="http://textgrid.org/serviceregistry/gdl/environment-editor-delete-button-po…" />
<t:instanceOf>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:instanceOf>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2851" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">absolute</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2856" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">65px</t:resourceData>
</t:occurrence>
<t:occurrence>
<t:type>
- <t:topicRef href="#t2851" />
+ <t:topicRef href="#t2861" />
</t:type>
<t:resourceData datatype="http://www.w3.org/2001/XMLSchema#string">10px</t:resourceData>
</t:occurrence>
@@ -2744,19 +2802,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8652" />
+ <t:topicRef href="#t8654" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t8647" />
+ <t:topicRef href="#t8649" />
</t:role>
</t:association>
@@ -2768,13 +2826,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t8647" />
+ <t:topicRef href="#t8649" />
</t:role>
</t:association>
@@ -2786,7 +2844,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t8642" />
+ <t:topicRef href="#t8644" />
</t:role>
<t:role>
<t:type>
@@ -2804,13 +2862,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t8642" />
+ <t:topicRef href="#t8644" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
</t:association>
@@ -2822,19 +2880,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8637" />
+ <t:topicRef href="#t8639" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
</t:association>
@@ -2846,13 +2904,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
</t:association>
@@ -2864,13 +2922,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t8622" />
+ <t:topicRef href="#t8624" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
</t:association>
@@ -2882,13 +2940,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t8622" />
+ <t:topicRef href="#t8624" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t8627" />
+ <t:topicRef href="#t8629" />
</t:role>
</t:association>
@@ -2900,19 +2958,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8617" />
+ <t:topicRef href="#t8619" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
</t:association>
@@ -2924,13 +2982,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
</t:association>
@@ -2942,13 +3000,13 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2646" />
</t:type>
- <t:topicRef href="#t8607" />
+ <t:topicRef href="#t8609" />
</t:role>
</t:association>
@@ -2960,7 +3018,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t8607" />
+ <t:topicRef href="#t8609" />
</t:role>
<t:role>
<t:type>
@@ -2978,13 +3036,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2891" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
</t:association>
@@ -2996,13 +3054,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8652" />
+ <t:topicRef href="#t8654" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -3014,13 +3072,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8647" />
+ <t:topicRef href="#t8649" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:role>
</t:association>
@@ -3032,13 +3090,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8642" />
+ <t:topicRef href="#t8644" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -3050,13 +3108,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8637" />
+ <t:topicRef href="#t8639" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -3068,13 +3126,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8632" />
+ <t:topicRef href="#t8634" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -3086,13 +3144,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8627" />
+ <t:topicRef href="#t8629" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -3104,13 +3162,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8622" />
+ <t:topicRef href="#t8624" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -3122,13 +3180,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8617" />
+ <t:topicRef href="#t8619" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -3140,13 +3198,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8612" />
+ <t:topicRef href="#t8614" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -3158,13 +3216,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8607" />
+ <t:topicRef href="#t8609" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:role>
</t:association>
@@ -3176,13 +3234,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t8602" />
+ <t:topicRef href="#t8604" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:role>
</t:association>
@@ -3194,19 +3252,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7857" />
+ <t:topicRef href="#t7858" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t7852" />
+ <t:topicRef href="#t7853" />
</t:role>
</t:association>
@@ -3218,13 +3276,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t7852" />
+ <t:topicRef href="#t7853" />
</t:role>
</t:association>
@@ -3236,7 +3294,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t7847" />
+ <t:topicRef href="#t7848" />
</t:role>
<t:role>
<t:type>
@@ -3254,13 +3312,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t7847" />
+ <t:topicRef href="#t7848" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
</t:association>
@@ -3272,19 +3330,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7842" />
+ <t:topicRef href="#t7843" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
</t:association>
@@ -3296,13 +3354,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
</t:association>
@@ -3314,13 +3372,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t7827" />
+ <t:topicRef href="#t7828" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
</t:association>
@@ -3332,13 +3390,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t7827" />
+ <t:topicRef href="#t7828" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t7832" />
+ <t:topicRef href="#t7833" />
</t:role>
</t:association>
@@ -3350,19 +3408,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7822" />
+ <t:topicRef href="#t7823" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
</t:association>
@@ -3374,13 +3432,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
</t:association>
@@ -3392,13 +3450,13 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2646" />
</t:type>
- <t:topicRef href="#t7812" />
+ <t:topicRef href="#t7813" />
</t:role>
</t:association>
@@ -3410,7 +3468,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t7812" />
+ <t:topicRef href="#t7813" />
</t:role>
<t:role>
<t:type>
@@ -3428,13 +3486,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2891" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
</t:association>
@@ -3446,13 +3504,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2796" />
+ <t:topicRef href="#t2806" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2771" />
+ <t:topicRef href="#t2776" />
</t:role>
</t:association>
@@ -3464,13 +3522,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2786" />
+ <t:topicRef href="#t2796" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2771" />
+ <t:topicRef href="#t2776" />
</t:role>
</t:association>
@@ -3482,13 +3540,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7857" />
+ <t:topicRef href="#t7858" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -3500,13 +3558,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7852" />
+ <t:topicRef href="#t7853" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2886" />
</t:role>
</t:association>
@@ -3518,13 +3576,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7847" />
+ <t:topicRef href="#t7848" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -3536,13 +3594,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7842" />
+ <t:topicRef href="#t7843" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -3554,13 +3612,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7837" />
+ <t:topicRef href="#t7838" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -3572,13 +3630,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7832" />
+ <t:topicRef href="#t7833" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -3590,13 +3648,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7827" />
+ <t:topicRef href="#t7828" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -3608,13 +3666,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7822" />
+ <t:topicRef href="#t7823" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -3626,13 +3684,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7817" />
+ <t:topicRef href="#t7818" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -3644,13 +3702,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7812" />
+ <t:topicRef href="#t7813" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:role>
</t:association>
@@ -3662,13 +3720,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7807" />
+ <t:topicRef href="#t7808" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2756" />
+ <t:topicRef href="#t2761" />
</t:role>
</t:association>
@@ -3680,7 +3738,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t7801" />
+ <t:topicRef href="#t7803" />
</t:role>
<t:role>
<t:type>
@@ -3698,19 +3756,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6150" />
+ <t:topicRef href="#t6148" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6145" />
+ <t:topicRef href="#t6143" />
</t:role>
</t:association>
@@ -3722,13 +3780,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6145" />
+ <t:topicRef href="#t6143" />
</t:role>
</t:association>
@@ -3740,7 +3798,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6140" />
+ <t:topicRef href="#t6138" />
</t:role>
<t:role>
<t:type>
@@ -3758,13 +3816,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6140" />
+ <t:topicRef href="#t6138" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
</t:association>
@@ -3776,19 +3834,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6135" />
+ <t:topicRef href="#t6133" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
</t:association>
@@ -3800,13 +3858,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
</t:association>
@@ -3818,13 +3876,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6120" />
+ <t:topicRef href="#t6118" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
</t:association>
@@ -3836,13 +3894,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6120" />
+ <t:topicRef href="#t6118" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t6125" />
+ <t:topicRef href="#t6123" />
</t:role>
</t:association>
@@ -3854,19 +3912,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6115" />
+ <t:topicRef href="#t6113" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
</t:association>
@@ -3878,13 +3936,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
</t:association>
@@ -3896,7 +3954,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6105" />
+ <t:topicRef href="#t6103" />
</t:role>
<t:role>
<t:type>
@@ -3914,13 +3972,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6105" />
+ <t:topicRef href="#t6103" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
</t:association>
@@ -3932,19 +3990,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6100" />
+ <t:topicRef href="#t6098" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
</t:association>
@@ -3956,13 +4014,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
</t:association>
@@ -3974,13 +4032,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6085" />
+ <t:topicRef href="#t6083" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
</t:role>
</t:association>
@@ -3992,13 +4050,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6085" />
+ <t:topicRef href="#t6083" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t6090" />
+ <t:topicRef href="#t6088" />
</t:role>
</t:association>
@@ -4010,19 +4068,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6080" />
+ <t:topicRef href="#t6078" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
</t:role>
</t:association>
@@ -4034,13 +4092,31 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
+ </t:role>
+ </t:association>
+
+ <t:association>
+ <t:type>
+ <t:topicRef href="#t2786" />
+ </t:type>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t2661" />
+ </t:type>
+ <t:topicRef href="#t6068" />
+ </t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t2651" />
+ </t:type>
+ <t:topicRef href="#t421" />
</t:role>
</t:association>
@@ -4052,13 +4128,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6070" />
+ <t:topicRef href="#t6068" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2651" />
</t:type>
- <t:topicRef href="#t2941" />
+ <t:topicRef href="#t2951" />
</t:role>
</t:association>
@@ -4070,13 +4146,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6070" />
+ <t:topicRef href="#t6068" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6060" />
+ <t:topicRef href="#t6058" />
</t:role>
</t:association>
@@ -4088,19 +4164,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6065" />
+ <t:topicRef href="#t6063" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6060" />
+ <t:topicRef href="#t6058" />
</t:role>
</t:association>
@@ -4112,13 +4188,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6060" />
+ <t:topicRef href="#t6058" />
</t:role>
</t:association>
@@ -4130,7 +4206,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
@@ -4148,7 +4224,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
@@ -4166,7 +4242,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
@@ -4184,7 +4260,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
@@ -4202,19 +4278,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6055" />
+ <t:topicRef href="#t6053" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
</t:association>
@@ -4226,13 +4302,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
</t:association>
@@ -4244,13 +4320,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6040" />
+ <t:topicRef href="#t6038" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
</t:association>
@@ -4262,13 +4338,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t6040" />
+ <t:topicRef href="#t6038" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t6045" />
+ <t:topicRef href="#t6043" />
</t:role>
</t:association>
@@ -4280,19 +4356,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6035" />
+ <t:topicRef href="#t6033" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
</t:association>
@@ -4304,13 +4380,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
</t:association>
@@ -4322,13 +4398,13 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2646" />
</t:type>
- <t:topicRef href="#t6025" />
+ <t:topicRef href="#t6023" />
</t:role>
</t:association>
@@ -4340,7 +4416,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t6025" />
+ <t:topicRef href="#t6023" />
</t:role>
<t:role>
<t:type>
@@ -4358,13 +4434,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2891" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
</t:association>
@@ -4376,13 +4452,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2881" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:role>
</t:association>
@@ -4394,13 +4470,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2761" />
+ <t:topicRef href="#t2766" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t6009" />
+ <t:topicRef href="#t6008" />
</t:role>
</t:association>
@@ -4412,13 +4488,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2751" />
+ <t:topicRef href="#t2756" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:role>
</t:association>
@@ -4430,13 +4506,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6150" />
+ <t:topicRef href="#t6148" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -4448,13 +4524,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6145" />
+ <t:topicRef href="#t6143" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6015" />
+ <t:topicRef href="#t6013" />
</t:role>
</t:association>
@@ -4466,13 +4542,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6140" />
+ <t:topicRef href="#t6138" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -4484,13 +4560,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6135" />
+ <t:topicRef href="#t6133" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -4502,13 +4578,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6130" />
+ <t:topicRef href="#t6128" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -4520,13 +4596,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6125" />
+ <t:topicRef href="#t6123" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -4538,13 +4614,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6120" />
+ <t:topicRef href="#t6118" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -4556,13 +4632,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6115" />
+ <t:topicRef href="#t6113" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -4574,13 +4650,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6110" />
+ <t:topicRef href="#t6108" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -4592,13 +4668,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6105" />
+ <t:topicRef href="#t6103" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -4610,13 +4686,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6100" />
+ <t:topicRef href="#t6098" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -4628,13 +4704,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6095" />
+ <t:topicRef href="#t6093" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -4646,13 +4722,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6090" />
+ <t:topicRef href="#t6088" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -4664,13 +4740,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6085" />
+ <t:topicRef href="#t6083" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -4682,13 +4758,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6080" />
+ <t:topicRef href="#t6078" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -4700,13 +4776,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6075" />
+ <t:topicRef href="#t6073" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -4718,13 +4794,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6070" />
+ <t:topicRef href="#t6068" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -4736,13 +4812,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6065" />
+ <t:topicRef href="#t6063" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -4754,13 +4830,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6060" />
+ <t:topicRef href="#t6058" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -4772,13 +4848,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6055" />
+ <t:topicRef href="#t6053" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -4790,13 +4866,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6050" />
+ <t:topicRef href="#t6048" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6009" />
+ <t:topicRef href="#t6008" />
</t:role>
</t:association>
@@ -4808,13 +4884,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6045" />
+ <t:topicRef href="#t6043" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -4826,13 +4902,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6040" />
+ <t:topicRef href="#t6038" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -4844,13 +4920,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6035" />
+ <t:topicRef href="#t6033" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -4862,13 +4938,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6030" />
+ <t:topicRef href="#t6028" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -4880,13 +4956,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6025" />
+ <t:topicRef href="#t6023" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2791" />
</t:role>
</t:association>
@@ -4898,13 +4974,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t6020" />
+ <t:topicRef href="#t6018" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t6004" />
+ <t:topicRef href="#t6003" />
</t:role>
</t:association>
@@ -4916,19 +4992,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3041" />
+ <t:topicRef href="#t3051" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t3016" />
+ <t:topicRef href="#t3026" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t3036" />
+ <t:topicRef href="#t3046" />
</t:role>
</t:association>
@@ -4940,13 +5016,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t3036" />
+ <t:topicRef href="#t3046" />
</t:role>
</t:association>
@@ -4958,13 +5034,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t3026" />
+ <t:topicRef href="#t3036" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3031" />
+ <t:topicRef href="#t3041" />
</t:role>
</t:association>
@@ -4976,13 +5052,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t3026" />
+ <t:topicRef href="#t3036" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t3031" />
+ <t:topicRef href="#t3041" />
</t:role>
</t:association>
@@ -4994,19 +5070,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3021" />
+ <t:topicRef href="#t3031" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t3001" />
+ <t:topicRef href="#t3011" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t3016" />
+ <t:topicRef href="#t3026" />
</t:role>
</t:association>
@@ -5018,13 +5094,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t3016" />
+ <t:topicRef href="#t3026" />
</t:role>
</t:association>
@@ -5036,7 +5112,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t3011" />
+ <t:topicRef href="#t3021" />
</t:role>
<t:role>
<t:type>
@@ -5054,13 +5130,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t3011" />
+ <t:topicRef href="#t3021" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3001" />
+ <t:topicRef href="#t3011" />
</t:role>
</t:association>
@@ -5072,19 +5148,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t3006" />
+ <t:topicRef href="#t3016" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2981" />
+ <t:topicRef href="#t2991" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t3001" />
+ <t:topicRef href="#t3011" />
</t:role>
</t:association>
@@ -5096,13 +5172,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t3001" />
+ <t:topicRef href="#t3011" />
</t:role>
</t:association>
@@ -5114,13 +5190,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2991" />
+ <t:topicRef href="#t3001" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2981" />
+ <t:topicRef href="#t2991" />
</t:role>
</t:association>
@@ -5132,13 +5208,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2991" />
+ <t:topicRef href="#t3001" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t2996" />
+ <t:topicRef href="#t3006" />
</t:role>
</t:association>
@@ -5150,19 +5226,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2986" />
+ <t:topicRef href="#t2996" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2966" />
+ <t:topicRef href="#t2976" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2981" />
+ <t:topicRef href="#t2991" />
</t:role>
</t:association>
@@ -5174,13 +5250,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2981" />
+ <t:topicRef href="#t2991" />
</t:role>
</t:association>
@@ -5192,7 +5268,7 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2976" />
+ <t:topicRef href="#t2986" />
</t:role>
<t:role>
<t:type>
@@ -5210,13 +5286,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2976" />
+ <t:topicRef href="#t2986" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2966" />
+ <t:topicRef href="#t2976" />
</t:role>
</t:association>
@@ -5228,19 +5304,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2971" />
+ <t:topicRef href="#t2981" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2946" />
+ <t:topicRef href="#t2956" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2966" />
+ <t:topicRef href="#t2976" />
</t:role>
</t:association>
@@ -5252,13 +5328,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2966" />
+ <t:topicRef href="#t2976" />
</t:role>
</t:association>
@@ -5270,13 +5346,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2956" />
+ <t:topicRef href="#t2966" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2946" />
+ <t:topicRef href="#t2956" />
</t:role>
</t:association>
@@ -5288,13 +5364,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2956" />
+ <t:topicRef href="#t2966" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t2961" />
+ <t:topicRef href="#t2971" />
</t:role>
</t:association>
@@ -5306,19 +5382,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2951" />
+ <t:topicRef href="#t2961" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2946" />
+ <t:topicRef href="#t2956" />
</t:role>
</t:association>
@@ -5330,31 +5406,31 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2946" />
+ <t:topicRef href="#t2956" />
</t:role>
</t:association>
<t:association>
<t:type>
- <t:topicRef href="#t2616" />
+ <t:topicRef href="#t2786" />
</t:type>
<t:role>
<t:type>
- <t:topicRef href="#t2656" />
+ <t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2941" />
+ <t:topicRef href="#t2946" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2651" />
</t:type>
- <t:topicRef href="#t486" />
+ <t:topicRef href="#t421" />
</t:role>
</t:association>
@@ -5366,7 +5442,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2941" />
+ <t:topicRef href="#t2951" />
</t:role>
<t:role>
<t:type>
@@ -5384,13 +5460,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2936" />
+ <t:topicRef href="#t2946" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2651" />
</t:type>
- <t:topicRef href="#t2941" />
+ <t:topicRef href="#t2951" />
</t:role>
</t:association>
@@ -5402,13 +5478,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2936" />
+ <t:topicRef href="#t2946" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2926" />
+ <t:topicRef href="#t2936" />
</t:role>
</t:association>
@@ -5420,19 +5496,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2931" />
+ <t:topicRef href="#t2941" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2926" />
+ <t:topicRef href="#t2936" />
</t:role>
</t:association>
@@ -5444,13 +5520,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2926" />
+ <t:topicRef href="#t2936" />
</t:role>
</t:association>
@@ -5462,7 +5538,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
@@ -5480,7 +5556,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
@@ -5498,7 +5574,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
@@ -5516,7 +5592,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
@@ -5534,19 +5610,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2901" />
+ <t:topicRef href="#t2911" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2906" />
+ <t:topicRef href="#t2916" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
</t:association>
@@ -5558,13 +5634,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2896" />
+ <t:topicRef href="#t2906" />
</t:role>
</t:association>
@@ -5576,13 +5652,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2916" />
+ <t:topicRef href="#t2926" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2906" />
+ <t:topicRef href="#t2916" />
</t:role>
</t:association>
@@ -5594,13 +5670,13 @@
<t:type>
<t:topicRef href="#t2661" />
</t:type>
- <t:topicRef href="#t2916" />
+ <t:topicRef href="#t2926" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2666" />
</t:type>
- <t:topicRef href="#t2921" />
+ <t:topicRef href="#t2931" />
</t:role>
</t:association>
@@ -5612,19 +5688,19 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2911" />
+ <t:topicRef href="#t2921" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2671" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2676" />
</t:type>
- <t:topicRef href="#t2906" />
+ <t:topicRef href="#t2916" />
</t:role>
</t:association>
@@ -5636,13 +5712,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2906" />
+ <t:topicRef href="#t2916" />
</t:role>
</t:association>
@@ -5654,13 +5730,13 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2646" />
</t:type>
- <t:topicRef href="#t2891" />
+ <t:topicRef href="#t2901" />
</t:role>
</t:association>
@@ -5672,7 +5748,7 @@
<t:type>
<t:topicRef href="#t2656" />
</t:type>
- <t:topicRef href="#t2891" />
+ <t:topicRef href="#t2901" />
</t:role>
<t:role>
<t:type>
@@ -5690,13 +5766,13 @@
<t:type>
<t:topicRef href="#t2636" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2891" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t2641" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2896" />
</t:role>
</t:association>
@@ -5708,13 +5784,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2881" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2886" />
</t:role>
</t:association>
@@ -5726,13 +5802,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2866" />
+ <t:topicRef href="#t2876" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2881" />
</t:role>
</t:association>
@@ -5744,13 +5820,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2811" />
+ <t:topicRef href="#t2821" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2866" />
+ <t:topicRef href="#t2876" />
</t:role>
</t:association>
@@ -5768,7 +5844,7 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -5786,7 +5862,7 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -5798,13 +5874,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2811" />
+ <t:topicRef href="#t2821" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -5816,13 +5892,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2811" />
+ <t:topicRef href="#t2821" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2816" />
+ <t:topicRef href="#t2826" />
</t:role>
</t:association>
@@ -5840,7 +5916,7 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2811" />
+ <t:topicRef href="#t2821" />
</t:role>
</t:association>
@@ -5852,8 +5928,26 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
+ <t:topicRef href="#t2816" />
+ </t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t346" />
+ </t:type>
<t:topicRef href="#t2806" />
</t:role>
+ </t:association>
+
+ <t:association>
+ <t:type>
+ <t:topicRef href="#t351" />
+ </t:type>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t341" />
+ </t:type>
+ <t:topicRef href="#t2816" />
+ </t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
@@ -5870,13 +5964,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2791" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2786" />
+ <t:topicRef href="#t2781" />
</t:role>
</t:association>
@@ -5912,7 +6006,7 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2771" />
+ <t:topicRef href="#t2691" />
</t:role>
</t:association>
@@ -5924,13 +6018,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2771" />
+ <t:topicRef href="#t2766" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2691" />
+ <t:topicRef href="#t2771" />
</t:role>
</t:association>
@@ -5942,7 +6036,7 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2761" />
+ <t:topicRef href="#t2741" />
</t:role>
<t:role>
<t:type>
@@ -5960,7 +6054,7 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2736" />
+ <t:topicRef href="#t2756" />
</t:role>
<t:role>
<t:type>
@@ -5996,7 +6090,7 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2746" />
+ <t:topicRef href="#t2741" />
</t:role>
<t:role>
<t:type>
@@ -6014,13 +6108,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2736" />
+ <t:topicRef href="#t2701" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2746" />
+ <t:topicRef href="#t2741" />
</t:role>
</t:association>
@@ -6032,13 +6126,13 @@
<t:type>
<t:topicRef href="#t341" />
</t:type>
- <t:topicRef href="#t2701" />
+ <t:topicRef href="#t2691" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2736" />
+ <t:topicRef href="#t2701" />
</t:role>
</t:association>
@@ -6056,25 +6150,43 @@
<t:type>
<t:topicRef href="#t346" />
</t:type>
- <t:topicRef href="#t2701" />
+ <t:topicRef href="#t2696" />
</t:role>
</t:association>
<t:association>
<t:type>
- <t:topicRef href="#t351" />
+ <t:topicRef href="#t99" />
</t:type>
<t:role>
<t:type>
- <t:topicRef href="#t341" />
+ <t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2691" />
+ <t:topicRef href="#t3051" />
</t:role>
<t:role>
<t:type>
- <t:topicRef href="#t346" />
+ <t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2696" />
+ <t:topicRef href="#t2846" />
+ </t:role>
+ </t:association>
+
+ <t:association>
+ <t:type>
+ <t:topicRef href="#t99" />
+ </t:type>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t215" />
+ </t:type>
+ <t:topicRef href="#t3046" />
+ </t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t207" />
+ </t:type>
+ <t:topicRef href="#t2886" />
</t:role>
</t:association>
@@ -6092,7 +6204,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -6110,7 +6222,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2876" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -6128,7 +6240,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -6146,7 +6258,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2881" />
</t:role>
</t:association>
@@ -6164,7 +6276,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -6182,7 +6294,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2871" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -6200,7 +6312,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -6218,7 +6330,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -6236,7 +6348,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -6254,7 +6366,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -6272,7 +6384,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -6290,7 +6402,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -6308,7 +6420,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -6326,7 +6438,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -6344,7 +6456,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -6362,7 +6474,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -6380,7 +6492,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -6398,7 +6510,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -6416,7 +6528,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2696" />
</t:role>
</t:association>
@@ -6434,7 +6546,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -6452,7 +6564,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2696" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -6470,7 +6582,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2826" />
</t:role>
</t:association>
@@ -6488,7 +6600,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2816" />
</t:role>
</t:association>
@@ -6506,7 +6618,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2816" />
+ <t:topicRef href="#t2871" />
</t:role>
</t:association>
@@ -6524,7 +6636,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2806" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -6542,7 +6654,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2861" />
+ <t:topicRef href="#t2831" />
</t:role>
</t:association>
@@ -6560,7 +6672,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2846" />
</t:role>
</t:association>
@@ -6578,7 +6690,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2821" />
+ <t:topicRef href="#t2771" />
</t:role>
</t:association>
@@ -6596,7 +6708,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2836" />
+ <t:topicRef href="#t2791" />
</t:role>
</t:association>
@@ -6614,7 +6726,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2766" />
+ <t:topicRef href="#t2761" />
</t:role>
</t:association>
@@ -6632,7 +6744,7 @@
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2781" />
+ <t:topicRef href="#t2681" />
</t:role>
</t:association>
@@ -6644,13 +6756,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2886" />
+ <t:topicRef href="#t2866" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2756" />
+ <t:topicRef href="#t246" />
</t:role>
</t:association>
@@ -6662,19 +6774,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t2861" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t2681" />
- </t:role>
- <t:role>
- <t:type>
- <t:topicRef href="#t215" />
- </t:type>
- <t:topicRef href="#t2881" />
+ <t:topicRef href="#t246" />
</t:role>
</t:association>
@@ -6722,7 +6828,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2846" />
+ <t:topicRef href="#t2841" />
</t:role>
<t:role>
<t:type>
@@ -6740,7 +6846,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2841" />
+ <t:topicRef href="#t2836" />
</t:role>
<t:role>
<t:type>
@@ -6758,7 +6864,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2831" />
+ <t:topicRef href="#t2811" />
</t:role>
<t:role>
<t:type>
@@ -6776,7 +6882,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2826" />
+ <t:topicRef href="#t2801" />
</t:role>
<t:role>
<t:type>
@@ -6794,7 +6900,7 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2801" />
+ <t:topicRef href="#t2786" />
</t:role>
<t:role>
<t:type>
@@ -6812,13 +6918,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2791" />
+ <t:topicRef href="#t2746" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t246" />
+ <t:topicRef href="#t241" />
</t:role>
</t:association>
@@ -6830,13 +6936,13 @@
<t:type>
<t:topicRef href="#t215" />
</t:type>
- <t:topicRef href="#t2741" />
+ <t:topicRef href="#t2736" />
</t:role>
<t:role>
<t:type>
<t:topicRef href="#t207" />
</t:type>
- <t:topicRef href="#t241" />
+ <t:topicRef href="#t246" />
</t:role>
</t:association>
@@ -8890,6 +8996,12 @@
</t:type>
<t:topicRef href="#t236" />
</t:role>
+ <t:role>
+ <t:type>
+ <t:topicRef href="#t215" />
+ </t:type>
+ <t:topicRef href="#t291" />
+ </t:role>
</t:association>
<t:association>
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 Aug 25 04:07:48 2011 (r782)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_ServiceRegistry_required_TMCL_and_GDL_Schema_with_test_data.jtm Thu Aug 25 04:55:40 2011 (r783)
@@ -192,6 +192,14 @@
"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
}
]
},
@@ -345,7 +353,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"320px",
+ "value":"322px",
"scope":null,
"reifier":null
},
@@ -526,6 +534,14 @@
"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
}
]
},
@@ -679,7 +695,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"320px",
+ "value":"322px",
"scope":null,
"reifier":null
},
@@ -878,6 +894,14 @@
"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
}
]
},
@@ -1084,6 +1108,14 @@
"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
}
]
},
@@ -1274,6 +1306,14 @@
"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
}
]
},
@@ -1495,7 +1535,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"360px",
+ "value":"362px",
"scope":null,
"reifier":null
},
@@ -1815,6 +1855,14 @@
"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
}
]
},
@@ -2021,6 +2069,14 @@
"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
}
]
},
@@ -2218,7 +2274,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"230px",
+ "value":"232px",
"scope":null,
"reifier":null
}
@@ -2442,7 +2498,7 @@
"item_identifiers":null,
"datatype":"http://www.w3.org/2001/XMLSchema#string",
"type":"si:[pref_3:width]",
- "value":"360px",
+ "value":"362px",
"scope":null,
"reifier":null
},
@@ -2671,6 +2727,16 @@
"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,
@@ -2803,6 +2869,16 @@
"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,
@@ -2813,7 +2889,8 @@
"occurrences":null
},
{
- "subject_identifiers":["[pref_2:Visible-Object]"
+ "subject_identifiers":["[pref_2:Visible-Object]",
+ "[pref_2:Visible-Object]"
],
"subject_locators":null,
"item_identifiers":null,
@@ -2941,7 +3018,8 @@
"occurrences":null
},
{
- "subject_identifiers":["[pref_3:container]"
+ "subject_identifiers":["[pref_3:container]",
+ "[pref_3:container]"
],
"subject_locators":null,
"item_identifiers":null,
@@ -4866,6 +4944,25 @@
},
{
"item_identifiers":null,
+ "type":"si:[pref_3:display-by]",
+ "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_4:environment-name-constraint]"
+ }
+ ]
+ },
+ {
+ "item_identifiers":null,
"type":"si:[pref_3:tm-binding]",
"reifier":null,
"scope":null,
@@ -5718,6 +5815,25 @@
},
{
"item_identifiers":null,
+ "type":"si:[pref_3:display-by]",
+ "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_4:environment-name-constraint]"
+ }
+ ]
+ },
+ {
+ "item_identifiers":null,
"type":"si:[pref_3:tm-binding]",
"reifier":null,
"scope":null,
@@ -7295,4 +7411,5 @@
],
"item_type":"topicmap",
"reifier":null
-}
\ No newline at end of file
+}
+
\ No newline at end of file
1
0

[isidorus-cvs] r782 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 04:07:48 2011
New Revision: 782
Log:
gdl-frontend: Widgets: added the default display-by schema of instances of http://textgrid.org/serviceregistry/model/types/Environment that are used as players in http://textgrid.org/serviceregistry/model/has-environment => currently these topics are displayed by their http://textgrid.org/serviceregistry/model/environment-name
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 Aug 25 03:39:07 2011 (r781)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Thu Aug 25 04:07:48 2011 (r782)
@@ -21,6 +21,7 @@
{"subject_identifiers":["[tmcl:topic-occurrence-constraint]"], "instance_of":["si:[tmcl:topic-type]"]},
{"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":["[tmdm:supertype]"], "instance_of":["si:[tmcl:role-type]"]},
{"subject_identifiers":["[tmdm:subtype]"], "instance_of":["si:[tmcl:role-type]"]},
@@ -33,6 +34,7 @@
{"subject_identifiers":["[tgm:has-environment-environment-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: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":["[gdl:contains]"], "instance_of":["si:[tmcl:association-type]"]},
{"subject_identifiers":["[gdl:topic-view-binding]"], "instance_of":["si:[tmcl:association-type]"]},
@@ -73,6 +75,7 @@
{"subject_identifiers":["[gdlt:Creator-Association-View]"]},
{"subject_identifiers":["[gdlt:Value]"]},
{"subject_identifiers":["[gdlt:TM-Value]"]},
+ {"subject_identifiers":["[gdl:display-by]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdlt:TM-Single-Type-Value]"]},
{"subject_identifiers":["[gdlt:Literal-Value]"]},
{"subject_identifiers":["[gdl:literal-value]"], "instance_of":["si:[tmcl:occurrence-type]"]},
@@ -184,6 +187,7 @@
{"type":"si:[gdl:view-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-creator-text-list-box-env-value-group]"},{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-creator-text-list-box-env]"}]},
{"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-creator-text-list-box-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgg:hash-object-has-environment-environment-role-player]"}]},
{"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-has-environment-environment-role-player]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:has-environment-environment-role-constraint]"}]},
+ {"type":"si:[gdl:display-by]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-creator-text-list-box-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:environment-name-constraint]"}]},
{"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-key]"}]},
{"type":"si:[gdl:position]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-creator-text-label-key-position]"},{"type":"si:[gdl:ancestor]", "player":"si:[tgg:has-environment-creator-association-view]"},{"type":"si:[gdl:descendant]", "player":"si:[tgg:hash-object-creator-text-label-key]"}]},
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 Aug 25 03:39:07 2011 (r781)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Aug 25 04:07:48 2011 (r782)
@@ -21,6 +21,7 @@
{"subject_identifiers":["[tmcl:topic-occurrence-constraint]"], "instance_of":["si:[tmcl:topic-type]"]},
{"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":["[tmdm:supertype]"], "instance_of":["si:[tmcl:role-type]"]},
{"subject_identifiers":["[tmdm:subtype]"], "instance_of":["si:[tmcl:role-type]"]},
@@ -33,6 +34,7 @@
{"subject_identifiers":["[tgm:has-environment-environment-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: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":["[gdl:contains]"], "instance_of":["si:[tmcl:association-type]"]},
{"subject_identifiers":["[gdl:topic-view-binding]"], "instance_of":["si:[tmcl:association-type]"]},
@@ -73,6 +75,7 @@
{"subject_identifiers":["[gdlt:Editor-Association-View]"]},
{"subject_identifiers":["[gdlt:Value]"]},
{"subject_identifiers":["[gdlt:TM-Value]"]},
+ {"subject_identifiers":["[gdl:display-by]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdlt:TM-Single-Type-Value]"]},
{"subject_identifiers":["[gdlt:Literal-Value]"]},
{"subject_identifiers":["[gdl:literal-value]"], "instance_of":["si:[tmcl:occurrence-type]"]},
@@ -177,6 +180,7 @@
{"type":"si:[gdl:view-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-editor-text-env-value-group]"},{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-editor-text-env]"}]},
{"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-editor-text-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgg:hash-object-has-environment-environment-role-player]"}]},
{"type":"si:[gdl:tm-binding]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-has-environment-environment-role-player]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:has-environment-environment-role-constraint]"}]},
+ {"type":"si:[gdl:display-by]", "roles":[{"type":"si:[gdl:value-group]", "player":"si:[tgg:hash-object-editor-text-env-value-group]"}, {"type":"si:[gdl:tm-construct]", "player":"si:[tgm:environment-name-constraint]"}]},
{"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-key]"}]},
{"type":"si:[gdl:position]", "roles":[{"type":"si:[gdl:descriptor]", "player":"si:[tgg:hash-object-editor-text-label-key-position]"},{"type":"si:[gdl:ancestor]", "player":"si:[tgg:has-environment-editor-association-view]"},{"type":"si:[gdl:descendant]", "player":"si:[tgg:hash-object-editor-text-label-key]"}]},
1
0

[isidorus-cvs] r781 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 03:39:07 2011
New Revision: 781
Log:
gdl-frontend: Widgets: changed the layout of text-boxes in the GDL-Schema
Modified:
branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_Environment.jtm
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_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_Create_Environment.jtm
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_Environment.jtm Thu Aug 25 03:04:14 2011 (r780)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_Environment.jtm Thu Aug 25 03:39:07 2011 (r781)
@@ -49,6 +49,7 @@
{"subject_identifiers":["[gdlt:Descriptor]"], "instance_of":["si:[tmcl:topic-type]"]},
{"subject_identifiers":["[gdlt:Visible-Object]"]},
{"subject_identifiers":["[gdl:id]"], "instance_of":["si:[tmcl:occurrence-type]"]},
+ {"subject_identifiers":["[gdl:padding-left]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdl:border-style]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdl:cursor]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdl:width]"], "instance_of":["si:[tmcl:occurrence-type]"]},
@@ -82,7 +83,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":"320px"}, {"type":"si:[gdl:height]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"gray"}]},
+ {"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":"gray"}]},
{"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":"gray"}, {"type":"si:[gdl:border-style]", "value":"none"}]},
@@ -90,7 +91,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"}]},
+ {"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-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: 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 Aug 25 03:04:14 2011 (r780)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Create_HashObject.jtm Thu Aug 25 03:39:07 2011 (r781)
@@ -58,6 +58,7 @@
{"subject_identifiers":["[gdlt:Role-Player]"]},
{"subject_identifiers":["[gdlt:Visible-Object]"]},
{"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:border-style]"], "instance_of":["si:[tmcl:occurrence-type]"]},
@@ -94,7 +95,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-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":"360px"}, {"type":"si:[gdl:height]", "value":"160px"},{"type":"si:[gdl:background-color]", "value":"gray"}]},
+ {"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: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"}]},
@@ -105,7 +106,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":"230px"}]},
+ {"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-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]"]},
@@ -115,7 +116,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"}]},
+ {"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-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]"]},
@@ -124,7 +125,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"}]},
+ {"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-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: 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 Aug 25 03:04:14 2011 (r780)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_Environment.jtm Thu Aug 25 03:39:07 2011 (r781)
@@ -49,6 +49,7 @@
{"subject_identifiers":["[gdlt:Descriptor]"], "instance_of":["si:[tmcl:topic-type]"]},
{"subject_identifiers":["[gdlt:Visible-Object]"]},
{"subject_identifiers":["[gdl:id]"], "instance_of":["si:[tmcl:occurrence-type]"]},
+ {"subject_identifiers":["[gdl:padding-left]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdl:border-style]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdl:cursor]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdl:width]"], "instance_of":["si:[tmcl:occurrence-type]"]},
@@ -81,7 +82,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":"320px"}, {"type":"si:[gdl:height]", "value":"100px"},{"type":"si:[gdl:background-color]", "value":"gray"}]},
+ {"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":"gray"}]},
{"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":"gray"}, {"type":"si:[gdl:border-style]", "value":"none"}]},
@@ -89,7 +90,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"}]},
+ {"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-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 Aug 25 03:04:14 2011 (r780)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/war/gdl_widgets/TextGrid_GDL_Edit_HashObject.jtm Thu Aug 25 03:39:07 2011 (r781)
@@ -63,6 +63,7 @@
{"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:id]"], "instance_of":["si:[tmcl:occurrence-type]"]},
+ {"subject_identifiers":["[gdl:padding-left]"], "instance_of":["si:[tmcl:occurrence-type]"]},
{"subject_identifiers":["[gdlt:View]"]},
{"subject_identifiers":["[gdl:view-name]"], "instance_of":["si:[tmcl:name-type]"]},
{"subject_identifiers":["[gdlt:Topic-View]"]},
@@ -93,7 +94,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: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":"360px"}, {"type":"si:[gdl:height]", "value":"160px"},{"type":"si:[gdl:background-color]", "value":"gray"}]},
+ {"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-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"}]},
@@ -104,7 +105,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"}]},
+ {"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-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]"]},
@@ -114,7 +115,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"}]},
+ {"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-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]"]},
@@ -123,7 +124,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":"true"}, {"type":"si:[gdl:width]", "value":"230px"},{"type":"si:[gdl:pointer]", "value":"text"}, {"type":"si:[gdl:border-style]", "value":"none"}]},
+ {"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":"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-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]"]},
1
0

[isidorus-cvs] r780 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text
by lgiessmann@common-lisp.net 25 Aug '11
by lgiessmann@common-lisp.net 25 Aug '11
25 Aug '11
Author: lgiessmann
Date: Thu Aug 25 03:04:14 2011
New Revision: 780
Log:
Modified:
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java Thu Aug 25 03:02:58 2011 (r779)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java Thu Aug 25 03:04:14 2011 (r780)
@@ -145,7 +145,8 @@
}
}
// TODO: implement type, variant, datatype, associations, roles, ... constraints
- // TODO: move method to GdlVisibleObject
+ // TODO: move method to GdlVisibleObject => add a new interface that encupsulates
+ // createNewTextArea etc. an call this method in the GdlVisibleObject
}
1
0