📄 output.java
字号:
// -*- Java -*-
/*
* <copyright>
*
* Copyright (c) 2002
* Institute for Information Processing and Computer Supported New Media (IICM),
* Graz University of Technology, Austria.
*
* </copyright>
*
* <file>
*
* Name: Output.java
*
* Purpose: Output prints sorted lines in a nice format
*
* Created: 05 Nov 2002
*
* $Id$
*
* Description:
* Output prints sorted lines in a nice format
* </file>
*/
package kwic.es;
/*
* $Log$
*/
/**
* An instance of the Output class prints sorted lines in nice format.
* @author dhelic
* @version $Id$
*/
public class Output{
//----------------------------------------------------------------------
/**
* Fields
*
*/
//----------------------------------------------------------------------
//----------------------------------------------------------------------
/**
* Constructors
*
*/
//----------------------------------------------------------------------
//----------------------------------------------------------------------
/**
* Methods
*
*/
//----------------------------------------------------------------------
//----------------------------------------------------------------------
/**
* Prints the lines at the standard output.
* @param shift_storage sorted shifts
*/
public void print(LineStorageWrapper shift_storage){
for(int i = 0; i < shift_storage.getLineCount(); i++)
System.out.println(shift_storage.getLineAsString(i));
}
//----------------------------------------------------------------------
/**
* Inner classes
*
*/
//----------------------------------------------------------------------
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -