I have been trying to figure out this error for two days. I don't (obviously) understand what is wrong... I hope someone can help...
I have two classes:
ExportWizard and TransmitWizard
The first...
public class ExportWizard extends WizardDialog
implements ControllerListener, DataSinkListener {
has a constructor...
public ExportWizard ( String strTitle,
Frame frame,
String strSourceUrl,
JMAppsCfg cfgJMApps )
ExportWizard compiles fine.
the other class...
public class TransmitWizard extends ExportWizard {
has a constructor that calls the constructor in ExportWizard...
public TransmitWizard ( Frame frame,
String strSourceUrl,
DataSource dataSource,
AppsCfg cfgApps )
{
super (N.getResource"jmstudio.export.title"
,
frame,
strSourceUrl,
cfgJMApps );
When I try to compile:
javac -g TransmitWizard.java
I get the error...
transmitwizard.java:59: cannot resolve symbol symbol : constructor ExportWizard (java.lang.String,java.awt.Frame,java.lang.String,AppsCfg)
location: class ExportWizard
super ( N.getResource("studio.export.title"
,
^
1 error
I have two classes:
ExportWizard and TransmitWizard
The first...
public class ExportWizard extends WizardDialog
implements ControllerListener, DataSinkListener {
has a constructor...
public ExportWizard ( String strTitle,
Frame frame,
String strSourceUrl,
JMAppsCfg cfgJMApps )
ExportWizard compiles fine.
the other class...
public class TransmitWizard extends ExportWizard {
has a constructor that calls the constructor in ExportWizard...
public TransmitWizard ( Frame frame,
String strSourceUrl,
DataSource dataSource,
AppsCfg cfgApps )
{
super (N.getResource"jmstudio.export.title"
frame,
strSourceUrl,
cfgJMApps );
When I try to compile:
javac -g TransmitWizard.java
I get the error...
transmitwizard.java:59: cannot resolve symbol symbol : constructor ExportWizard (java.lang.String,java.awt.Frame,java.lang.String,AppsCfg)
location: class ExportWizard
super ( N.getResource("studio.export.title"
^
1 error