Package org.jboss.fresh.shell.commands

Source Code of org.jboss.fresh.shell.commands.VersionExe

package org.jboss.fresh.shell.commands;

import org.jboss.fresh.io.BufferObjectWriter;
import org.jboss.fresh.shell.AbstractExecutable;
import org.jboss.fresh.shell.impl.Version;

/**
* @author Ales Justin
*/
public class VersionExe extends AbstractExecutable
{
   /**
    * Displays version information.
    */
   public void process(String exename, String[] params) throws Exception
   {
      BufferObjectWriter oout = new BufferObjectWriter(getStdOut());
      oout.writeObject(Version.getDescription());
      oout.close();
   }
}
TOP

Related Classes of org.jboss.fresh.shell.commands.VersionExe

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.