Author: scabanovich
Date: 2011-03-04 19:13:02 -0500 (Fri, 04 Mar 2011)
New Revision: 29526
Added:
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/META-INF/
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/META-INF/resources/
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/META-INF/resources/example/
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/META-INF/resources/example/input.xhtml
Modified:
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/.classpath
Log:
JBIDE-8275
https://issues.jboss.org/browse/JBIDE-8275
Modified:
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/.classpath
===================================================================
---
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/.classpath 2011-03-05
00:09:51 UTC (rev 29525)
+++
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/.classpath 2011-03-05
00:13:02 UTC (rev 29526)
@@ -13,5 +13,6 @@
<attribute name="owner.project.facets" value="jst.java"/>
</attributes>
</classpathentry>
+ <classpathentry kind="lib" path="InternalClassFolder"/>
<classpathentry kind="output"
path="WebContent/WEB-INF/classes"/>
</classpath>
Added:
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/META-INF/resources/example/input.xhtml
===================================================================
---
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/META-INF/resources/example/input.xhtml
(rev 0)
+++
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/META-INF/resources/example/input.xhtml 2011-03-05
00:13:02 UTC (rev 29526)
@@ -0,0 +1,23 @@
+<?xml version="1.0"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html
xmlns="http://www.w3.org/1999/xhtml"
+
xmlns:h="http://java.sun.com/jsf/html"
+
xmlns:composite="http://java.sun.com/jsf/composite">
+
+ <composite:interface>
+ <composite:attribute name="label"/>
+ <composite:attribute name="value" required="true"
type="java.util.List"/>
+ <composite:attribute name="value7" required="true"
type="java.lang.String"/>
+ <composite:attribute name="action" required="true"
method-signature="java.lang.String f()"/>
+ <composite:attribute name="submitlabel"/>
+ </composite:interface>
+
+ <composite:implementation>#{user.name.}
+ <h:form>
+ <h:outputText value="#{cc.attrs.value.}" />
+ <h:inputText value="#{cc.attrs.action}" />
+ <h:commandButton action="#{cc.attrs.action.}"
value="#{cc.attrs.submitlabel}" />
+ </h:form>
+ </composite:implementation>
+</html>
Property changes on:
branches/jbosstools-3.2.x/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/InternalClassFolder/META-INF/resources/example/input.xhtml
___________________________________________________________________
Added: svn:mime-type
+ text/plain