INDEX
CLUSTER
FEATURES
SHORT
FRAMES
NO FRAMES
indexing
title:
"The class ENVIRONMENT provides Eiffel programs with access",
"to these parts of the environment."
project:
"Visual Eiffel Library"
revision:
"$Revision: 1.1 $"
copyright:
"Copyright (C) 1996-2005 Object Tools Group"
license:
"http://visual-eiffel.com/license"
cluster:
pool
class
ENVIRONMENT
inherit
ARGUMENTS
rename
argument
as
arg_item
,
command_name
as
program_name
,
argument_count
as
arg_count
end
feature
-- Access and Element change
env_item
(
environment_variable
:
STRING
):
STRING
-- Retrieve the value of an environment variable
require
variable_not_void
:
environment_variable
/=
void
env_put
(
environment_variable
,
text
:
STRING
)
-- Set 'environment_variable' to 'text'
require
variable_not_void
:
environment_variable
/=
void
text_not_void
:
text
/=
void
end
-- class
ENVIRONMENT
INDEX
CLUSTER
FEATURES
SHORT
FRAMES
NO FRAMES