public String getLinkSchemeName() { if (StringUtils.isEmpty(linkSchemeName)) { return "link" + (fromEditionPattern != null ? fromEditionPattern.getName() : "") + "To" + (toEditionPattern != null ? toEditionPattern.getName() : ""); } return linkSchemeName; }
public EditionPatternPreviewRepresentation(EditionPattern anEditionPattern) { super(anEditionPattern); shapesGR = new Hashtable<PatternRole, EditionPatternPreviewShapeGR>(); connectorsGR = new Hashtable<PatternRole, EditionPatternPreviewConnectorGR>(); fromArtifacts = new Hashtable<PatternRole, ConnectorFromArtifact>(); toArtifacts = new Hashtable<PatternRole, ConnectorToArtifact>(); anEditionPattern.addObserver(this); updateGraphicalObjectsHierarchy(); ignoreNotifications = false; }
@Override protected void doAction(Object context) { logger.info("Declare connector in edition pattern"); if (isValid()) { switch (primaryChoice) { case CHOOSE_EXISTING_EDITION_PATTERN: if (getPatternRole() != null) { System.out.println("Connector representation updated"); // getPatternRole().setGraphicalRepresentation(getFocusedObject().getGraphicalRepresentation()); getPatternRole() .updateGraphicalRepresentation(getFocusedObject().getGraphicalRepresentation()); } break; case CREATES_EDITION_PATTERN: switch (patternChoice) { case MAP_SINGLE_INDIVIDUAL: case BLANK_EDITION_PATTERN: // Create new edition pattern newEditionPattern = new EditionPattern(); newEditionPattern.setName(getEditionPatternName()); // Find best URI base candidate PropertyEntry mainPropertyDescriptor = selectBestEntryForURIBaseName(); // Create individual pattern role IndividualPatternRole individualPatternRole = new IndividualPatternRole(); if (patternChoice == NewEditionPatternChoices.MAP_SINGLE_INDIVIDUAL) { individualPatternRole.setPatternRoleName(getIndividualPatternRoleName()); individualPatternRole.setOntologicType(getConcept()); newEditionPattern.addToPatternRoles(individualPatternRole); newEditionPattern.setPrimaryConceptRole(individualPatternRole); } // Create connector pattern role newConnectorPatternRole = new ConnectorPatternRole(); newConnectorPatternRole.setPatternRoleName(getConnectorPatternRoleName()); if (mainPropertyDescriptor != null) { newConnectorPatternRole.setLabel( new ViewPointDataBinding( getIndividualPatternRoleName() + "." + mainPropertyDescriptor.property.getName())); } else { newConnectorPatternRole.setReadOnlyLabel(true); newConnectorPatternRole.setLabel(new ViewPointDataBinding("\"label\"")); } newConnectorPatternRole.setGraphicalRepresentation( getFocusedObject().getGraphicalRepresentation()); newEditionPattern.addToPatternRoles(newConnectorPatternRole); newEditionPattern.setPrimaryRepresentationRole(newConnectorPatternRole); // Create other individual roles Vector<IndividualPatternRole> otherRoles = new Vector<IndividualPatternRole>(); if (patternChoice == NewEditionPatternChoices.MAP_SINGLE_INDIVIDUAL) { for (PropertyEntry e : propertyEntries) { if (e.selectEntry) { if (e.property instanceof OntologyObjectProperty) { OntologyObject range = e.property.getRange(); if (range instanceof OntologyClass) { IndividualPatternRole newPatternRole = new IndividualPatternRole(); newPatternRole.setPatternRoleName(e.property.getName()); newPatternRole.setOntologicType((OntologyClass) range); newEditionPattern.addToPatternRoles(newPatternRole); otherRoles.add(newPatternRole); } } } } } // Create new link scheme LinkScheme newLinkScheme = new LinkScheme(); newLinkScheme.setName(getLinkSchemeName()); newLinkScheme.setFromTargetEditionPattern(fromEditionPattern); newLinkScheme.setToTargetEditionPattern(toEditionPattern); // Parameters if (patternChoice == NewEditionPatternChoices.MAP_SINGLE_INDIVIDUAL) { Vector<PropertyEntry> candidates = new Vector<PropertyEntry>(); for (PropertyEntry e : propertyEntries) { if (e.selectEntry) { EditionSchemeParameter newParameter = null; if (e.property instanceof OntologyDataProperty) { switch (((OntologyDataProperty) e.property).getDataType()) { case Boolean: newParameter = new CheckboxParameter(); newParameter.setName(e.property.getName()); newParameter.setLabel(e.label); break; case Byte: case Integer: case Long: case Short: newParameter = new IntegerParameter(); newParameter.setName(e.property.getName()); newParameter.setLabel(e.label); break; case Double: case Float: newParameter = new FloatParameter(); newParameter.setName(e.property.getName()); newParameter.setLabel(e.label); break; case String: newParameter = new TextFieldParameter(); newParameter.setName(e.property.getName()); newParameter.setLabel(e.label); break; default: break; } } else if (e.property instanceof OntologyObjectProperty) { OntologyObject range = e.property.getRange(); if (range instanceof OntologyClass) { newParameter = new IndividualParameter(); newParameter.setName(e.property.getName()); newParameter.setLabel(e.label); ((IndividualParameter) newParameter).setConcept((OntologyClass) range); } } if (newParameter != null) { newLinkScheme.addToParameters(newParameter); } } } URIParameter uriParameter = new URIParameter(); uriParameter.setName("uri"); uriParameter.setLabel("uri"); if (mainPropertyDescriptor != null) { uriParameter.setBaseURI( new ViewPointDataBinding(mainPropertyDescriptor.property.getName())); } newLinkScheme.addToParameters(uriParameter); // Declare pattern role for (IndividualPatternRole r : otherRoles) { DeclarePatternRole action = new DeclarePatternRole(); action.setPatternRole(r); action.setObject(new ViewPointDataBinding("parameters." + r.getName())); newLinkScheme.addToActions(action); } // Add individual action AddIndividual newAddIndividual = new AddIndividual(); newAddIndividual.setPatternRole(individualPatternRole); newAddIndividual.setIndividualName(new ViewPointDataBinding("parameters.uri")); for (PropertyEntry e : propertyEntries) { if (e.selectEntry) { if (e.property instanceof OntologyObjectProperty) { OntologyObject range = e.property.getRange(); if (range instanceof OntologyClass) { ObjectPropertyAssertion propertyAssertion = new ObjectPropertyAssertion(); propertyAssertion.setOntologyProperty(e.property); propertyAssertion.setObject( new ViewPointDataBinding("parameters." + e.property.getName())); newAddIndividual.addToObjectAssertions(propertyAssertion); } } else if (e.property instanceof OntologyDataProperty) { DataPropertyAssertion propertyAssertion = new DataPropertyAssertion(); propertyAssertion.setOntologyProperty(e.property); propertyAssertion.setValue( new ViewPointDataBinding("parameters." + e.property.getName())); newAddIndividual.addToDataAssertions(propertyAssertion); } } } newLinkScheme.addToActions(newAddIndividual); } // Add connector action AddConnector newAddConnector = new AddConnector(); newAddConnector.setPatternRole(newConnectorPatternRole); newAddConnector.setFromShape( new ViewPointDataBinding( EditionScheme.FROM_TARGET + "." + fromEditionPattern .getPrimaryRepresentationRole() .getPatternRoleName())); newAddConnector.setToShape( new ViewPointDataBinding( EditionScheme.TO_TARGET + "." + toEditionPattern.getPrimaryRepresentationRole().getPatternRoleName())); newLinkScheme.addToActions(newAddConnector); // Add new drop scheme newEditionPattern.addToEditionSchemes(newLinkScheme); // Add inspector EditionPatternInspector inspector = newEditionPattern.getInspector(); inspector.setInspectorTitle(getEditionPatternName()); if (patternChoice == NewEditionPatternChoices.MAP_SINGLE_INDIVIDUAL) { for (PropertyEntry e : propertyEntries) { if (e.selectEntry) { if (e.property instanceof OntologyObjectProperty) { OntologyObject range = e.property.getRange(); if (range instanceof OntologyClass) { InspectorEntry newInspectorEntry = null; newInspectorEntry = new TextFieldInspectorEntry(); newInspectorEntry.setName(e.property.getName()); newInspectorEntry.setLabel(e.label); newInspectorEntry.setIsReadOnly(true); newInspectorEntry.setData( new ViewPointDataBinding(e.property.getName() + ".uriName")); inspector.addToEntries(newInspectorEntry); } } else if (e.property instanceof OntologyDataProperty) { InspectorEntry newInspectorEntry = null; switch (((OntologyDataProperty) e.property).getDataType()) { case Boolean: newInspectorEntry = new CheckboxInspectorEntry(); break; case Byte: case Integer: case Long: case Short: newInspectorEntry = new IntegerInspectorEntry(); break; case Double: case Float: newInspectorEntry = new FloatInspectorEntry(); break; case String: newInspectorEntry = new TextFieldInspectorEntry(); break; default: logger.warning( "Not handled: " + ((OntologyDataProperty) e.property).getDataType()); } if (newInspectorEntry != null) { newInspectorEntry.setName(e.property.getName()); newInspectorEntry.setLabel(e.label); newInspectorEntry.setData( new ViewPointDataBinding( getIndividualPatternRoleName() + "." + e.property.getName())); inspector.addToEntries(newInspectorEntry); } } } } } // And add the newly created edition pattern getFocusedObject().getCalc().addToEditionPatterns(newEditionPattern); default: break; } default: logger.warning("Pattern not implemented"); } } else { logger.warning("Focused role is null !"); } }