Search found 1 match

by Sembiance
Sun Nov 30, 2003 10:24 pm
Forum: PHP - Code
Topic: Java inside of PHP - How to use Abstract classes?
Replies: 0
Views: 325

Java inside of PHP - How to use Abstract classes?

I have an abstract class, and I need to call one of it's functions. But you have to instaniate all objects first in PHP like so: $javaObject = new Java("org.custom.abstractobject"); But since it's declared as Abstract, it can't be instantiated, and thus throws an Instanation exception. Doe...