Setting Up Your Environment
You can use the IntelliJ IDEA to create a custom operator for TIBCO Data Science - Team Studio. Prepare the development environment to hold the project.
Perform this task in IntelliJ on your development computer.
Before you begin
- Install all required tools and sample operator files for your version.
- Install the IntelliJ IDEA to hold your custom operator development project.
- Procedure
- Open the PluginTemplateProject in IntelliJ.
- Create a package in
PluginTemplateProject/src/main/scala to hold the operator code.
Use your company's naming scheme for packages, if you have one. The example uses the package name
com.mycompany.plugins. - Within the new package, create a Scala file called
MyColumnFilter.Note: No two operators can have the same class path: that is, the same package name + class name. Be sure to use distinct naming for each operator to avoid conflicts.Your code should look like this so far:
package com.mycompany.plugins class MyColumnFilter { }
What to do nextCreate the Signature Class.