Package org.crsh.lang.spi

Examples of org.crsh.lang.spi.Language.destroy()


  @Override
  public void destroy(ShellSession session) {
    Language lang = real.get();
    if (lang != null) {
      lang.destroy(session);
    } else {
      throw new IllegalStateException(name + " language is not available");
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.