Yeah I have the following in Layout.java package org.example.hilo.components;
import org.apache.tapestry.Asset; import org.apache.tapestry.annotations.Inject; import org.apache.tapestry.annotations.Parameter; public class Layout { @Parameter(required = false) private String _title; @Inject("context:style/default.css") private Asset _stylesheet; public String getTitle() { return _title; } public void setTitle(String title) { _title = title; } public Asset getStylesheet() { return _stylesheet; } } On 4/2/07, Massimo Lusetti <[EMAIL PROTECTED]> wrote:
On 4/2/07, Chris Chiappone <[EMAIL PROTECTED]> wrote: > Ok when I do this my page comes up but the layout component does not > show up. Here is what I have: Did you actually make a Layout component? -- Massimo http://meridio.blogspot.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- ~chris --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]