EditJumpWindow.findTypes C# (CSharp) Method

findTypes() protected method

protected findTypes ( Event, myEvent ) : string[]
myEvent Event,
return string[]
    protected override string[] findTypes(Event myEvent)
    {
        Jump myJump = (Jump) myEvent;
        string [] myTypes;
        if (myJump.TypeHasFall) {
            myTypes = SqliteJumpType.SelectJumpTypes(false, "", "TC", true); //don't show allJumpsName row, TC jumps, only select name
        } else {
            myTypes = SqliteJumpType.SelectJumpTypes(false, "", "nonTC", true); //don't show allJumpsName row, nonTC jumps, only select name
        }
        return myTypes;
    }