Hi,

I downloaded ECS and added some new code to Element.java , ConcreteElement.java and 
added a new class called RenderContext.java.

My question is how can a developer like myself add code. Is there some review panel 
that deams the code generic enough to add, or some other process?


Anyway here is a quick summary of the additions


Changes:

Element.java

    /**
     * provide RenderContext
     */
    public void output(RenderContext rcontext);

ConcreteElement.java

    public void output(RenderContext rcontext)
 {
    ....
}

RenderContext.java looks like this:

Reply via email to