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



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


Certified OEM IBM Wheelwriter models 3 & 5 LCD Panel & cable assembly picture

Certified OEM IBM Wheelwriter models 3 & 5 LCD Panel & cable assembly

$10.00



OEM IBM Selectric II Key Tops & Parts picture

OEM IBM Selectric II Key Tops & Parts

$49.95



Lot of 2 IBM Correctable Ribbon Cassette Black 1299300 NOS Original OEM picture

Lot of 2 IBM Correctable Ribbon Cassette Black 1299300 NOS Original OEM

$12.00



New 2 Sets of 2 (4) keys total OEM 9952 IBM Keys for Cash Drawers Displays Locks picture

New 2 Sets of 2 (4) keys total OEM 9952 IBM Keys for Cash Drawers Displays Locks

$14.99



IBM Genuine OEM Printer Filler Wide Credit Card Holder 10N1259 picture

IBM Genuine OEM Printer Filler Wide Credit Card Holder 10N1259

$24.79



NEW Genuine OEM IBM Quietwriter Hi Density Correcting Ribbon 1299635 NOS picture

NEW Genuine OEM IBM Quietwriter Hi Density Correcting Ribbon 1299635 NOS

$19.99







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