Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
965 views

Easy way to backport Java 6 code to Java 5?

We've been developing a windows based application using Java for a while now, but NOW we want to make a mac port and have to reverse of code from Java 6 and Java 5. Is there any easy way to do this ...
6
votes
5answers
1k views

Backport Java 5/6 features to Java 1.4?

We are stuck with Java2SE v1.4 till the end of 2010. That's really nasty, but we can't help it. What options do we have to use some of the new features already now? I can think of several ways like ...
5
votes
7answers
2k views

Java 5 to Java 1.4 Source Code Backporting Tool

Is there a tool that, given a Java 5 level source code, will backport it to Java 1.4-compliant source code, by removing Generics declarations, transforming for eachs in simple fors or iteration fors, ...
4
votes
2answers
120 views

“Backporting” nullptr to C++-pre-C++0x programs

More or less what the title suggests. While I'm not yet using C++0x I'd like to be prepared for when it happens, and I'd also like to reduce the amount of code I have to rewrite to use some of its ...
4
votes
2answers
221 views

Python 2.6 to 2.5 cheat sheet

I've written my code to target Python 2.6.5, but I now need to run it on a cluster that only has 2.5.4, something that wasn't on the horizon when I wrote the code. Backporting the code to 2.5 ...
4
votes
4answers
706 views

Converting java 1.5 source into 1.1 source

I am trying to convert java 1.5 source code into equivalent 1.1 source. My strategy so far has been to try to cross-compile 1.5 source into 1.1 byte code, and then decompile the 1.1 byte into 1.1 ...
3
votes
3answers
2k views

javax.swing.grouplayout not exist in jdk 1.5

I developed a java application with netbeans. It used jdk 1.6. It works fine. But now the requirement is I need to build the jar for the application from the .java files in another machine without ...
3
votes
2answers
128 views

backport function modifiers to python2.1

I have some code I developed in python 2.4++ and you bet, I have to backport it to python 2.1! function decorators were so attractive that I have used @classmethod at a few spots, without taking ...
1
vote
1answer
185 views

Backport of builtin function bin() for python 2.4

I wrote a program that uses builtin function bin(), but this function is new in Python version 2.6 and I would like to run this application also in Python versions 2.4 and 2.5. Is there some backport ...
1
vote
2answers
224 views

python backports for some methods

Is there any backport for the following methods to work with python 2.4: any, all, collections.defaultdict, collections.deque
1
vote
5answers
2k views

Using backport-android-bluetooth on Android 1.6

I'm trying to write an application using Bluetooth on Android 1.6. Since it's not officially supported, I found the backport of android.bluetooth API ( ...
1
vote
3answers
754 views

with statement - backport for Python 2.5

I'd like to use with statement in Python 2.5 in some production code. It was backported, should I expect any problems (e.g. with availability/compatibility on other machines/etc)? Is this code from ...
1
vote
4answers
708 views

Backporting float(“inf”) to Python 2.4 and 2.5

I'm backporting my project from Python 2.6 to Python 2.4 and 2.5. In my project I used float("inf"), and now I find it is unavailable on Python 2.5. Is there a backport of it?
1
vote
2answers
154 views

Translating C# Delegates from 2005 Project to C# 2003

I’m trying to compile in VS2003 that MouseTracking project that was made in C# 2005. I’ve got it fixed up except for one line: proc = HookCallback; This gives the error    Method ...
1
vote
2answers
343 views

What are your favorite tools to backport modifications from branch to trunk in subversion directories?

On a project I'm working on, we use subversion, with tortoiseSVN as a client, under windows XP. As we enter in production and continue development in parallel, many branches are created. Often, we ...
0
votes
1answer
24 views

Queries regarding 'backport-android-bluetooth'

I have started working on android just 1 month back (so please consider my question even if it looks simple). I have my Bluetooth code running on Android 2.2. So I am working on using ...
0
votes
0answers
17 views

backport bluetooth android: doesnt work in Android 2.3

I am using backport bluetooth for Android 1.6 device. But when I deploy the project on Android 2.3 it throws exception. Error: java.lang.ClassNotFoundException: android.bluetooth.IBluetoothDevice ...
0
votes
0answers
330 views

CDC NCM driver backporting

I have been working on back-porting a Linux usb host driver(CDC_NCM) to kernel v.2.6.32. The support for this driver was introduced since v2.6.38. I have been able to get at-least some success.The ...
0
votes
2answers
162 views

Python : Using abc in Python < 2.6

Do someone know an implementation of abc for older versions of Python (older than 2.6) ? EDIT : I am for example looking for a snippet that would do the same thing as ABCMeta and abstractmethod, with ...
0
votes
3answers
572 views

Fragment Backport requires seperate class for the backport and for the honeycomb?

Am I missing something important in this, or do you have to maintain a seperate version of all your fragments for the backported classes, and for the native honeycomb fragments? -- Attempting to use ...
0
votes
1answer
661 views

Android bluetooth socket error

I am using backport bluetooth api on android 1.6. I am using Google Bluetooth Chat sample app for testing. The app works fine in normal scenarios. In a scenario, when I try to connect to paired ...