Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Test and Performance Tools Platform (TPTP) » How to record Hyperlink with Automated GUI Recorder?
How to record Hyperlink with Automated GUI Recorder? [message #125352] Wed, 05 March 2008 06:48 Go to next message
Eclipse UserFriend
Originally posted by: nhadt.cybersoft-vn.com

Hello,

I'm new with TPTP and I would like to know that Automated GUI
Recorder (AGR) allows to record hyperlink?

If no, is there any way to customize it?

I know that we can contribute Widget resolvers through the extension
"org.eclipse.tptp.test.auto.gui.widgetResolver" but I don't know how to
resolve for Hyperlink to get IWidgetId

In MacroCommandShell class, it seems that this class also doesn't
support to create command for Hyperlink action. Is there any way or we
must directly modify this class to support?

Thanks for any help,

Nha
Re: How to record Hyperlink with Automated GUI Recorder? [message #125584 is a reply to message #125352] Thu, 06 March 2008 08:26 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: nhadt.cybersoft-vn.com

Hello,

So far, I have resolved problem of how to record hyperlink with
AGR by customizing as following:

1. Hyperlink: as default, when hyperlink is created, it does not
add listener with event type SWT.Selection. This event type is notified
by playback mechanism of BooleanSelectionCommand class. Thus, to record
hyperlink, we should add listener for hyperlink with SWT.Selection event
type
...
Listener typedListener = new Listener() {

@Override
public void handleEvent(Event event) {
if (SWT.Selection == event.type) {
// do action when hyperlink is clicked
//
}

}

};
ImageHyperlink hyperlink = new ImageHyperlink(parent,style);
hyperlink.addListener(SWT.Selection, typedListener);

// listener for hyperlink action
IHyperlinkListener hpListerner = new IHyperlinkListener(){

@Override
public void linkActivated(HyperlinkEvent e) {
Event event = new Event();
event.widget = m_widget;
// notify to selection listener to handle for this event
hpListerner.notifyListeners(SWT.Selection, event);

}

@Override
public void linkEntered(HyperlinkEvent e) {

}

@Override
public void linkExited(HyperlinkEvent e) {

}

};
hyperlink.addHyperlinkListener(hpListerner);

2. Create BooleanSelectionCommand for hyperlink widget: directly
modify MacroCommandShell class to support it as following code:

private AbstractMacroCommand createSelectionCommand(WidgetIdentifier
wid, Event event){
if (event.widget instanceof MenuItem
|| event.widget instanceof Hyperlink
|| event.widget instanceof ToolItem
|| (event.widget instanceof Button
&& !(event.widget instanceof Control
&& ((Control)event.widget).getParent()
instanceof CCombo))){
if (event.x != 0 || event.y != 0 || event.detail != 0){
return new BooleanSelectionCommand(this, wid,
new Point (event.x, event.y), event.detail);
}

return new BooleanSelectionCommand(this, wid);
}
...
return null;
}

It isn't a very good way for this issue but we can record hyperlink with
AGR.

Does anyone have suggest on this issue?

Thanks,

Nha


PS: I hope that this issue could be resolved in the next release.


Nha Dang wrote:
> Hello,
>
> I'm new with TPTP and I would like to know that Automated GUI
> Recorder (AGR) allows to record hyperlink?
>
> If no, is there any way to customize it?
>
> I know that we can contribute Widget resolvers through the extension
> "org.eclipse.tptp.test.auto.gui.widgetResolver" but I don't know how to
> resolve for Hyperlink to get IWidgetId
>
> In MacroCommandShell class, it seems that this class also doesn't
> support to create command for Hyperlink action. Is there any way or we
> must directly modify this class to support?
>
> Thanks for any help,
>
> Nha
Re: How to record Hyperlink with Automated GUI Recorder? [message #125608 is a reply to message #125584] Thu, 06 March 2008 14:25 Go to previous messageGo to next message
Jimmy Jin is currently offline Jimmy JinFriend
Messages: 32
Registered: July 2009
Member
Hello, Nha,

I checked Hyperlink source code (actually the AbstractHyperlink), and
find that it listens for the SWT.DefaultSelection event. So if when
playback, the SWT.DefaultSelection event can be sent out, instead of the
SWT.Selection event, then you don't need to make Hyperlink listen for
the SWT.Selection event.

It's better that when recording, something can be put in the script to
identify this should be a SWT.DefaultSelection event. Then when
playback, just simply check this. This needs more modifications in
BooleanSelectionCommand class.

Can you enter a bug in Bugzilla? Maybe I can provide a patch in future
to fix it completely.

Regards,
Jimmy Jin

Nha Dang wrote:
> Hello,
>
> So far, I have resolved problem of how to record hyperlink with AGR
> by customizing as following:
>
> 1. Hyperlink: as default, when hyperlink is created, it does not
> add listener with event type SWT.Selection. This event type is notified
> by playback mechanism of BooleanSelectionCommand class. Thus, to record
> hyperlink, we should add listener for hyperlink with SWT.Selection event
> type
> ...
> Listener typedListener = new Listener() {
>
> @Override
> public void handleEvent(Event event) {
> if (SWT.Selection == event.type) {
> // do action when hyperlink is clicked
> //
> }
>
> }
>
> };
> ImageHyperlink hyperlink = new ImageHyperlink(parent,style);
> hyperlink.addListener(SWT.Selection, typedListener);
>
> // listener for hyperlink action
> IHyperlinkListener hpListerner = new IHyperlinkListener(){
>
> @Override
> public void linkActivated(HyperlinkEvent e) {
> Event event = new Event();
> event.widget = m_widget;
> // notify to selection listener to handle for this event
> hpListerner.notifyListeners(SWT.Selection, event);
>
> }
>
> @Override
> public void linkEntered(HyperlinkEvent e) {
>
> }
>
> @Override
> public void linkExited(HyperlinkEvent e) {
>
> }
>
> };
> hyperlink.addHyperlinkListener(hpListerner);
>
> 2. Create BooleanSelectionCommand for hyperlink widget: directly
> modify MacroCommandShell class to support it as following code:
>
> private AbstractMacroCommand createSelectionCommand(WidgetIdentifier
> wid, Event event){
> if (event.widget instanceof MenuItem
> || event.widget instanceof Hyperlink
> || event.widget instanceof ToolItem
> || (event.widget instanceof Button
> && !(event.widget instanceof Control
> && ((Control)event.widget).getParent()
> instanceof CCombo))){
> if (event.x != 0 || event.y != 0 || event.detail != 0){
> return new BooleanSelectionCommand(this, wid,
> new Point (event.x, event.y), event.detail);
> }
>
> return new BooleanSelectionCommand(this, wid);
> }
> ...
> return null;
> }
>
> It isn't a very good way for this issue but we can record hyperlink with
> AGR.
>
> Does anyone have suggest on this issue?
>
> Thanks,
>
> Nha
>
>
> PS: I hope that this issue could be resolved in the next release.
>
>
> Nha Dang wrote:
>> Hello,
>>
>> I'm new with TPTP and I would like to know that Automated GUI
>> Recorder (AGR) allows to record hyperlink?
>>
>> If no, is there any way to customize it?
>>
>> I know that we can contribute Widget resolvers through the
>> extension "org.eclipse.tptp.test.auto.gui.widgetResolver" but I don't
>> know how to resolve for Hyperlink to get IWidgetId
>>
>> In MacroCommandShell class, it seems that this class also doesn't
>> support to create command for Hyperlink action. Is there any way or we
>> must directly modify this class to support?
>>
>> Thanks for any help,
>>
>> Nha
Re: How to record Hyperlink with Automated GUI Recorder? [message #125742 is a reply to message #125608] Fri, 07 March 2008 09:59 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: nhadt.cybersoft-vn.com

Hello Jimmy Jin,

It seems that Hyperlink (actually the AbstractHyperlink) just
handles for event type SWT.DefaultSelection only but has no listener for
this event type.

So if we don't add listener (say SELECTION_LISTENER) with
SWT.DefaultSelection or SWT.Selection event types for hyperlink. How
could AGR record when hyperlink is activated? Because when hyperlink is
activated, it doesn't send event which notifies MacroCommandShell to
create BooleanSelectionCommand for hyperlink action.

In previous implemented code, when hyperlink is activated, I
notify event with SWT.Selection which helps MacroCommandShell to create
BooleanSelectionCommand and let SELECTION_LISTENER handles action
instead of linkActivated() method. When playback,
BooleanSelectionCommand sends SWT.Selection event and SELECTION_LISTENER
will handle for this event.

How about your ideas?

Regards,

Nha

Jimmy Jin wrote:
> Hello, Nha,
>
> I checked Hyperlink source code (actually the AbstractHyperlink), and
> find that it listens for the SWT.DefaultSelection event. So if when
> playback, the SWT.DefaultSelection event can be sent out, instead of the
> SWT.Selection event, then you don't need to make Hyperlink listen for
> the SWT.Selection event.
>
> It's better that when recording, something can be put in the script to
> identify this should be a SWT.DefaultSelection event. Then when
> playback, just simply check this. This needs more modifications in
> BooleanSelectionCommand class.
>
> Can you enter a bug in Bugzilla? Maybe I can provide a patch in future
> to fix it completely.
>
> Regards,
> Jimmy Jin
>
> Nha Dang wrote:
>> Hello,
>>
>> So far, I have resolved problem of how to record hyperlink with
>> AGR by customizing as following:
>>
>> 1. Hyperlink: as default, when hyperlink is created, it does not
>> add listener with event type SWT.Selection. This event type is
>> notified by playback mechanism of BooleanSelectionCommand class. Thus,
>> to record hyperlink, we should add listener for hyperlink with
>> SWT.Selection event type
>> ...
>> Listener typedListener = new Listener() {
>> @Override
>> public void handleEvent(Event event) {
>> if (SWT.Selection == event.type) {
>> // do action when hyperlink is clicked
>> //
>> }
>>
>> }
>> };
>> ImageHyperlink hyperlink = new ImageHyperlink(parent,style);
>> hyperlink.addListener(SWT.Selection, typedListener);
>>
>> // listener for hyperlink action
>> IHyperlinkListener hpListerner = new IHyperlinkListener(){
>>
>> @Override
>> public void linkActivated(HyperlinkEvent e) {
>> Event event = new Event();
>> event.widget = m_widget;
>> // notify to selection listener to handle for this event
>> hpListerner.notifyListeners(SWT.Selection, event);
>> }
>>
>> @Override
>> public void linkEntered(HyperlinkEvent e) {
>> }
>>
>> @Override
>> public void linkExited(HyperlinkEvent e) {
>> }
>> };
>> hyperlink.addHyperlinkListener(hpListerner);
>>
>> 2. Create BooleanSelectionCommand for hyperlink widget: directly
>> modify MacroCommandShell class to support it as following code:
>>
>> private AbstractMacroCommand createSelectionCommand(WidgetIdentifier
>> wid, Event event){ if (event.widget instanceof
>> MenuItem
>> || event.widget instanceof Hyperlink
>> || event.widget instanceof ToolItem
>> || (event.widget instanceof Button
>> && !(event.widget instanceof Control
>> && ((Control)event.widget).getParent()
>> instanceof CCombo))){ if
>> (event.x != 0 || event.y != 0 || event.detail != 0){
>> return new BooleanSelectionCommand(this, wid,
>> new Point (event.x, event.y), event.detail);
>> }
>> return new BooleanSelectionCommand(this,
>> wid); }
>> ...
>> return null;
>> }
>>
>> It isn't a very good way for this issue but we can record hyperlink
>> with AGR.
>>
>> Does anyone have suggest on this issue?
>>
>> Thanks,
>>
>> Nha
>>
>>
>> PS: I hope that this issue could be resolved in the next release.
>>
>>
>> Nha Dang wrote:
>>> Hello,
>>>
>>> I'm new with TPTP and I would like to know that Automated GUI
>>> Recorder (AGR) allows to record hyperlink?
>>>
>>> If no, is there any way to customize it?
>>>
>>> I know that we can contribute Widget resolvers through the
>>> extension "org.eclipse.tptp.test.auto.gui.widgetResolver" but I don't
>>> know how to resolve for Hyperlink to get IWidgetId
>>>
>>> In MacroCommandShell class, it seems that this class also doesn't
>>> support to create command for Hyperlink action. Is there any way or
>>> we must directly modify this class to support?
>>>
>>> Thanks for any help,
>>>
>>> Nha
Re: How to record Hyperlink with Automated GUI Recorder? [message #125781 is a reply to message #125742] Sun, 09 March 2008 13:23 Go to previous messageGo to next message
Jimmy Jin is currently offline Jimmy JinFriend
Messages: 32
Registered: July 2009
Member
Hello, Nha,

I don't quite understand your sample code, especially the following lines:

// listener for hyperlink action
IHyperlinkListener hpListerner = new IHyperlinkListener(){

@Override
public void linkActivated(HyperlinkEvent e) {
Event event = new Event();
event.widget = m_widget;
// notify to selection listener to handle for this event
hpListerner.notifyListeners(SWT.Selection, event);
}

I tried it but the IHyperlinkListener does not have notifyListeners()
method. I think maybe you mistyped something here. Can you give a more
complete code example?

Regards,
Jimmy Jin

Nha Dang wrote:
> Hello Jimmy Jin,
>
> It seems that Hyperlink (actually the AbstractHyperlink) just
> handles for event type SWT.DefaultSelection only but has no listener for
> this event type.
>
> So if we don't add listener (say SELECTION_LISTENER) with
> SWT.DefaultSelection or SWT.Selection event types for hyperlink. How
> could AGR record when hyperlink is activated? Because when hyperlink is
> activated, it doesn't send event which notifies MacroCommandShell to
> create BooleanSelectionCommand for hyperlink action.
>
> In previous implemented code, when hyperlink is activated, I notify
> event with SWT.Selection which helps MacroCommandShell to create
> BooleanSelectionCommand and let SELECTION_LISTENER handles action
> instead of linkActivated() method. When playback,
> BooleanSelectionCommand sends SWT.Selection event and SELECTION_LISTENER
> will handle for this event.
>
> How about your ideas?
>
> Regards,
>
> Nha
>
> Jimmy Jin wrote:
>> Hello, Nha,
>>
>> I checked Hyperlink source code (actually the AbstractHyperlink), and
>> find that it listens for the SWT.DefaultSelection event. So if when
>> playback, the SWT.DefaultSelection event can be sent out, instead of
>> the SWT.Selection event, then you don't need to make Hyperlink listen
>> for the SWT.Selection event.
>>
>> It's better that when recording, something can be put in the script to
>> identify this should be a SWT.DefaultSelection event. Then when
>> playback, just simply check this. This needs more modifications in
>> BooleanSelectionCommand class.
>>
>> Can you enter a bug in Bugzilla? Maybe I can provide a patch in future
>> to fix it completely.
>>
>> Regards,
>> Jimmy Jin
>>
>> Nha Dang wrote:
>>> Hello,
>>>
>>> So far, I have resolved problem of how to record hyperlink with
>>> AGR by customizing as following:
>>>
>>> 1. Hyperlink: as default, when hyperlink is created, it does not
>>> add listener with event type SWT.Selection. This event type is
>>> notified by playback mechanism of BooleanSelectionCommand class.
>>> Thus, to record hyperlink, we should add listener for hyperlink with
>>> SWT.Selection event type
>>> ...
>>> Listener typedListener = new Listener() {
>>> @Override
>>> public void handleEvent(Event event) {
>>> if (SWT.Selection == event.type) {
>>> // do action when hyperlink is clicked
>>> //
>>> }
>>>
>>> }
>>> };
>>> ImageHyperlink hyperlink = new ImageHyperlink(parent,style);
>>> hyperlink.addListener(SWT.Selection, typedListener);
>>>
>>> // listener for hyperlink action
>>> IHyperlinkListener hpListerner = new IHyperlinkListener(){
>>>
>>> @Override
>>> public void linkActivated(HyperlinkEvent e) {
>>> Event event = new Event();
>>> event.widget = m_widget;
>>> // notify to selection listener to handle for this event
>>> hpListerner.notifyListeners(SWT.Selection, event);
>>> }
>>>
>>> @Override
>>> public void linkEntered(HyperlinkEvent e) {
>>> }
>>>
>>> @Override
>>> public void linkExited(HyperlinkEvent e) {
>>> }
>>> };
>>> hyperlink.addHyperlinkListener(hpListerner);
>>>
>>> 2. Create BooleanSelectionCommand for hyperlink widget: directly
>>> modify MacroCommandShell class to support it as following code:
>>>
>>> private AbstractMacroCommand createSelectionCommand(WidgetIdentifier
>>> wid, Event event){ if (event.widget instanceof
>>> MenuItem
>>> || event.widget instanceof Hyperlink
>>> || event.widget instanceof ToolItem
>>> || (event.widget instanceof Button
>>> && !(event.widget instanceof Control
>>> && ((Control)event.widget).getParent()
>>> instanceof CCombo))){ if
>>> (event.x != 0 || event.y != 0 || event.detail != 0){
>>> return new BooleanSelectionCommand(this, wid,
>>> new Point (event.x, event.y), event.detail);
>>> }
>>> return new BooleanSelectionCommand(this,
>>> wid); }
>>> ...
>>> return null;
>>> }
>>>
>>> It isn't a very good way for this issue but we can record hyperlink
>>> with AGR.
>>>
>>> Does anyone have suggest on this issue?
>>>
>>> Thanks,
>>>
>>> Nha
>>>
>>>
>>> PS: I hope that this issue could be resolved in the next release.
>>>
>>>
>>> Nha Dang wrote:
>>>> Hello,
>>>>
>>>> I'm new with TPTP and I would like to know that Automated GUI
>>>> Recorder (AGR) allows to record hyperlink?
>>>>
>>>> If no, is there any way to customize it?
>>>>
>>>> I know that we can contribute Widget resolvers through the
>>>> extension "org.eclipse.tptp.test.auto.gui.widgetResolver" but I
>>>> don't know how to resolve for Hyperlink to get IWidgetId
>>>>
>>>> In MacroCommandShell class, it seems that this class also doesn't
>>>> support to create command for Hyperlink action. Is there any way or
>>>> we must directly modify this class to support?
>>>>
>>>> Thanks for any help,
>>>>
>>>> Nha
Re: How to record Hyperlink with Automated GUI Recorder? [message #125794 is a reply to message #125781] Mon, 10 March 2008 04:04 Go to previous message
Eclipse UserFriend
Originally posted by: nhadt.cybersoft-vn.com

Hello Jimmy Jin,

Sorry for my mistyped, it is m_widget.notifyListeners(SWT.Selection,
event) instead of hpListerner.notifyListeners(SWT.Selection, event)

Regards,

Nha

Jimmy Jin wrote:
> Hello, Nha,
>
> I don't quite understand your sample code, especially the following lines:
>
> // listener for hyperlink action
> IHyperlinkListener hpListerner = new IHyperlinkListener(){
>
> @Override
> public void linkActivated(HyperlinkEvent e) {
> Event event = new Event();
> event.widget = m_widget;
> // notify to selection listener to handle for this event
> hpListerner.notifyListeners(SWT.Selection, event);
> }
>
> I tried it but the IHyperlinkListener does not have notifyListeners()
> method. I think maybe you mistyped something here. Can you give a more
> complete code example?
>
> Regards,
> Jimmy Jin
>
> Nha Dang wrote:
>> Hello Jimmy Jin,
>>
>> It seems that Hyperlink (actually the AbstractHyperlink) just
>> handles for event type SWT.DefaultSelection only but has no listener
>> for this event type.
>>
>> So if we don't add listener (say SELECTION_LISTENER) with
>> SWT.DefaultSelection or SWT.Selection event types for hyperlink. How
>> could AGR record when hyperlink is activated? Because when hyperlink
>> is activated, it doesn't send event which notifies MacroCommandShell
>> to create BooleanSelectionCommand for hyperlink action.
>>
>> In previous implemented code, when hyperlink is activated, I
>> notify event with SWT.Selection which helps MacroCommandShell to
>> create BooleanSelectionCommand and let SELECTION_LISTENER handles
>> action instead of linkActivated() method. When playback,
>> BooleanSelectionCommand sends SWT.Selection event and
>> SELECTION_LISTENER will handle for this event.
>>
>> How about your ideas?
>>
>> Regards,
>>
>> Nha
>>
>> Jimmy Jin wrote:
>>> Hello, Nha,
>>>
>>> I checked Hyperlink source code (actually the AbstractHyperlink), and
>>> find that it listens for the SWT.DefaultSelection event. So if when
>>> playback, the SWT.DefaultSelection event can be sent out, instead of
>>> the SWT.Selection event, then you don't need to make Hyperlink listen
>>> for the SWT.Selection event.
>>>
>>> It's better that when recording, something can be put in the script
>>> to identify this should be a SWT.DefaultSelection event. Then when
>>> playback, just simply check this. This needs more modifications in
>>> BooleanSelectionCommand class.
>>>
>>> Can you enter a bug in Bugzilla? Maybe I can provide a patch in
>>> future to fix it completely.
>>>
>>> Regards,
>>> Jimmy Jin
>>>
>>> Nha Dang wrote:
>>>> Hello,
>>>>
>>>> So far, I have resolved problem of how to record hyperlink with
>>>> AGR by customizing as following:
>>>>
>>>> 1. Hyperlink: as default, when hyperlink is created, it does
>>>> not add listener with event type SWT.Selection. This event type is
>>>> notified by playback mechanism of BooleanSelectionCommand class.
>>>> Thus, to record hyperlink, we should add listener for hyperlink with
>>>> SWT.Selection event type
>>>> ...
>>>> Listener typedListener = new Listener() {
>>>> @Override
>>>> public void handleEvent(Event event) {
>>>> if (SWT.Selection == event.type) {
>>>> // do action when hyperlink is clicked
>>>> //
>>>> }
>>>>
>>>> }
>>>> };
>>>> ImageHyperlink hyperlink = new ImageHyperlink(parent,style);
>>>> hyperlink.addListener(SWT.Selection, typedListener);
>>>>
>>>> // listener for hyperlink action
>>>> IHyperlinkListener hpListerner = new IHyperlinkListener(){
>>>>
>>>> @Override
>>>> public void linkActivated(HyperlinkEvent e) {
>>>> Event event = new Event();
>>>> event.widget = m_widget;
>>>> // notify to selection listener to handle for this event
>>>> hpListerner.notifyListeners(SWT.Selection, event);
>>>> }
>>>>
>>>> @Override
>>>> public void linkEntered(HyperlinkEvent e) {
>>>> }
>>>>
>>>> @Override
>>>> public void linkExited(HyperlinkEvent e) {
>>>> }
>>>> };
>>>> hyperlink.addHyperlinkListener(hpListerner);
>>>>
>>>> 2. Create BooleanSelectionCommand for hyperlink widget:
>>>> directly modify MacroCommandShell class to support it as following
>>>> code:
>>>>
>>>> private AbstractMacroCommand createSelectionCommand(WidgetIdentifier
>>>> wid, Event event){ if (event.widget instanceof
>>>> MenuItem
>>>> || event.widget instanceof Hyperlink
>>>> || event.widget instanceof ToolItem
>>>> || (event.widget instanceof Button
>>>> && !(event.widget instanceof Control
>>>> && ((Control)event.widget).getParent()
>>>> instanceof CCombo))){ if
>>>> (event.x != 0 || event.y != 0 || event.detail != 0){
>>>> return new BooleanSelectionCommand(this, wid,
>>>> new Point (event.x, event.y), event.detail);
>>>> }
>>>> return new BooleanSelectionCommand(this,
>>>> wid); }
>>>> ...
>>>> return null;
>>>> }
>>>>
>>>> It isn't a very good way for this issue but we can record hyperlink
>>>> with AGR.
>>>>
>>>> Does anyone have suggest on this issue?
>>>>
>>>> Thanks,
>>>>
>>>> Nha
>>>>
>>>>
>>>> PS: I hope that this issue could be resolved in the next release.
>>>>
>>>>
>>>> Nha Dang wrote:
>>>>> Hello,
>>>>>
>>>>> I'm new with TPTP and I would like to know that Automated GUI
>>>>> Recorder (AGR) allows to record hyperlink?
>>>>>
>>>>> If no, is there any way to customize it?
>>>>>
>>>>> I know that we can contribute Widget resolvers through the
>>>>> extension "org.eclipse.tptp.test.auto.gui.widgetResolver" but I
>>>>> don't know how to resolve for Hyperlink to get IWidgetId
>>>>>
>>>>> In MacroCommandShell class, it seems that this class also
>>>>> doesn't support to create command for Hyperlink action. Is there
>>>>> any way or we must directly modify this class to support?
>>>>>
>>>>> Thanks for any help,
>>>>>
>>>>> Nha
Previous Topic:JVMTI problems - Failed to instrument class
Next Topic:AGR to test different workbench
Goto Forum:
  


Current Time: Tue Apr 16 20:24:52 GMT 2024

Powered by FUDForum. Page generated in 0.91773 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top