BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 04-04-2008, 11:50 AM   #1
lionscribe
Knows Where the Search Button Is
 
Join Date: Feb 2008
Model: none
Carrier: sprint
Posts: 24
Post Problem class not found (Update to thread)

Please Login to Remove!

Unfortunately the thread "Problem class not found" got lost during the recent Server Meltdown, and thread itself is not found )
But since I came up with a solution, I will state the original problem, and follow that with a solution.

Problem: When the developer wants to add an optional class to his project that is only available in let's say BB version 4.2, but he wants his application to work on 4.1, so the assumed solution would be to put the call to that class in a try-catch, and compile it in JDE 4.2

For example if the developer wants to add the Blackberry Map Class to his project, which is only available in 4.2, he may want to do the following

try
{
MapsArguments args = new MapsArguments((Contact)contact ,0);
Invoke.invokeApplication( Invoke.APP_TYPE_MAPS, args);
}
catch (ClassNotFoundException e)
{
Dialog.notify("Your Device does not support this option");
}

The problem is that this does NOT work, because when you launch the application, JVM throws a ClassNotFoundException before the application runs, and you have no chance to catch it.

This was the original problem posted by someone, and there were quite a few replies, but with no solution. I will post a solution in the next Post.

Lionscribe
Offline  
Old 04-04-2008, 12:04 PM   #2
lionscribe
Knows Where the Search Button Is
 
Join Date: Feb 2008
Model: none
Carrier: sprint
Posts: 24
Smile

Well now for the solution.
I created a seperate projects. I called it MapInvoke, set it up as a Library, and it has one single class, which extends (believe it or not) the Vector class. The reason for extending is so that we can easily use the Base class in another project and call the overridden base methods, without declaring the class in the other project. And here is the code:

public class MapInvoke extends java.util.Vector
{
public MapInvoke()
{
}
public void setElementAt(Object contact, int addressIndex)
{
MapsArguments args = new MapsArguments((Contact)contact ,0);
Invoke.invokeApplication( Invoke.APP_TYPE_MAPS, args);
}

}

Now in my Main project when I have to call this Class, I use this code:
try
{
java.util.Vector mapInvoke = (java.util.Vector)cmi.newInstance();
mapInvoke.setElementAt(contact, 0); // This invokes it
}
catch (Exception e) // usually old model that does not have Maps
{
Dialog,inform("......");
}

Since the new Class is not included in your Main Project (and you cannot include it), you have to use UpdateJad.exe to add the COD file to your project, and you will have to add it manually to your alx file.

I tested this method, and it works.

Good Luck,
Lionscribe
Offline  
Closed Thread


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


1PCS Brand New Schneider TSXMRPC001M Memory Card Module picture

1PCS Brand New Schneider TSXMRPC001M Memory Card Module

$499.99



Allen Bradley MicroLogix 1400 1766-MM1 Memory Module 1766-MM1 SER A picture

Allen Bradley MicroLogix 1400 1766-MM1 Memory Module 1766-MM1 SER A

$135.00



2 - RAM DRAM Tray-Container Box For Server PC Memory DIMM Modules - Fits 100 NEW picture

2 - RAM DRAM Tray-Container Box For Server PC Memory DIMM Modules - Fits 100 NEW

$21.90



Memory Stick RAM Shipping Box - 5 Trays fits 250 DDR5 DDR4 DDR3 DIMM Modules New picture

Memory Stick RAM Shipping Box - 5 Trays fits 250 DDR5 DDR4 DDR3 DIMM Modules New

$41.50



Fadal PCB-0040 RAM Memory Expansion 128K 1460-2 picture

Fadal PCB-0040 RAM Memory Expansion 128K 1460-2

$150.00



1PC Omron HMC-EF183 HMCEF183 PLC Memory card New Expedited Shipping picture

1PC Omron HMC-EF183 HMCEF183 PLC Memory card New Expedited Shipping

$267.00







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.