All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dellroad.jct.jshell.JShellShell Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2023 Archie L. Cobbs. All rights reserved.
 */

package org.dellroad.jct.jshell;

import org.dellroad.jct.core.Shell;
import org.dellroad.jct.core.ShellRequest;

/**
 * A {@link Shell} wrapper around {@link jdk.jshell.JShell}.
 */
public class JShellShell implements Shell {

    @Override
    public JShellShellSession newShellSession(ShellRequest request) {
        return new JShellShellSession(this, request);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy