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
    Procedure
  1. Open the PluginTemplateProject in IntelliJ.
  2. 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.

  3. 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 {
     
    }