Misbha Ali

Greenhorn
+ Follow
since Jul 22, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Misbha Ali

Hi
Can any body help me in understanding this code snippet.
public abstract class Event
{
static private Logger logger = Logger.getLogger(Event.class.getName());
static public final String _RCS_HEADER = "$Header: //depot/main/tl/tao_build/Runtime/src/core/versata/vfc/html/Event.java#5 $";
static {
com.versata.util.logging.Logger.getLogger("versata.trace.rcs").info(_RCS_HEADER);
}
public Object source;
public Object getSource() {
return source;
}
}

Please provide some help to understand what this method getSource() does...what this class is meant for.
20 years ago
I 've a jsp.I need to get rid of the IE scroll bar.Need only the internal scrollbar.
20 years ago
JSP
I 've a jsp.I need to get rid of the IE scroll bar.Need only the internal scrollbar.
Please let me know how to form an Integer array.
20 years ago
Can any one provide me some help for reading an image file.
20 years ago
There's a method which takes a byte array.I would appriciate if anyone could update me abt this byte aarray parameter passing.
Can it be passed this way..

System.out.println("Save Image Test->" + temp.saveImage(byte[] bb,"tif"));
20 years ago
I came across this code...I would appreciate if any one could make me understand this..specailly the new Object[] {rootCause} thing..
public DataServiceRiskWiseCheckedException(Code code, String debugInformation, Throwable rootCause, int severity)
{
this(code, new Object[] {rootCause}, debugInformation, rootCause, severity);
}
:roll:
20 years ago