Sponsored Content
Top Forums Programming Test program not giving expected result Post 302488681 by moraks007 on Tuesday 18th of January 2011 07:31:44 AM
Old 01-18-2011
Test program not giving expected result

I have five classes. 2 composition classes,1 aggregation class and 1 dependency class.I have coded all the classes but one of my test program is not giving me the expected result.I have the following classes:
TimeStamp
Interval (composition of 2 TimeStamps)
TimeSheet ( aggregation of many Interval)
Employee (composition of many TimeSheet)
FlexiEmployee (dependecy on Employee)

I have coded all the classes but when I run my test program for the Employee it does not give the details of the TimeSheet class.

Please give an insight of what I should do.

Thanks
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Script giving different result on Linux compared to Unix

Hi I have a script executing fine in Unix but in linux I am getting different result. I have three files under /local/home/temp/Gen test.sh list.txt shst.txt Contents of test.sh -------------------------- #!/bin/ksh K=0; SCRIPT_DIR=/local/home/temp/Gen cat... (2 Replies)
Discussion started by: malavm
2 Replies

2. Shell Programming and Scripting

My script is not giving result for 2 or more arguments

Hi, I am new to shell scripting and my below script is not giving result for 2 or more arguments. Can anyone help pls. #!/bin/sh sname=$(basename $(readlink -nf $0)) echo "This is $sname, running at $(date)" echo "It is running on $(hostname)" echo "Script being run by" echo " User... (3 Replies)
Discussion started by: baigmd
3 Replies

3. AIX

errpt not giving a result

my system get rebooted by its self after its came up i try to check the error log P690/>errpt | more Cannot open error message catalog /usr/lib/nls/msg/en_US/codepoint.cat. The error report will still run, but it will not have explanatory messages P690/>ls -lrt... (1 Reply)
Discussion started by: thecobra151
1 Replies

4. Shell Programming and Scripting

Monitoring Sript giving random end result

Hi Guys, I am developing a script to monitor GUI based FileNet Component "Component Manager" which logs it's running status in a log file. Log file is a huge file so in script I put last 300 lines of log file in seperate file and run script every 5 minutes. I am searching the string... (2 Replies)
Discussion started by: dhirajdsharma
2 Replies

5. Shell Programming and Scripting

AWK Looping. How can I get expected result?

Can Anyone help with looping... awk 'FNR==1{i++} {for(k=1; k<=NF; k++) A=$k} # 3 Dimension Array END{ for(i=1;i<=217;i++) # For loop 2nd File 1st and 2nd column x=0;y=0 ... (18 Replies)
Discussion started by: Akshay Hegde
18 Replies

6. UNIX for Dummies Questions & Answers

Grep not giving expected results

Version: RHEL 5.8 I am doing a grep of the piped output from ps command as shown below. I am grepping for the pattern ora_dbw* . But, in the result set I am seeing strings with ora_dbr* as well like ora_dbrm_SDLM1DAS3 as shown below. Any idea why is this happening ? $ ps -ef | grep... (6 Replies)
Discussion started by: John K
6 Replies

7. Shell Programming and Scripting

For loop not giving expected output

#cat /tmp/input old_array old_dev new_dev new_array 0577 008AB 01744 0125 0577 008AC 01745 0125 0577 008AD 005C8 0125 0577 008AE 005C9 0125 0577 008AF 005CA 0125 0577 008B0 005CB 0125 0577 008B1 005CC 0125 cat test.sh #!/bin/ksh... (4 Replies)
Discussion started by: mbak
4 Replies

8. Shell Programming and Scripting

Not getting expected result

Hi Experts, I have written the below script but its not working as per expectation. My requirement is if this condition ] is satisfied then only check for this condition ] if this also satisfied check for the condition ]. vi p_values.ksh path="/db/ora/files" mode=1 b_days=10... (5 Replies)
Discussion started by: nalu
5 Replies

9. Shell Programming and Scripting

awk not giving the output expected

Hello, I am practising awk and decided to compare two columns and print the result of the comparison as third column i/p data c1,c2,c3 1,a,b 1,b,b i am trying to compare the last two columns and if they match I am trying to print match else mismatch(Ideally i want that as a last column... (5 Replies)
Discussion started by: mkathi
5 Replies

10. Shell Programming and Scripting

Grep output to file result not as expected

Hi Gurus, I run command grep ABC file1 > file2 against below file. I got all ABC_xxx in one line in file2. I expect to get multiple lines in file2. If I print result in screen, the result is expected. thanks in advance My os is SunOS 5.10 Generic_150400-64 sun4v sparc sun4v ABC_123 XXXXX... (2 Replies)
Discussion started by: green_k
2 Replies
XtIsSubclass()															    XtIsSubclass()

Name
  XtIsSubclass - determine whether a widget is a subclass of a class.

Synopsis
  Boolean XtIsSubclass(object, object_class)
	 Widget object;
	 WidgetClass object_class;

Inputs
  object     Specifies the object instance whose class is to be checked; may be of class Object or any subclass thereof.

  object_class
	     Specifies the widget class to test against; may be objectClass or any subclass.

Returns
  True if object is of class object_class or any subclass of it; False otherwise.

Description
  XtIsSubclass()  returns  True  if  the  specified object is of the specified class, or is a subclass (any number of classes removed) of it.
  Otherwise it returns False.

Usage
  Composite widgets that restrict the type of widgets they will accept as children can use  XtIsSubclass()  to	find  out  whether  a  widget
  belongs to the desired widget class.

  Public routines that require a widget of a particular class can use XtIsSubclass() to verify that the object they are passed is of the cor-
  rect type.  XtCheckSubclass() does the same thing, but is a macro that is only compiled when the symbol DEBUG is defined by the compiler.

  To test whether a given widget is a subclass of an Intrinsics-defined class, the Intrinsics  define  convenience  functions  equivalent  to
  XtIsSubclass() for each of the built-in classes.  These functions are shown in the table below:

XtIsObject()	   XtIsOverrideShell()
XtIsRectObj()	   XtIsWMShell()
XtIsWidget()	   XtIsVendorShell()
XtIsComposite()    XtIsTransientShell()
XtIsConstraint()   XtIsTopLevelShell()
XtIsShell()	   XtIsApplicationShell()

  These functions may be defined as macros, and may be faster than calling XtIsSubclass() directly for the built-in classes.

See Also
  XtCheckSubclass(1), XtClass(1), XtIs*(1), XtSuperclass(1).

Xt - Object Information 													    XtIsSubclass()
All times are GMT -4. The time now is 12:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy