- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Scala Eclipse Run Config failure
Fri, 2009-01-23, 06:48
Hi everyone,
I have been experiencing some really weird problems. I have written the following in the eclipse editor:
package another
object Mine extends Application {
println("hello")
}
when I try to run the program (via run as Scala Application), I get the error that there is no main class in Min (NOTE the missing last letter). Has this ever happened to any of you ? Repairing the name in the options doesn't help either.
I have Java projects running perfectly fine, however.
Thanks,
Manohar
I have been experiencing some really weird problems. I have written the following in the eclipse editor:
package another
object Mine extends Application {
println("hello")
}
when I try to run the program (via run as Scala Application), I get the error that there is no main class in Min (NOTE the missing last letter). Has this ever happened to any of you ? Repairing the name in the options doesn't help either.
I have Java projects running perfectly fine, however.
Thanks,
Manohar
Fri, 2009-01-23, 20:07
#2
Re: Scala Eclipse Run Config failure
Hello,
thanks for your inputs. What solved my problems was reinstalling the plugin (creating new projects wasn't helping either).
Manohar
On Thu, Jan 22, 2009 at 11:24 PM, Thomas Pawlitzki <thomas.pawlitzki@gmail.com> wrote:
thanks for your inputs. What solved my problems was reinstalling the plugin (creating new projects wasn't helping either).
Manohar
On Thu, Jan 22, 2009 at 11:24 PM, Thomas Pawlitzki <thomas.pawlitzki@gmail.com> wrote:
Hello Manohar,
> when I try to run the program (via run as Scala Application), I get the
> error that there is no main class in Min (NOTE the missing last letter). Has
> this ever happened to any of you ? Repairing the name in the options doesn't
> help either.
Try to clean the project. I think this error occurs when you change an
object to a runnable object subsequently,
Cheers,
Thomas
Hello Manohar,
> when I try to run the program (via run as Scala Application), I get the
> error that there is no main class in Min (NOTE the missing last letter). Has
> this ever happened to any of you ? Repairing the name in the options doesn't
> help either.
Try to clean the project. I think this error occurs when you change an
object to a runnable object subsequently,
Cheers,
Thomas