You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ke...@apache.org on 2011/06/11 12:29:16 UTC

svn commit: r1134561 - /incubator/isis/trunk/viewer/html/src/main/java/org/apache/isis/viewer/html/component/html/HtmlComponentFactory.java

Author: kevin
Date: Sat Jun 11 10:29:16 2011
New Revision: 1134561

URL: http://svn.apache.org/viewvc?rev=1134561&view=rev
Log:
I needed to change visibility of some variables so that I could extend the HtmlComponentFactory and override default behaviour.

Modified:
    incubator/isis/trunk/viewer/html/src/main/java/org/apache/isis/viewer/html/component/html/HtmlComponentFactory.java

Modified: incubator/isis/trunk/viewer/html/src/main/java/org/apache/isis/viewer/html/component/html/HtmlComponentFactory.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/viewer/html/src/main/java/org/apache/isis/viewer/html/component/html/HtmlComponentFactory.java?rev=1134561&r1=1134560&r2=1134561&view=diff
==============================================================================
--- incubator/isis/trunk/viewer/html/src/main/java/org/apache/isis/viewer/html/component/html/HtmlComponentFactory.java (original)
+++ incubator/isis/trunk/viewer/html/src/main/java/org/apache/isis/viewer/html/component/html/HtmlComponentFactory.java Sat Jun 11 10:29:16 2011
@@ -48,9 +48,9 @@ import org.apache.isis.viewer.html.compo
 
 public class HtmlComponentFactory implements ComponentFactory {
 
-    private final String footer;
-    private final String header;
-    private final String styleSheet;
+    protected final String footer;
+    protected final String header;
+    protected final String styleSheet;
 
     public HtmlComponentFactory() {
         final IsisConfiguration configuration = IsisContext.getConfiguration();