Hi to All,
In order to create a Date Picker that I need to use in Oracle forms, I have modified some element in the source of original calendarPJC provided from Oracle.
Following the instruction I have compiled in the correct order the Java file.
The first is CalendarWidgetE vent.java with this code:
This file has compiled without error in the directory classes.
The second File is CalendarWidgetL istener.java
When I compile this error is displayed:
CalendarWidgetL istener.java:7: cannot resolve symbol
Symbol: CalendarWidgetE vent
location: Interface oracle.forms.de mos.CalendarWid getListener
public void CalendarWidgetD ateChanged(Cale ndarWidgetEvent cwe);
Can someone help me ?
Thank You and Best Regards
In order to create a Date Picker that I need to use in Oracle forms, I have modified some element in the source of original calendarPJC provided from Oracle.
Following the instruction I have compiled in the correct order the Java file.
The first is CalendarWidgetE vent.java with this code:
Code:
package oracle.forms.demos; import java.util.Date; public class CalendarWidgetEvent extends java.util.EventObject { private Date date; public CalendarWidgetEvent(Object s, Date d) { super(s); date = d; } public String toString() { return date.toString(); } public Date getDate() { return date; } }
The second File is CalendarWidgetL istener.java
Code:
package oracle.forms.demos; public interface CalendarWidgetListener { public void CalendarWidgetDateChanged(CalendarWidgetEvent cwe); }
CalendarWidgetL istener.java:7: cannot resolve symbol
Symbol: CalendarWidgetE vent
location: Interface oracle.forms.de mos.CalendarWid getListener
public void CalendarWidgetD ateChanged(Cale ndarWidgetEvent cwe);
Can someone help me ?
Thank You and Best Regards
Comment