On 09. Apr 2006 - 08:24:01, Mike Snare wrote:
| Sorry, I'm stumped.  Could you post more code?  The page and class
| files for this might help.

Sure, here we are ;)

Thats the relevant part of the html file:

[...]
<span jwcid="@ShowAdminPanel" source="ognl:patient" properties="id:id, 
version:version, lastaccess, date, doctors">
        <span jwcid="[EMAIL PROTECTED]">
                <span jwcid="@Insert" 
value="ognl:convertDate(patient.lastAccess)"/>
        </span>
        <span jwcid="[EMAIL PROTECTED]">
                <span jwcid="@Insert" value="ognl:convertDate(patient.date)"/>
        </span>
        <span jwcid="[EMAIL PROTECTED]">
                <span jwcid="@For" source="ognl:patient.doctors" 
value="ognl:doctor">
                        <span jwcid="@Insert" 
value="ognl:doctor.formalName"/><br/>
                </span>
        </span>
</span>
[...]

And of the java page class:

public abstract class EditPatient extends ActivatePage
{
        @Persist
        public abstract Patient getPatient();

        public abstract void setPatient(Patient patient);
        
        public abstract Integer getPatientId();
        
        public abstract void setPatientId(Integer patientId);
        
        @Persist
        public abstract Person getDoctor();

        public abstract void setDoctor(Person person);

        [...]
}

The error message is:

---
Exception invoking listener method editPatient of
component PatientMatches: Error at context:/WEB-INF/pages/EditPatient.page,
line 6, column 21: Method 'public abstract de.plattform.domain.Person
de.plattform.pages.EditPatient.getDoctor()' (declared in class 
de.plattform.pages.EditPatient)
has no implementation in class de.plattform.pages.EditPatient (or enhanced 
subclass $EditPatient_167).
---

I hope this helps

Kind regards,
  Andreas

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to