Customize property panel and pallet

Hi,

I have few queries regarding customization.

  1. How to get custom pallet and custom xml tag similar to serviceTask and its xml tag (bpmn:serviceTask)
  2. How to create custom properties panel in a single general tab where the values provided by the user in properties panel should come inside a custom xml tags similar to camunda connector

If we use camunda we get XML something similar to this.
<bpmn:serviceTask id="">
bpmn:extensionElements
camunda:connector
camunda:inputOutput

</camunda:inputOutput>
camunda:connectorId…</camunda:connectorId>
</camunda:connector>
</bpmn:serviceTask>

I want to generate my own xml tags
<xx:custom id="…">
custom:connector
custom:inputOutput

</custom:inputOutput>
</custom:connector>
</xx:custom >

For reference
bpmn1

Did you check out this example for creating custom elements? I think this is a good starting point on how to extend the editor with your custom element information.