JBoss Tools SVN: r11198 - in trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test: src/org/jboss/tools/jsf/vpe/richfaces/test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2008-10-27 06:47:32 -0400 (Mon, 27 Oct 2008)
New Revision: 11198
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/dataTable.xhtml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/dataTable.xhtml.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesAllTests.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-2810, test for rich:dataTable was updated, check for not existed node was added to TestDomUtil.
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/dataTable.xhtml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/dataTable.xhtml 2008-10-27 10:47:21 UTC (rev 11197)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/dataTable.xhtml 2008-10-27 10:47:32 UTC (rev 11198)
@@ -10,7 +10,7 @@
</head>
<body>
<h1>dataTable</h1>
-
+<f:view>
<rich:dataTable cellpadding="0" cellspacing="0" width="700" border="0"
var="row" value="#{bean.dtList}" rowKeyVar="rowKey" id="dataTable">
@@ -74,6 +74,6 @@
</f:facet>
</rich:dataTable>
-
+<f:view>
</body>
</html>
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/dataTable.xhtml.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/dataTable.xhtml.xml 2008-10-27 10:47:21 UTC (rev 11197)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/resources/richFacesTest/WebContent/pages/components/dataTable.xhtml.xml 2008-10-27 10:47:32 UTC (rev 11198)
@@ -1,22 +1,22 @@
<tests>
<test id="dataTable">
<TABLE WIDTH="700" CELLSPACING="0" CELLPADDING="0" BORDER="0"
- VAR="row" VALUE="#{bean.dtList}" ROWKEYVAR="rowKey" ID="dataTable"
- CLASS="dr-table rich-table">
+ VAR="row" VALUE="#{bean.dtList}" ROWKEYVAR="rowKey" CLASS="dr-table rich-table">
<COLGROUP SPAN="1">
</COLGROUP>
<THEAD>
- <TR CLASS="dr-table-header rich-table-header">
- <TD CLASS="dr-table-headercell rich-table-headercell" ROWSPAN="2">
- <IMG WIDTH="1" HEIGHT="1" />
+ <TR CLASS="dr-table-header rich-table-header"
+ STYLE="/background-image: url\(.*org.jboss.tools.jsf.vpe.richfaces/resources/common/background.gif\);/">
+ <TD ROWSPAN="2" CLASS="dr-table-headercell rich-table-headercell">
+ <IMG WIDTH="1" HEIGHT="1"
+ SRC="/.*org.jboss.tools.jsf.vpe.richfaces/resources/spacer/spacer.gif/"/>
</TD>
- <TD CLASS="dr-table-headercell rich-table-headercell" COLSPAN="3">
+ <TD COLSPAN="3" CLASS="dr-table-headercell rich-table-headercell">
<SPAN> FIELDS</SPAN>
</TD>
</TR>
<TR CLASS="dr-table-header-continue rich-table-header-continue">
- <TD CLASS="dr-table-headercell rich-table-headercell"
- BREAKBEFORE="true">
+ <TD BREAKBEFORE="true" CLASS="dr-table-headercell rich-table-headercell">
<SPAN> field1</SPAN>
</TD>
<TD CLASS="dr-table-headercell rich-table-headercell">
@@ -30,7 +30,7 @@
<TFOOT>
<TR CLASS="dr-table-footer rich-table-footer">
<TD CLASS="dr-table-footercell rich-table-footercell">
- <BR />
+ <BR _MOZ_DIRTY="" TYPE="_moz"/>
</TD>
<TD CLASS="dr-table-footercell rich-table-footercell">
<SPAN> footer1</SPAN>
@@ -44,17 +44,21 @@
</TR>
</TFOOT>
<TBODY>
- <TR CLASS="dr-table-cell rich-table-cell">
- <TD CLASS="dr-table-cell rich-table-cell">
+ <TR CLASS="dr-subtable-cell rich-subtable-cell">
+ <TD
+ CLASS="dr-table-cell rich-table-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell">
<SPAN> #{rowKey}</SPAN>
</TD>
- <TD CLASS="dr-table-cell rich-table-cell">
+ <TD
+ CLASS="dr-table-cell rich-table-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell">
<SPAN> #{row.field1}</SPAN>
</TD>
- <TD CLASS="dr-table-cell rich-table-cell">
+ <TD
+ CLASS="dr-table-cell rich-table-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell">
<SPAN> #{row.field2}</SPAN>
</TD>
- <TD CLASS="dr-table-cell rich-table-cell">
+ <TD
+ CLASS="dr-table-cell rich-table-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell dr-subtable-cell rich-subtable-cell">
<SPAN> #{row.field3}</SPAN>
</TD>
</TR>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesAllTests.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesAllTests.java 2008-10-27 10:47:21 UTC (rev 11197)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesAllTests.java 2008-10-27 10:47:32 UTC (rev 11198)
@@ -45,25 +45,25 @@
TestSuite suite = new TestSuite("Tests for Vpe RichFaces components"); // $NON //$NON-NLS-1$
// $JUnit-BEGIN$
-// suite.addTestSuite(RichFacesComponentTest.class);
-// suite.addTestSuite(JBIDE1579Test.class);
-// suite.addTestSuite(Jbide1580Test.class);
-// suite.addTestSuite(JBIDE1613Test.class);
-// suite.addTestSuite(Jbide1614Test.class);
-// suite.addTestSuite(Jbide1639Test.class);
-// suite.addTestSuite(Jbide1682Test.class);
-// suite.addTestSuite(Jbide1548Test.class);
-// suite.addTestSuite(JBIDE1713Test.class);
-// suite.addTestSuite(RichFacesJBIDE1169Test.class);
-// suite.addTestSuite(RichFacesComboBoxTemplateTestCase.class);
-// suite.addTestSuite(RichFacesInplaceInputTemplateTestCase.class);
-// suite.addTestSuite(RichFacesInplaceSelectTemplateTestCase.class);
-// suite.addTestSuite(RichFacesProgressBarTemplateTestCase.class);
-// suite.addTestSuite(RichFacesFileUploadTemplateTestCase.class);
-// suite.addTestSuite(RichFacesColumnsTemplateTestCase.class);
-// suite.addTestSuite(RichFacesPickListTemplateTestCase.class);
-// suite.addTestSuite(JBIDE1605Test.class);
-// suite.addTestSuite(JBIDE1606Test.class);
+ suite.addTestSuite(RichFacesComponentTest.class);
+ suite.addTestSuite(JBIDE1579Test.class);
+ suite.addTestSuite(Jbide1580Test.class);
+ suite.addTestSuite(JBIDE1613Test.class);
+ suite.addTestSuite(Jbide1614Test.class);
+ suite.addTestSuite(Jbide1639Test.class);
+ suite.addTestSuite(Jbide1682Test.class);
+ suite.addTestSuite(Jbide1548Test.class);
+ suite.addTestSuite(JBIDE1713Test.class);
+ suite.addTestSuite(RichFacesJBIDE1169Test.class);
+ suite.addTestSuite(RichFacesComboBoxTemplateTestCase.class);
+ suite.addTestSuite(RichFacesInplaceInputTemplateTestCase.class);
+ suite.addTestSuite(RichFacesInplaceSelectTemplateTestCase.class);
+ suite.addTestSuite(RichFacesProgressBarTemplateTestCase.class);
+ suite.addTestSuite(RichFacesFileUploadTemplateTestCase.class);
+ suite.addTestSuite(RichFacesColumnsTemplateTestCase.class);
+ suite.addTestSuite(RichFacesPickListTemplateTestCase.class);
+ suite.addTestSuite(JBIDE1605Test.class);
+ suite.addTestSuite(JBIDE1606Test.class);
suite.addTestSuite(RichFacesComponentContentTest.class);
// $JUnit-END$
16 years, 2 months
JBoss Tools SVN: r11197 - trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2008-10-27 06:47:21 -0400 (Mon, 27 Oct 2008)
New Revision: 11197
Modified:
trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test/TestDomUtil.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-2810, test for rich:dataTable was updated, check for not existed node was added to TestDomUtil.
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test/TestDomUtil.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test/TestDomUtil.java 2008-10-27 10:45:50 UTC (rev 11196)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test/TestDomUtil.java 2008-10-27 10:47:21 UTC (rev 11197)
@@ -156,12 +156,24 @@
nsIDOMNode vpeChild = vpeChildren.item(realCount++);
+ if (null == vpeChild) {
+ throw new ComparisonException(
+ "Child of node \"" //$NON-NLS-1$
+ + vpeNode.getNodeName()
+ + "\" is \"null\", but should be \"" + schemeChild.getNodeName() + "\""); //$NON-NLS-1$ //$NON-NLS-2$
+ }
+
// leave out empty text nodes in vpe dom model
while (((vpeChild.getNodeType() == Node.TEXT_NODE) && ((vpeChild
.getNodeValue() == null) || (vpeChild.getNodeValue().trim()
.length() == 0)))) {
vpeChild = vpeChildren.item(realCount++);
-
+ if (null == vpeChild) {
+ throw new ComparisonException(
+ "Child of node \"" //$NON-NLS-1$
+ + vpeNode.getNodeName()
+ + "\" is \"null\", but should be \"" + schemeChild.getNodeName() + "\""); //$NON-NLS-1$ //$NON-NLS-2$
+ }
}
compareNodes(vpeChild, schemeChild);
16 years, 2 months
JBoss Tools SVN: r11196 - branches/jbosstools-3.0.0.Beta1/vpe/plugins/org.jboss.tools.vpe.jsp/templates.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2008-10-27 06:45:50 -0400 (Mon, 27 Oct 2008)
New Revision: 11196
Modified:
branches/jbosstools-3.0.0.Beta1/vpe/plugins/org.jboss.tools.vpe.jsp/templates/vpe-templates-jsp.xml
Log:
JBIDE-2963
Modified: branches/jbosstools-3.0.0.Beta1/vpe/plugins/org.jboss.tools.vpe.jsp/templates/vpe-templates-jsp.xml
===================================================================
--- branches/jbosstools-3.0.0.Beta1/vpe/plugins/org.jboss.tools.vpe.jsp/templates/vpe-templates-jsp.xml 2008-10-27 10:33:57 UTC (rev 11195)
+++ branches/jbosstools-3.0.0.Beta1/vpe/plugins/org.jboss.tools.vpe.jsp/templates/vpe-templates-jsp.xml 2008-10-27 10:45:50 UTC (rev 11196)
@@ -1,157 +1,157 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<vpe:templates xmlns:vpe="http://org.jboss.org/tools/vpe/template"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-
- <vpe:tag name="jsp:declaration" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:expression" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:scriptlet" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:directive.attribute" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:directive.include" case-sensitive="yes">
- <vpe:template children="yes" file="{@file}" class="org.jboss.tools.vpe.editor.template.VpeIncludeTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:include" case-sensitive="yes">
- <vpe:template children="yes" file="{@page}" class="org.jboss.tools.vpe.editor.template.VpeIncludeTemplate">
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:directive.page" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:directive.tag" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:directive.taglib" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:taglib/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:directive.variable" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:attribute" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:body" case-sensitive="yes">
- <vpe:template children="yes" modify="yes">
- <div/>
- <vpe:dnd>
- <vpe:drag start-enable="no"/>
- <vpe:drop container="yes"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:element" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:doBody" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:forward" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:getProperty" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:invoke" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:output" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:plugin" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:root" case-sensitive="yes">
- <vpe:template children="yes" modify="no">
- <vpe:jsproot/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:setProperty" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:text" case-sensitive="yes">
- <vpe:template children="yes" modify="yes">
- <span/>
- <vpe:dnd>
- <vpe:drag start-enable="yes"/>
- <vpe:drop container="no"/>
- </vpe:dnd>
- </vpe:template>
- </vpe:tag>
-
- <vpe:tag name="jsp:useBean" case-sensitive="yes">
- <vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
- </vpe:template>
- </vpe:tag>
-</vpe:templates>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<vpe:templates xmlns:vpe="http://org.jboss.org/tools/vpe/template"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+ <vpe:tag name="jsp:declaration" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:expression" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:scriptlet" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:directive.attribute" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:directive.include" case-sensitive="yes">
+ <vpe:template children="yes" file="{@file}" class="org.jboss.tools.vpe.editor.template.VpeIncludeTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes"/>
+ <vpe:drop container="no"/>
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:include" case-sensitive="yes">
+ <vpe:template children="yes" file="{@page}" class="org.jboss.tools.vpe.editor.template.VpeIncludeTemplate">
+ <vpe:dnd>
+ <vpe:drag start-enable="yes"/>
+ <vpe:drop container="no"/>
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:directive.page" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:directive.tag" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:directive.taglib" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:taglib/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:directive.variable" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:attribute" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:body" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes">
+ <div/>
+ <vpe:dnd>
+ <vpe:drag start-enable="no"/>
+ <vpe:drop container="yes"/>
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:element" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:doBody" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:forward" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:getProperty" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:invoke" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:output" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:plugin" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:root" case-sensitive="yes">
+ <vpe:template children="yes" modify="no">
+ <vpe:jsproot/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:setProperty" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:text" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes">
+ <span/>
+ <vpe:dnd>
+ <vpe:drag start-enable="yes"/>
+ <vpe:drop container="no"/>
+ </vpe:dnd>
+ </vpe:template>
+ </vpe:tag>
+
+ <vpe:tag name="jsp:useBean" case-sensitive="yes">
+ <vpe:template children="no" modify="no">
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
+ </vpe:template>
+ </vpe:tag>
+</vpe:templates>
16 years, 2 months
JBoss Tools SVN: r11195 - in trunk/smooks/plugins/org.jboss.tools.smooks.ui: src/org/jboss/tools/smooks/java2xml/analyzer and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: DartPeng
Date: 2008-10-27 06:33:57 -0400 (Mon, 27 Oct 2008)
New Revision: 11195
Added:
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/javabean/ui/JavaBeanPropertiesSection.java
Modified:
trunk/smooks/plugins/org.jboss.tools.smooks.ui/plugin.xml
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/java2xml/analyzer/Java2XMLAnalyzer.java
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/ui/editors/SmooksGraphicalFormPage.java
trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/xml2xml/XML2XMLAnalyzer.java
Log:
JBIDE-2992
Add new property section to edit the "beanclass"
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/plugin.xml
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/plugin.xml 2008-10-27 10:00:41 UTC (rev 11194)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/plugin.xml 2008-10-27 10:33:57 UTC (rev 11195)
@@ -31,6 +31,14 @@
<input
type="org.jboss.tools.smooks.ui.gef.model.LineConnectionModel">
</input>
+ </propertySection>
+ <propertySection
+ class="org.jboss.tools.smooks.javabean.ui.JavaBeanPropertiesSection"
+ id="org.jboss.tools.smooks.ui.javabean.propertyTab.Section"
+ tab="org.jboss.tools.smooks.ui.javabean.propertyTab">
+ <input
+ type="org.jboss.tools.smooks.ui.gef.model.LineConnectionModel">
+ </input>
</propertySection>
</propertySections>
</extension>
@@ -51,6 +59,11 @@
category="connection"
id="org.jboss.tools.smooks.ui.connection.propertyTab"
label="Mapping Properties">
+ </propertyTab>
+ <propertyTab
+ category="connection"
+ id="org.jboss.tools.smooks.ui.javabean.propertyTab"
+ label="JavaBean Properties">
</propertyTab>
</propertyTabs>
</extension>
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/java2xml/analyzer/Java2XMLAnalyzer.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/java2xml/analyzer/Java2XMLAnalyzer.java 2008-10-27 10:00:41 UTC (rev 11194)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/java2xml/analyzer/Java2XMLAnalyzer.java 2008-10-27 10:33:57 UTC (rev 11195)
@@ -156,7 +156,7 @@
public MappingResourceConfigList analyzeMappingSmooksModel(
SmooksResourceListType listType, Object sourceObject,
Object targetObject) {
- throw new RuntimeException("The Smooks editor doesn't support to parse the Java2XML config file currently.The feature is coming soon..");
+ throw new RuntimeException("The Smooks editor doesn't support to parse the Java2XML config file currently.");
}
protected String getTheJavaBeanString(JavaBeanModel currentModel) {
Added: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/javabean/ui/JavaBeanPropertiesSection.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/javabean/ui/JavaBeanPropertiesSection.java (rev 0)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/javabean/ui/JavaBeanPropertiesSection.java 2008-10-27 10:33:57 UTC (rev 11195)
@@ -0,0 +1,87 @@
+/*******************************************************************************
+ * Copyright (c) 2008 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.smooks.javabean.ui;
+
+import org.eclipse.gef.EditPart;
+import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.swt.layout.FillLayout;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Text;
+import org.eclipse.ui.forms.widgets.Section;
+import org.eclipse.ui.views.properties.tabbed.AbstractPropertySection;
+import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage;
+import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetWidgetFactory;
+import org.jboss.tools.smooks.javabean.model.JavaBeanModel;
+import org.jboss.tools.smooks.ui.gef.model.AbstractStructuredDataModel;
+import org.jboss.tools.smooks.ui.gef.model.LineConnectionModel;
+
+/**
+ * @author Dart Peng
+ * @Date : Oct 27, 2008
+ */
+public class JavaBeanPropertiesSection extends AbstractPropertySection {
+
+ private Text beanClassText;
+
+ @Override
+ public void createControls(Composite parent,
+ TabbedPropertySheetPage tabbedPropertySheetPage) {
+ super.createControls(parent, tabbedPropertySheetPage);
+ TabbedPropertySheetWidgetFactory factory = tabbedPropertySheetPage
+ .getWidgetFactory();
+ Composite main = factory.createComposite(parent);
+ FillLayout fill = new FillLayout();
+ fill.marginHeight = 8;
+ fill.marginWidth = 8;
+ main.setLayout(fill);
+
+ Section section = factory.createSection(main, Section.TITLE_BAR);
+ section.setText("JavaBean Properties");
+ Composite controlComposite = factory.createComposite(section);
+ section.setClient(controlComposite);
+ GridLayout gl = new GridLayout();
+ gl.numColumns = 2;
+
+ controlComposite.setLayout(gl);
+
+ factory.createLabel(controlComposite, "BeanClass");
+
+ beanClassText = factory.createText(controlComposite, "");
+ GridData gd = new GridData(GridData.FILL_HORIZONTAL);
+ beanClassText.setLayoutData(gd);
+ }
+
+ public void refresh() {
+ super.refresh();
+ beanClassText.setEnabled(false);
+ IStructuredSelection selection = (IStructuredSelection) this
+ .getSelection();
+ Object obj = selection.getFirstElement();
+ if (obj == null)
+ return;
+ if (obj instanceof EditPart) {
+ Object model = ((EditPart) obj).getModel();
+ if (model instanceof LineConnectionModel) {
+ AbstractStructuredDataModel target = (AbstractStructuredDataModel) ((LineConnectionModel) model)
+ .getTarget();
+ Object referenceObj = target.getReferenceEntityModel();
+ if(referenceObj instanceof JavaBeanModel){
+ beanClassText.setEnabled(true);
+ String className = ((JavaBeanModel)referenceObj).getBeanClass().getName();
+ beanClassText.setText(className);
+ }
+ }
+ }
+ }
+
+}
Property changes on: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/javabean/ui/JavaBeanPropertiesSection.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/ui/editors/SmooksGraphicalFormPage.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/ui/editors/SmooksGraphicalFormPage.java 2008-10-27 10:00:41 UTC (rev 11194)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/ui/editors/SmooksGraphicalFormPage.java 2008-10-27 10:33:57 UTC (rev 11195)
@@ -276,9 +276,9 @@
SashForm sashForm = new SashForm(mainComposite, SWT.VERTICAL);
GridData sashFormLd = new GridData(GridData.FILL_BOTH);
sashForm.setLayoutData(sashFormLd);
+// sashForm.
+// sashForm.setSashWidth(1);
- sashForm.setSashWidth(1);
-
designTimeAnalyzeResultRegion = toolkit.createComposite(sashForm);
GridLayout ngl = new GridLayout();
ngl.numColumns = 2;
@@ -286,7 +286,8 @@
designTimeAnalyzeResultRegion.setLayout(ngl);
SashForm mappingMainComposite = new SashForm(sashForm, SWT.NONE);
- mappingMainComposite.setSashWidth(1);
+ // under the eclipse3.3
+// mappingMainComposite.setSashWidth(1);
GridData sgd = new GridData(GridData.FILL_BOTH);
section.setLayoutData(sgd);
{
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/xml2xml/XML2XMLAnalyzer.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/xml2xml/XML2XMLAnalyzer.java 2008-10-27 10:00:41 UTC (rev 11194)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/xml2xml/XML2XMLAnalyzer.java 2008-10-27 10:33:57 UTC (rev 11195)
@@ -47,7 +47,7 @@
public MappingResourceConfigList analyzeMappingSmooksModel(
SmooksResourceListType listType, Object sourceObject,
Object targetObject) {
- throw new RuntimeException("The Smooks editor doesn't support to parse the XML2XML config file currently.The feature is coming soon...");
+ throw new RuntimeException("The Smooks editor doesn't support to parse the XML2XML config file currently.");
}
public DesignTimeAnalyzeResult[] analyzeGraphModel(
16 years, 2 months
JBoss Tools SVN: r11194 - trunk/vpe/plugins/org.jboss.tools.vpe.jsp/templates.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2008-10-27 06:00:41 -0400 (Mon, 27 Oct 2008)
New Revision: 11194
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe.jsp/templates/vpe-templates-jsp.xml
Log:
JBIDE-2963
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.jsp/templates/vpe-templates-jsp.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.jsp/templates/vpe-templates-jsp.xml 2008-10-27 09:40:42 UTC (rev 11193)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.jsp/templates/vpe-templates-jsp.xml 2008-10-27 10:00:41 UTC (rev 11194)
@@ -5,25 +5,25 @@
<vpe:tag name="jsp:declaration" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:expression" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:scriptlet" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:directive.attribute" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
@@ -47,13 +47,13 @@
<vpe:tag name="jsp:directive.page" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:directive.tag" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
@@ -65,13 +65,13 @@
<vpe:tag name="jsp:directive.variable" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:attribute" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
@@ -87,43 +87,43 @@
<vpe:tag name="jsp:element" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:doBody" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:forward" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:getProperty" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:invoke" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:output" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
<vpe:tag name="jsp:plugin" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
@@ -135,7 +135,7 @@
<vpe:tag name="jsp:setProperty" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
@@ -151,7 +151,7 @@
<vpe:tag name="jsp:useBean" case-sensitive="yes">
<vpe:template children="no" modify="no">
- <vpe:any value="{name()}" title="{tagstring()}" display="none"/>
+ <vpe:any value="{name()}" title="{tagstring()}" style="display:none;"/>
</vpe:template>
</vpe:tag>
</vpe:templates>
16 years, 2 months
JBoss Tools SVN: r11193 - branches/jbosstools-3.0.0.Beta1/hibernatetools/plugins/org.hibernate.eclipse.console.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2008-10-27 05:40:42 -0400 (Mon, 27 Oct 2008)
New Revision: 11193
Modified:
branches/jbosstools-3.0.0.Beta1/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-2623
removed empty menu
Modified: branches/jbosstools-3.0.0.Beta1/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.xml
===================================================================
--- branches/jbosstools-3.0.0.Beta1/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.xml 2008-10-27 09:35:57 UTC (rev 11192)
+++ branches/jbosstools-3.0.0.Beta1/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.xml 2008-10-27 09:40:42 UTC (rev 11193)
@@ -215,11 +215,11 @@
id="org.hibernate.eclipse.console.actionSet"
label="HQL"
visible="false">
- <menu
+ <!--menu
id="HQL"
label="H&QL">
<separator name="hqlGroup"/>
- </menu>
+ </menu-->
<action
allowLabelUpdate="true"
icon="icons/images/execute.gif"
16 years, 2 months
JBoss Tools SVN: r11192 - trunk/hibernatetools/plugins/org.hibernate.eclipse.console.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2008-10-27 05:35:57 -0400 (Mon, 27 Oct 2008)
New Revision: 11192
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-2623
removed empty menu
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.xml 2008-10-27 03:01:53 UTC (rev 11191)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/plugin.xml 2008-10-27 09:35:57 UTC (rev 11192)
@@ -215,11 +215,11 @@
id="org.hibernate.eclipse.console.actionSet"
label="HQL"
visible="false">
- <menu
+ <!--menu
id="HQL"
label="H&QL">
<separator name="hqlGroup"/>
- </menu>
+ </menu-->
<action
allowLabelUpdate="true"
icon="icons/images/execute.gif"
16 years, 2 months
JBoss Tools SVN: r11191 - in branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks: xml2xml and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: DartPeng
Date: 2008-10-26 23:01:53 -0400 (Sun, 26 Oct 2008)
New Revision: 11191
Modified:
branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/java2xml/analyzer/Java2XMLAnalyzer.java
branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/xml2xml/XML2XMLAnalyzer.java
Log:
JBIDE-2988
Modify some error message
Modified: branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/java2xml/analyzer/Java2XMLAnalyzer.java
===================================================================
--- branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/java2xml/analyzer/Java2XMLAnalyzer.java 2008-10-26 19:07:59 UTC (rev 11190)
+++ branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/java2xml/analyzer/Java2XMLAnalyzer.java 2008-10-27 03:01:53 UTC (rev 11191)
@@ -156,7 +156,7 @@
public MappingResourceConfigList analyzeMappingSmooksModel(
SmooksResourceListType listType, Object sourceObject,
Object targetObject) {
- throw new RuntimeException("The Smooks editor doesn't support to parse the Java2XML config file currently.The feature is coming soon..");
+ throw new RuntimeException("The Smooks editor doesn't support to parse the Java2XML config file currently.");
}
protected String getTheJavaBeanString(JavaBeanModel currentModel) {
Modified: branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/xml2xml/XML2XMLAnalyzer.java
===================================================================
--- branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/xml2xml/XML2XMLAnalyzer.java 2008-10-26 19:07:59 UTC (rev 11190)
+++ branches/jbosstools-3.0.0.Beta1/smooks/plugins/org.jboss.tools.smooks.ui/src/org/jboss/tools/smooks/xml2xml/XML2XMLAnalyzer.java 2008-10-27 03:01:53 UTC (rev 11191)
@@ -47,7 +47,7 @@
public MappingResourceConfigList analyzeMappingSmooksModel(
SmooksResourceListType listType, Object sourceObject,
Object targetObject) {
- throw new RuntimeException("The Smooks editor doesn't support to parse the XML2XML config file currently.The feature is coming soon...");
+ throw new RuntimeException("The Smooks editor doesn't support to parse the XML2XML config file currently.");
}
public DesignTimeAnalyzeResult[] analyzeGraphModel(
16 years, 2 months
JBoss Tools SVN: r11190 - trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2008-10-26 15:07:59 -0400 (Sun, 26 Oct 2008)
New Revision: 11190
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/JDTuiAllTests.java
Log:
Removing unnecessary tests
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/JDTuiAllTests.java
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/JDTuiAllTests.java 2008-10-26 19:06:10 UTC (rev 11189)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/JDTuiAllTests.java 2008-10-26 19:07:59 UTC (rev 11190)
@@ -9,8 +9,8 @@
TestSuite suite = new TestSuite(
"Test for org.hibernate.eclipse.jdt.ui.test");
//$JUnit-BEGIN$
- suite.addTestSuite(HibernateErrorsTest.class);
- suite.addTestSuite(HibernateErrorsTest2.class);
+ //suite.addTestSuite(HibernateErrorsTest.class);
+ //suite.addTestSuite(HibernateErrorsTest2.class);
suite.addTestSuite(HQLQueryValidatorTest.class);
suite.addTestSuite(ELTransformerTest.class);
//$JUnit-END$
16 years, 2 months
JBoss Tools SVN: r11189 - branches/jbosstools-3.0.0.Beta1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2008-10-26 15:06:10 -0400 (Sun, 26 Oct 2008)
New Revision: 11189
Modified:
branches/jbosstools-3.0.0.Beta1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/JDTuiAllTests.java
Log:
Removing unnecessary tests
Modified: branches/jbosstools-3.0.0.Beta1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/JDTuiAllTests.java
===================================================================
--- branches/jbosstools-3.0.0.Beta1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/JDTuiAllTests.java 2008-10-26 13:35:53 UTC (rev 11188)
+++ branches/jbosstools-3.0.0.Beta1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/src/org/hibernate/eclipse/jdt/ui/test/JDTuiAllTests.java 2008-10-26 19:06:10 UTC (rev 11189)
@@ -9,8 +9,8 @@
TestSuite suite = new TestSuite(
"Test for org.hibernate.eclipse.jdt.ui.test");
//$JUnit-BEGIN$
- suite.addTestSuite(HibernateErrorsTest.class);
- suite.addTestSuite(HibernateErrorsTest2.class);
+ //suite.addTestSuite(HibernateErrorsTest.class);
+ //suite.addTestSuite(HibernateErrorsTest2.class);
suite.addTestSuite(HQLQueryValidatorTest.class);
suite.addTestSuite(ELTransformerTest.class);
//$JUnit-END$
16 years, 2 months