Custom Task Guide

Custom Task Guide

Create the CopyTask Class

Create the CopyTask Class

Create a new Java class named com.example.CopyTask. In order for the CopyTask to be a valid task, it must be extend the class com.linoma.ga.projects.CustomTask. All tasks must also have a public constructor with TaskContainer as the argument.
package com.example; import com.linoma.ga.projects.CustomTask; import com.linoma.ga.projects.TaskContainer; public class CopyTask extends CustomTask { public CopyTask(TaskContainer parent) { super(parent); } }

0 COMMENTS

We’d like to hear from you!