INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Reads the file data"
project: "Visual Eiffel Library"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: gargs
class FILE_CMDLN
creation

make
feature -- Initialization

make (file: STRING)
-- Initialize from the characters of 'file'.
-- Note1: The 'file' must pass without its prefix symbol (@).
-- Note2: The recursive parsing of arguments files not supported.
require
valid_file_name: file /= void and then not file.is_empty
feature -- Access

to_string: STRING
-- Converts the file data to single string; Void if none.

to_tokens: ARRAY [STRING]
-- Converts the file data to array of tokens; Void if none.
end -- class FILE_CMDLN

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES