This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes cannot be instantiated Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "cannot be instantiated" Watch "cannot be instantiated" New topic
Author

cannot be instantiated

Anthony Smith
Ranch Hand

Joined: Sep 10, 2001
Posts: 285
JimiSingleImageRasterEncoder encoder = new JimiSingleImageRasterEncoder();
JimiRasterImage raster = Jimi.createRasterImage(image.getSource());
Those are the two lines in my program.
It says for this statement:
JimiSingleImageRasterEncoder encoder = new JimiSingleImageRasterEncoder();
It cannot be instantiates.
What do I do?
Cindy Glass
"The Hood"
Sheriff

Joined: Sep 29, 2000
Posts: 8521
Is JimiSingleImageRasterEncoder abstract?
Is there a constructor in your class that takes NO parameters?
If there are constructors that take parameters - the compiler will no longer automatically supply one that takes none.


"JavaRanch, where the deer and the Certified play" - David O'Meara
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: cannot be instantiated
 
Similar Threads
Help:: how can I do the base64 encoding?
InstantiationException with XMLEncoder
How to call a generic method when I only have an Object
use bytebuffer send Chinese will throw exception.
password decoding help required