轉載自:
Koders Code Search: PrintStream.js - JavaScript
/**
* PrintStream.js
*
* Adding this file to your Active Libraries will give you code assist for the
* Aptana Studio scripting engine.
*
* @author Kevin Lindsey
* @version 1.0
*/
/**
* This object represents an underlying Java PrintStream
*
* @constructor
*
/
function PrintStream() {}
/*
* Methods
*/
/**
* Print the given text to the underlying stream
*
* @param {String} text
* The text to send to the stream
*/
PrintStream.prototype.print = function(text) {};
/**
* Print the given text to the underlying stream followed by end-of-line
*
* @param {String} text
* The text to send to the stream
*/
PrintStream.prototype.println = function(text) {};
//eof
沒有留言:
張貼留言
你好!歡迎你在我的 Blog 上留下你寶貴的意見。