#!/bin/sh
#
# Component Name: TivoliPlus
#
# $Source: /tivoli/development/src/2.0/plus/Link/src/faux_edit_job,v $
#
# $Revision: 1.2 $
#
# Description:
#
# (C) COPYRIGHT Tivoli Systems, Inc. 1995-2000
# Unpublished Work
# All Rights Reserved
# Licensed Material - Property of Tivoli Systems, Inc.
#

#
# This is a UI callback.  Pass these arguments to a method on another object.
# (I guess the O-O guys call this kind of thing 'delegation')
#

#
# Now lookup the oid that we really want to call
#


#The Job oid is stored in the faux_profile attribute
REAL_OID=`idlattr -t -g $TMF_SELF faux_job Object`

#
# Extract this method's arguments
#
INPUT=`idlinput`
ARGS=`idlarg 1 "$INPUT"`
UI_ENV=`idlarg 2 "$INPUT"`

#
# Call the edit_job_callback method on the job.
#
idlcall "$REAL_OID" edit_job_callback "$ARGS $UI_ENV"

exit $?







